platform.sql 1.8 MB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909
  1. /*
  2. Navicat MySQL Data Transfer
  3. Source Server : localhost
  4. Source Server Version : 50717
  5. Source Host : localhost:3306
  6. Source Database : platform-shop
  7. Target Server Type : MYSQL
  8. Target Server Version : 50717
  9. File Encoding : 65001
  10. Date: 2017-10-25 17:08:25
  11. */
  12. SET FOREIGN_KEY_CHECKS=0;
  13. -- ----------------------------
  14. -- Table structure for `nideshop_ad`
  15. -- ----------------------------
  16. DROP TABLE IF EXISTS `nideshop_ad`;
  17. CREATE TABLE `nideshop_ad` (
  18. `id` smallint(5) unsigned NOT NULL AUTO_INCREMENT,
  19. `ad_position_id` smallint(5) unsigned NOT NULL DEFAULT '0',
  20. `media_type` tinyint(3) unsigned NOT NULL DEFAULT '0',
  21. `name` varchar(60) DEFAULT '',
  22. `link` varchar(255) DEFAULT '',
  23. `image_url` text,
  24. `content` varchar(255) DEFAULT '',
  25. `end_time` datetime DEFAULT NULL,
  26. `enabled` tinyint(3) unsigned DEFAULT '1',
  27. PRIMARY KEY (`id`),
  28. KEY `position_id` (`ad_position_id`),
  29. KEY `enabled` (`enabled`)
  30. ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;
  31. -- ----------------------------
  32. -- Records of nideshop_ad
  33. -- ----------------------------
  34. INSERT INTO `nideshop_ad` VALUES ('1', '1', '1', '合作 谁是你的菜', '', 'https://platform-wxmall.oss-cn-beijing.aliyuncs.com/upload/20180727/65091eebc48899298171c2eb6696fe27.jpg', '合作 谁是你的菜', '2017-09-07 21:48:34', '0');
  35. INSERT INTO `nideshop_ad` VALUES ('2', '1', '1', '活动 美食节', '/pages/activity/activity?referrer=1&sourceKey=abcdefg', 'https://platform-wxmall.oss-cn-beijing.aliyuncs.com/upload/20180727/bff2e49136fcef1fd829f5036e07f116.jpg', '活动 美食节', '2017-09-07 21:48:34', '1');
  36. INSERT INTO `nideshop_ad` VALUES ('3', '1', '1', '新用户注册', '/pages/auth/newuser/newuser', 'https://platform-wxmall.oss-cn-beijing.aliyuncs.com/upload/20180727/xinhuiyuan.jpg', '新用户注册', '2017-09-07 21:48:34', '1');
  37. -- ----------------------------
  38. -- Table structure for `nideshop_address`
  39. -- ----------------------------
  40. DROP TABLE IF EXISTS `nideshop_address`;
  41. CREATE TABLE `nideshop_address` (
  42. `id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
  43. `user_id` mediumint(8) unsigned DEFAULT '0' COMMENT '会员ID',
  44. `user_name` varchar(50) COLLATE utf8_unicode_ci DEFAULT '' COMMENT '收货人姓名',
  45. `tel_number` varchar(60) COLLATE utf8_unicode_ci DEFAULT '' COMMENT '手机',
  46. `postal_Code` varchar(50) COLLATE utf8_unicode_ci DEFAULT '' COMMENT '邮编',
  47. `national_Code` varchar(50) COLLATE utf8_unicode_ci DEFAULT '0' COMMENT '收货地址国家码',
  48. `province_Name` varchar(50) COLLATE utf8_unicode_ci DEFAULT '0' COMMENT '省',
  49. `city_Name` varchar(50) COLLATE utf8_unicode_ci DEFAULT '0' COMMENT '市',
  50. `county_Name` varchar(50) COLLATE utf8_unicode_ci DEFAULT '0' COMMENT '区',
  51. `detail_Info` varchar(120) COLLATE utf8_unicode_ci DEFAULT '' COMMENT '详细收货地址信息',
  52. PRIMARY KEY (`id`),
  53. KEY `user_id` (`user_id`)
  54. ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
  55. -- ----------------------------
  56. -- Records of nideshop_address
  57. -- ----------------------------
  58. INSERT INTO `nideshop_address` VALUES ('1', '23', '李鹏军', '15209831990', '230000', '340104', '安徽省', '合肥市', '蜀山区', '汽修小区29栋');
  59. -- ----------------------------
  60. -- Table structure for `nideshop_ad_position`
  61. -- ----------------------------
  62. DROP TABLE IF EXISTS `nideshop_ad_position`;
  63. CREATE TABLE `nideshop_ad_position` (
  64. `id` tinyint(3) unsigned NOT NULL AUTO_INCREMENT,
  65. `name` varchar(60) NOT NULL DEFAULT '''',
  66. `width` smallint(5) unsigned NOT NULL DEFAULT '0',
  67. `height` smallint(5) unsigned NOT NULL DEFAULT '0',
  68. `desc` varchar(255) NOT NULL DEFAULT '',
  69. PRIMARY KEY (`id`)
  70. ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
  71. -- ----------------------------
  72. -- Records of nideshop_ad_position
  73. -- ----------------------------
  74. INSERT INTO `nideshop_ad_position` VALUES ('1', '移动端首页轮播广告', '750', '200', '');
  75. -- ----------------------------
  76. -- Table structure for `nideshop_attribute`
  77. -- ----------------------------
  78. DROP TABLE IF EXISTS `nideshop_attribute`;
  79. CREATE TABLE `nideshop_attribute` (
  80. `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '主键',
  81. `attribute_category_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '商品类型',
  82. `name` varchar(60) NOT NULL DEFAULT '' COMMENT '属性名称',
  83. `input_type` tinyint(1) unsigned NOT NULL DEFAULT '1' COMMENT '当添加商品时,该属性的添加类别; 0为手功输入;1为选择输入;2为多行文本输入',
  84. `value` text NOT NULL COMMENT '即选择输入,则attr_name对应的值的取值就是该这字段值 ',
  85. `sort_order` tinyint(3) unsigned NOT NULL DEFAULT '0',
  86. PRIMARY KEY (`id`),
  87. KEY `cat_id` (`attribute_category_id`)
  88. ) ENGINE=InnoDB AUTO_INCREMENT=103 DEFAULT CHARSET=utf8;
  89. -- ----------------------------
  90. -- Records of nideshop_attribute
  91. -- ----------------------------
  92. INSERT INTO `nideshop_attribute` VALUES ('1', '1008009', '材质', '1', '', '0');
  93. INSERT INTO `nideshop_attribute` VALUES ('2', '1008009', '适用床尺寸', '1', '', '0');
  94. INSERT INTO `nideshop_attribute` VALUES ('3', '1008009', '件数', '1', '', '0');
  95. INSERT INTO `nideshop_attribute` VALUES ('4', '1008009', '工艺', '1', '', '0');
  96. INSERT INTO `nideshop_attribute` VALUES ('5', '1008009', '执行标准', '1', '', '0');
  97. INSERT INTO `nideshop_attribute` VALUES ('6', '1008009', '产地', '1', '', '0');
  98. INSERT INTO `nideshop_attribute` VALUES ('7', '1008009', '温馨提示', '1', '', '0');
  99. INSERT INTO `nideshop_attribute` VALUES ('8', '1008008', '填充物重量', '1', '', '0');
  100. INSERT INTO `nideshop_attribute` VALUES ('9', '1008008', '尺寸', '1', '', '0');
  101. INSERT INTO `nideshop_attribute` VALUES ('10', '1008008', '面料', '1', '', '0');
  102. INSERT INTO `nideshop_attribute` VALUES ('11', '1008008', '填充物', '1', '', '0');
  103. INSERT INTO `nideshop_attribute` VALUES ('12', '1008008', '填充成分', '1', '', '0');
  104. INSERT INTO `nideshop_attribute` VALUES ('13', '1008008', '面料成分', '1', '', '0');
  105. INSERT INTO `nideshop_attribute` VALUES ('14', '1008008', '含绒量', '1', '', '0');
  106. INSERT INTO `nideshop_attribute` VALUES ('15', '1008008', '重量', '1', '', '0');
  107. INSERT INTO `nideshop_attribute` VALUES ('16', '1008002', '规格', '1', '', '0');
  108. INSERT INTO `nideshop_attribute` VALUES ('17', '1008002', '外套材质', '1', '', '0');
  109. INSERT INTO `nideshop_attribute` VALUES ('18', '1008002', '内胆材质', '1', '', '0');
  110. INSERT INTO `nideshop_attribute` VALUES ('19', '1008002', '*温馨提示', '1', '', '0');
  111. INSERT INTO `nideshop_attribute` VALUES ('20', '1036000', '安全技术', '1', '', '0');
  112. INSERT INTO `nideshop_attribute` VALUES ('21', '1036000', '产品等级', '1', '', '0');
  113. INSERT INTO `nideshop_attribute` VALUES ('22', '1008002', '面料成份', '1', '', '0');
  114. INSERT INTO `nideshop_attribute` VALUES ('23', '1008002', '内芯面料', '1', '', '0');
  115. INSERT INTO `nideshop_attribute` VALUES ('24', '1008008', '颜色', '1', '', '0');
  116. INSERT INTO `nideshop_attribute` VALUES ('25', '1008008', '适用人数', '1', '', '0');
  117. INSERT INTO `nideshop_attribute` VALUES ('26', '1008009', '安全类别', '1', '', '0');
  118. INSERT INTO `nideshop_attribute` VALUES ('27', '1008009', '根数', '1', '', '0');
  119. INSERT INTO `nideshop_attribute` VALUES ('28', '1036000', '安全技术类别', '1', '', '0');
  120. INSERT INTO `nideshop_attribute` VALUES ('29', '1036000', '克重', '1', '', '0');
  121. INSERT INTO `nideshop_attribute` VALUES ('30', '1008008', '外层面料', '1', '', '0');
  122. INSERT INTO `nideshop_attribute` VALUES ('31', '1008008', '里层面料', '1', '', '0');
  123. INSERT INTO `nideshop_attribute` VALUES ('32', '1008008', '内芯', '1', '', '0');
  124. INSERT INTO `nideshop_attribute` VALUES ('33', '1008008', '外用面料', '1', '', '0');
  125. INSERT INTO `nideshop_attribute` VALUES ('34', '1008008', '商品重量', '1', '', '0');
  126. INSERT INTO `nideshop_attribute` VALUES ('35', '1008002', '坐垫外层面料', '1', '', '0');
  127. INSERT INTO `nideshop_attribute` VALUES ('36', '1008002', '坐垫内芯材料', '1', '', '0');
  128. -- ----------------------------
  129. -- Table structure for `nideshop_attribute_category`
  130. -- ----------------------------
  131. DROP TABLE IF EXISTS `nideshop_attribute_category`;
  132. CREATE TABLE `nideshop_attribute_category` (
  133. `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '主键',
  134. `name` varchar(60) NOT NULL DEFAULT '',
  135. `enabled` tinyint(1) unsigned NOT NULL DEFAULT '1' COMMENT '1开启; 0关闭;',
  136. PRIMARY KEY (`id`)
  137. ) ENGINE=InnoDB AUTO_INCREMENT=1036002 DEFAULT CHARSET=utf8;
  138. -- ----------------------------
  139. -- Records of nideshop_attribute_category
  140. -- ----------------------------
  141. INSERT INTO `nideshop_attribute_category` VALUES ('1008002', '布艺软装', '1');
  142. INSERT INTO `nideshop_attribute_category` VALUES ('1008008', '被枕', '1');
  143. INSERT INTO `nideshop_attribute_category` VALUES ('1008009', '床品件套', '1');
  144. INSERT INTO `nideshop_attribute_category` VALUES ('1008016', '灯具', '1');
  145. INSERT INTO `nideshop_attribute_category` VALUES ('1011004', '家饰', '1');
  146. INSERT INTO `nideshop_attribute_category` VALUES ('1015000', '家具', '1');
  147. INSERT INTO `nideshop_attribute_category` VALUES ('1017000', '宠物', '1');
  148. INSERT INTO `nideshop_attribute_category` VALUES ('1036000', '夏凉', '1');
  149. -- ----------------------------
  150. -- Table structure for `nideshop_brand`
  151. -- ----------------------------
  152. DROP TABLE IF EXISTS `nideshop_brand`;
  153. CREATE TABLE `nideshop_brand` (
  154. `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '主键',
  155. `name` varchar(255) NOT NULL DEFAULT '' COMMENT '品牌名称',
  156. `list_pic_url` varchar(255) NOT NULL DEFAULT '' COMMENT '图片',
  157. `simple_desc` varchar(255) NOT NULL DEFAULT '' COMMENT '描述',
  158. `pic_url` varchar(255) NOT NULL DEFAULT '' COMMENT '图片',
  159. `sort_order` tinyint(3) unsigned DEFAULT '50' COMMENT '排序',
  160. `is_show` tinyint(1) unsigned NOT NULL DEFAULT '1' COMMENT '显示',
  161. `floor_price` decimal(10,2) DEFAULT '0.00',
  162. `app_list_pic_url` varchar(255) NOT NULL DEFAULT '' COMMENT 'app显示图片',
  163. `is_new` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '新品牌',
  164. `new_pic_url` varchar(255) NOT NULL DEFAULT '' COMMENT '图片',
  165. `new_sort_order` tinyint(2) unsigned NOT NULL DEFAULT '10' COMMENT '排序',
  166. PRIMARY KEY (`id`),
  167. KEY `is_show` (`is_show`)
  168. ) ENGINE=InnoDB AUTO_INCREMENT=1046011 DEFAULT CHARSET=utf8;
  169. -- ----------------------------
  170. -- Records of nideshop_brand
  171. -- ----------------------------
  172. INSERT INTO `nideshop_brand` VALUES ('1001000', 'MUJI制造商', 'http://yanxuan.nosdn.127.net/1541445967645114dd75f6b0edc4762d.png', '严选精选了MUJI制造商和生产原料,\n用几乎零利润的价格,剔除品牌溢价,\n让用户享受原品牌的品质生活。', 'http://yanxuan.nosdn.127.net/4ea3f1e60dd77c45c218e503d721a1ed.jpg', '2', '1', '12.90', 'http://yanxuan.nosdn.127.net/1541445967645114dd75f6b0edc4762d.png', '1', 'http://yanxuan.nosdn.127.net/4ea3f1e60dd77c45c218e503d721a1ed.jpg', '2');
  173. INSERT INTO `nideshop_brand` VALUES ('1001002', '内野制造商', 'http://yanxuan.nosdn.127.net/8ca3ce091504f8aa1fba3fdbb7a6e351.png', '严选从世界各地挑选毛巾,最终选择了为日本内野代工的工厂,追求毛巾的柔软度与功能性。品质比肩商场几百元的毛巾。', 'http://yanxuan.nosdn.127.net/e50654982984206b54e9226e5ab7f90c.jpg', '10', '1', '29.00', 'http://yanxuan.nosdn.127.net/8ca3ce091504f8aa1fba3fdbb7a6e351.png', '0', '', '10');
  174. INSERT INTO `nideshop_brand` VALUES ('1001003', 'Adidas制造商', 'http://yanxuan.nosdn.127.net/335334d0deaff6dc3376334822ab3a2f.png', '严选找到为Adidas等品牌制造商,\n选取优质原材料,与厂方一起设计,\n为你提供好的理想的运动装备。', 'http://yanxuan.nosdn.127.net/6f954ea8cee30e161dda048ffbfd950f.png', '30', '1', '49.00', 'http://yanxuan.nosdn.127.net/335334d0deaff6dc3376334822ab3a2f.png', '0', '', '10');
  175. INSERT INTO `nideshop_brand` VALUES ('1001007', '优衣库制造商', 'http://yanxuan.nosdn.127.net/0d72832e37e7e3ea391b519abbbc95a3.png', '严选找到日本知名服装UNIQLO的制造商,\n选取优质长绒棉和精梳工艺,\n与厂方一起设计,为你提供理想的棉袜。', 'http://yanxuan.nosdn.127.net/f3d196c03f8aac5625faba00d670ee03.jpg', '12', '1', '29.00', 'http://yanxuan.nosdn.127.net/0d72832e37e7e3ea391b519abbbc95a3.png', '0', '', '10');
  176. INSERT INTO `nideshop_brand` VALUES ('1001008', '膳魔师制造商', 'http://yanxuan.nosdn.127.net/5fd51e29b9459dae7df8040c8219f241.png', '严选深入保温行业内部,\n找到德国膳魔师制造商的代工厂。\n同样的品质,却有更优的价格。', 'http://yanxuan.nosdn.127.net/c4ab88f475e375c5748fa13d8bf2858d.png', '40', '1', '45.00', 'http://yanxuan.nosdn.127.net/5fd51e29b9459dae7df8040c8219f241.png', '0', '', '10');
  177. INSERT INTO `nideshop_brand` VALUES ('1001010', '星巴克制造商', 'http://yanxuan.nosdn.127.net/5668bc50f2f2e551891044525710dc84.png', '严选寻访全国保温杯制造企业,\n最终找到高端咖啡品牌星巴克的制造商,\n专注保温杯生产20年,品质与颜值兼备。', 'http://yanxuan.nosdn.127.net/2433b04ea9d7adda1d2e834786872237.jpg', '34', '1', '39.00', 'http://yanxuan.nosdn.127.net/5668bc50f2f2e551891044525710dc84.png', '0', '', '10');
  178. INSERT INTO `nideshop_brand` VALUES ('1001012', 'Wedgwood制造商', 'http://yanxuan.nosdn.127.net/68940e8e23f96dbeb3548d943d83d5e4.png', '严选寻访英国皇室御用陶瓷Wedgwood制造商,\n制模到成品,历经25道工序、7次检验、3次烧制,\n你看不见的地方,我们也在坚持。', 'http://yanxuan.nosdn.127.net/6d6124123311f85903a8bc864d37464c.jpg', '21', '1', '39.00', 'http://yanxuan.nosdn.127.net/68940e8e23f96dbeb3548d943d83d5e4.png', '0', '', '10');
  179. INSERT INTO `nideshop_brand` VALUES ('1001013', 'Royal Doulton制造商', 'http://yanxuan.nosdn.127.net/0de643a02043fd9680b11e21c452adaa.png', '严选深入英国最大骨瓷品牌Royal Doulton制造商, \n顶级英国瓷器的代名词,广受世界皇室喜爱。\n每件瓷器,都有自己的故事。', 'http://yanxuan.nosdn.127.net/0e8311d2246e5643c622743d9684f235.jpg', '47', '1', '24.90', 'http://yanxuan.nosdn.127.net/0de643a02043fd9680b11e21c452adaa.png', '0', '', '10');
  180. INSERT INTO `nideshop_brand` VALUES ('1001015', '日本KEYUCA制造商', 'http://yanxuan.nosdn.127.net/9b85b45f23da558be101dbcc273b1d6d.png', 'KEYUCA是日本餐具及料理用具品牌,\n遵循极简原木风,高端餐具体验。\n严选的餐具正是来自这一品牌制造商。', 'http://yanxuan.nosdn.127.net/d91db0c68c50cd109c16f0ad1427ed0b.jpg', '49', '1', '14.90', 'http://yanxuan.nosdn.127.net/9b85b45f23da558be101dbcc273b1d6d.png', '0', '', '10');
  181. INSERT INTO `nideshop_brand` VALUES ('1001016', '爱慕制造商', 'http://yanxuan.nosdn.127.net/5104f84110eac111968c63c18ebd62c0.png', '150家样品比对筛选,20家工厂深入走访,\n严选最终选定高端内衣爱慕制造商,\n20年品质保证,为你打造天然舒适的衣物。', 'http://yanxuan.nosdn.127.net/833104a2ac047faccd90cc6b98ccf4be.jpg', '9', '1', '35.00', 'http://yanxuan.nosdn.127.net/5104f84110eac111968c63c18ebd62c0.png', '0', '', '10');
  182. INSERT INTO `nideshop_brand` VALUES ('1001020', 'Ralph Lauren制造商', 'http://yanxuan.nosdn.127.net/9df78eb751eae2546bd3ee7e61c9b854.png', '我们与Ralph Lauren Home的制造商成功接洽,掌握先进的生产设备,传承品牌工艺和工序。追求生活品质的你,值得拥有。', 'http://yanxuan.nosdn.127.net/089e4066f0c2bc6b062d17c6292735dc.png', '20', '1', '29.00', 'http://yanxuan.nosdn.127.net/9df78eb751eae2546bd3ee7e61c9b854.png', '0', '', '10');
  183. INSERT INTO `nideshop_brand` VALUES ('1001037', '新秀丽制造商', 'http://yanxuan.nosdn.127.net/80dce660938931956ee9a3a2b111bd37.jpg', '严选为制作品质与颜值兼具的箱包,\n选定新秀丽、CK、Ricardo等品牌合作的制造商,\n拥有国内先进流水线20余条,实力保障品质。', 'http://yanxuan.nosdn.127.net/af5719e20bdbd214a9ce7d961e9031c5.png', '5', '1', '59.00', 'http://yanxuan.nosdn.127.net/80dce660938931956ee9a3a2b111bd37.jpg', '0', '', '10');
  184. INSERT INTO `nideshop_brand` VALUES ('1001038', 'Coach制造商', 'http://yanxuan.nosdn.127.net/1b1cc16135fd8467d40983f75f644127.png', '严选为制作高品质高颜值皮具配件,\n由Coach、MK等品牌制造商生产,\n由严选360度全程监制,给你带来优质皮具。', 'http://yanxuan.nosdn.127.net/c933a662bb79b2a47280363e35ab994b.png', '3', '1', '49.00', 'http://yanxuan.nosdn.127.net/1b1cc16135fd8467d40983f75f644127.png', '1', 'http://yanxuan.nosdn.127.net/b5cd73d3b310bad02539412f064d4ea1.jpg', '10');
  185. INSERT INTO `nideshop_brand` VALUES ('1001039', 'MK制造商', 'http://yanxuan.nosdn.127.net/fc9cd1309374f7707855de80522fb310.jpg', '严选为制造高品质的皮具,\n选择Michael Kors品牌合作的制造工厂,\n18年专业皮具生产经验,手工至美,品质保证。', 'http://yanxuan.nosdn.127.net/c302c82dafcb53ba233aa1e277063a1c.png', '17', '1', '79.00', 'http://yanxuan.nosdn.127.net/fc9cd1309374f7707855de80522fb310.jpg', '0', '', '10');
  186. INSERT INTO `nideshop_brand` VALUES ('1001045', '罗莱制造商', 'http://yanxuan.nosdn.127.net/14122a41a4985d23e1a172302ee818e9.png', '严选团队为打造吸湿透气柔软的蚕丝被,\n从蚕茧原材到温感性能,多次甄选测试\n选择罗莱制造商工厂,手工处理,优质舒适。', 'http://yanxuan.nosdn.127.net/a88d8eae6d492492da07eca7616dce42.jpg', '45', '1', '699.00', 'http://yanxuan.nosdn.127.net/14122a41a4985d23e1a172302ee818e9.png', '0', '', '10');
  187. INSERT INTO `nideshop_brand` VALUES ('1003000', 'Carters制造商', 'http://yanxuan.nosdn.127.net/efe9131599ced0297213e6ec67eb2174.png', '来自Carters大牌代工厂生产,\n严选纯天然材料,无荧光不添加,\nITS安心标志权威检测,安全护航。', 'http://yanxuan.nosdn.127.net/a3fd78f8cf429a34e1e2ea761466d428.jpg', '41', '1', '19.90', 'http://yanxuan.nosdn.127.net/efe9131599ced0297213e6ec67eb2174.png', '0', '', '10');
  188. INSERT INTO `nideshop_brand` VALUES ('1005001', 'Goody制造商', 'http://yanxuan.nosdn.127.net/7c918f37de108f3687d69b39daab34eb.png', '严选深入美国百年发饰品牌Goody制造商,\n确保每把梳子做工精湛,养护头皮。\n戴安娜王妃的最爱,你也能拥有。', 'http://yanxuan.nosdn.127.net/431cd1e6bfca9964f96f1964a8b08ebb.jpg', '48', '1', '39.00', 'http://yanxuan.nosdn.127.net/7c918f37de108f3687d69b39daab34eb.png', '0', '', '10');
  189. INSERT INTO `nideshop_brand` VALUES ('1006000', '范思哲制造商', 'http://yanxuan.nosdn.127.net/c80ae035387495a61a4515906205efff.png', '严选找寻意大利奢侈品牌范思哲Versace的制造商,\n致力于为用户带来精致、优雅、时尚的皮包,\n传承独特美感,体验品质生活。', 'http://yanxuan.nosdn.127.net/4e5e9e8cf9ce08f256494321ba4d3c2a.jpg', '18', '1', '99.00', 'http://yanxuan.nosdn.127.net/c80ae035387495a61a4515906205efff.png', '0', '', '10');
  190. INSERT INTO `nideshop_brand` VALUES ('1008000', 'WPC制造商', 'http://yanxuan.nosdn.127.net/c4e97cc87186ce17f9316f3ba39e220c.png', '严选寻找日本雨伞品牌W.P.C制造商,\n采用严谨工艺以及环保材料,\n沉淀15年行业经验,打造精致雨具。', 'http://yanxuan.nosdn.127.net/83889aa01e7cf8e0ff605c317a01e55d.jpg', '22', '1', '59.00', 'http://yanxuan.nosdn.127.net/c4e97cc87186ce17f9316f3ba39e220c.png', '0', '', '10');
  191. INSERT INTO `nideshop_brand` VALUES ('1010001', '竹宝堂制造商', 'http://yanxuan.nosdn.127.net/61b0b7ae4f0163422009defbceaa41ad.jpg', '严选走访河北、安徽等制刷基地,\n选定竹宝堂、丝芙兰等品牌的制造商,\n严格把关生产与质检,与您一同追求美的生活。', 'http://yanxuan.nosdn.127.net/279cf74ac294e67f7f99cf2d47a1365c.jpg', '39', '1', '29.00', 'http://yanxuan.nosdn.127.net/61b0b7ae4f0163422009defbceaa41ad.jpg', '0', '', '10');
  192. INSERT INTO `nideshop_brand` VALUES ('1010002', '资生堂制造商', 'http://yanxuan.nosdn.127.net/5449236b80d1e678dedee2f626cd67c4.png', '发现美,成为美,是女性一生的追求。\n严选找寻资生堂代工厂,打造天然美妆产品,\n致力于带来更多美的体验和享受。', 'http://yanxuan.nosdn.127.net/af464d5281dfbd286dab569a03264a33.jpg', '19', '1', '29.00', 'http://yanxuan.nosdn.127.net/5449236b80d1e678dedee2f626cd67c4.png', '0', '', '10');
  193. INSERT INTO `nideshop_brand` VALUES ('1015000', 'NITORI制造商', 'http://yanxuan.nosdn.127.net/6f3d310601b18610553c675e0e14d107.png', '宠物是人类最温情的陪伴,\n严选找寻日本最大家居品牌NITORI制造商,\n每一个脚印,都是为了更好地关怀你的TA', 'http://yanxuan.nosdn.127.net/0657854429c6717e8ace7dcff6a2468b.jpg', '43', '1', '69.00', 'http://yanxuan.nosdn.127.net/6f3d310601b18610553c675e0e14d107.png', '0', '', '10');
  194. INSERT INTO `nideshop_brand` VALUES ('1016002', 'HUGO BOSS制造商', 'http://yanxuan.nosdn.127.net/70ada9877b2efa82227437af3231fe50.png', '严选深入德国知名奢侈品HUGO BOSS的制造商,\n开发睡衣、睡袍、休闲裤等轻奢品质家居服,\n希望你在家的每一天都优雅精致。', 'http://yanxuan.nosdn.127.net/888289da7fe200949806eefa069af019.jpg', '11', '1', '45.00', 'http://yanxuan.nosdn.127.net/70ada9877b2efa82227437af3231fe50.png', '0', '', '10');
  195. INSERT INTO `nideshop_brand` VALUES ('1018000', 'Sperry制造商', 'http://yanxuan.nosdn.127.net/2eb12d84037346441088267432da31c4.png', '严选团队对比多家硫化鞋制造商产品质量,\n走访多个制鞋工厂,最终选定Sperry品牌制造商,\n为你提供一双舒适有型的高品质帆布鞋。', 'http://yanxuan.nosdn.127.net/952b9f38a729533a058ee88572a370fa.jpg', '32', '1', '199.00', 'http://yanxuan.nosdn.127.net/2eb12d84037346441088267432da31c4.png', '0', '', '10');
  196. INSERT INTO `nideshop_brand` VALUES ('1021000', 'Marc Jacobs制造商', 'http://yanxuan.nosdn.127.net/c8dac4eb1a458d778420ba520edab3d0.png', '严选寻访独立设计品牌Marc Jacobs的制造商,\n严格选材,细究纺织与生产的细节,多次打磨,\n初心不忘,为你带来优雅高档的服饰配件。', 'http://yanxuan.nosdn.127.net/ce5762f1fd4bde61b57864e765c605e3.jpg', '24', '1', '69.00', 'http://yanxuan.nosdn.127.net/c8dac4eb1a458d778420ba520edab3d0.png', '0', '', '10');
  197. INSERT INTO `nideshop_brand` VALUES ('1022000', 'UGG制造商', 'http://yanxuan.nosdn.127.net/4d2a3dea7e0172ae48e8161f04cfa045.jpg', '为寻找优质的皮毛一体雪地靴,\n严选走访多家雪地靴制造商,对比工艺,\n甄选UGG认可的代工厂,只为足下的优雅舒适。', 'http://yanxuan.nosdn.127.net/efbc6a6044dd07697d2f26bf5033c335.jpg', '29', '1', '59.00', 'http://yanxuan.nosdn.127.net/4d2a3dea7e0172ae48e8161f04cfa045.jpg', '0', '', '10');
  198. INSERT INTO `nideshop_brand` VALUES ('1022001', 'Palladium制造商', 'http://yanxuan.nosdn.127.net/3480f2a4026c60eb4921f0aa3facbde8.png', '严选探访多个制鞋大厂,选定Palladium制造商,\n对比工艺选材,找到传承多年的制鞋配方,\n只为制作一款高品质休闲鞋。', 'http://yanxuan.nosdn.127.net/119717ea4459a8fb3185cec4eb80a284.jpg', '31', '1', '249.00', 'http://yanxuan.nosdn.127.net/3480f2a4026c60eb4921f0aa3facbde8.png', '0', '', '10');
  199. INSERT INTO `nideshop_brand` VALUES ('1023000', 'PetitBateau小帆船制造商', 'http://yanxuan.nosdn.127.net/1a11438598f1bb52b1741e123b523cb5.jpg', '为打造适合宝宝的婴童服装,\n严选团队寻找PetitBateau小帆船的品牌制造商,\n无荧光剂,国家A类标准,让宝宝穿的放心。', 'http://yanxuan.nosdn.127.net/faad5a05a119b789956e4ce2e26e94ef.jpg', '25', '1', '36.00', 'http://yanxuan.nosdn.127.net/1a11438598f1bb52b1741e123b523cb5.jpg', '0', '', '10');
  200. INSERT INTO `nideshop_brand` VALUES ('1024000', 'WMF制造商', 'http://yanxuan.nosdn.127.net/2018e9ac91ec37d9aaf437a1fd5d7070.png', '严选找寻德国百年高端厨具WMF的制造商,\n选择拥有14年经验的不锈钢生产工厂,\n为你甄选事半功倍的优质厨具。', 'http://yanxuan.nosdn.127.net/2a2ae0d49043e525db8d0d8d84460ac8.png', '8', '1', '9.90', 'http://yanxuan.nosdn.127.net/2018e9ac91ec37d9aaf437a1fd5d7070.png', '1', 'http://yanxuan.nosdn.127.net/abcfa79205679db51198adc19c184dd1.jpg', '3');
  201. INSERT INTO `nideshop_brand` VALUES ('1024001', 'OBH制造商', 'http://yanxuan.nosdn.127.net/bf3499ac17a11ffb9bb7caa47ebef2dd.png', '严选寻找OBH品牌的制造商,打造精致厨具,\n韩国独资工厂制造,严格质检,品质雕琢\n力求为消费者带来全新的烹饪体验。', 'http://yanxuan.nosdn.127.net/44e14d6ec4db2e6c66b0fde521603f85.jpg', '42', '1', '39.00', 'http://yanxuan.nosdn.127.net/bf3499ac17a11ffb9bb7caa47ebef2dd.png', '0', '', '10');
  202. INSERT INTO `nideshop_brand` VALUES ('1024003', 'Stoneline制造商', 'http://yanxuan.nosdn.127.net/3a44ae7db86f3f9b6e542720c54cc349.png', '严选找寻德国经典品牌Stoneline的制造商,\n追踪工艺,考量细节,亲自试用,\n为你甄选出最合心意的锅具和陶瓷刀,下厨如神。', 'http://yanxuan.nosdn.127.net/6dc7eecce99cb8f5ab6d86c76415cbec.png', '28', '1', '9.90', 'http://yanxuan.nosdn.127.net/3a44ae7db86f3f9b6e542720c54cc349.png', '0', '', '10');
  203. INSERT INTO `nideshop_brand` VALUES ('1024006', 'KitchenAid制造商', 'http://yanxuan.nosdn.127.net/e11385bf29d1b3949435b80fcd000948.png', '严选寻访KitchenAid品牌的制造商,\n采用德国LFGB认证食品级专用不锈钢,\n欧式简约设计,可靠安心,尽享下厨乐趣。', 'http://yanxuan.nosdn.127.net/2f79a254cd4020966ea1272e2d27b510.jpg', '46', '1', '98.00', 'http://yanxuan.nosdn.127.net/e11385bf29d1b3949435b80fcd000948.png', '0', '', '10');
  204. INSERT INTO `nideshop_brand` VALUES ('1025000', 'Timberland制造商', 'http://yanxuan.nosdn.127.net/6dcadb0791b33aa9fd00380b44fa6645.png', '为制作优质时尚的工装鞋靴,\n严选团队深入探访国内外制靴大厂,选择Timberland制造商,\n工厂拥有15年制鞋历史,专业品质有保证。', 'http://yanxuan.nosdn.127.net/5b35f510110d0c031eb6bf63854597b8.png', '37', '1', '359.00', 'http://yanxuan.nosdn.127.net/6dcadb0791b33aa9fd00380b44fa6645.png', '0', '', '10');
  205. INSERT INTO `nideshop_brand` VALUES ('1025001', 'Kenneth Cole制造商', 'http://yanxuan.nosdn.127.net/236322546c6860e1662ab147d6b0ba2f.jpg', '为出品优质格调的商务鞋靴,\n严选团队选择Kenneth Cole品牌合作的制造商,\n一切努力,只为打造高品质鞋靴。', 'http://yanxuan.nosdn.127.net/63a1df6f5d26faadffa33bac2d51ddc4.jpg', '7', '1', '349.00', 'http://yanxuan.nosdn.127.net/236322546c6860e1662ab147d6b0ba2f.jpg', '0', '', '10');
  206. INSERT INTO `nideshop_brand` VALUES ('1026000', 'CK制造商', 'http://yanxuan.nosdn.127.net/658f09b7ec522d31742b47b914d64338.png', '严选寻访Calvin Klein品牌的制造商,\n深入世界领带第一生产地,设计与品质并重,\n致力于给消费者带来优质典雅的服饰用品。', 'http://yanxuan.nosdn.127.net/fb139c9f11a10deb41beeb42aaad488e.png', '1', '1', '39.00', 'http://yanxuan.nosdn.127.net/658f09b7ec522d31742b47b914d64338.png', '1', 'http://yanxuan.nosdn.127.net/76638fb8e6990aadf837ce761c3b7399.jpg', '1');
  207. INSERT INTO `nideshop_brand` VALUES ('1026001', 'Under Armour制造商', 'http://yanxuan.nosdn.127.net/4e93ea29b1d06fabfd24ba68a9b20a34.jpg', '严选为甄选优质好袜,走访东北、新疆等产袜基地,\n最终选定Under Armour品牌的合作制造商,\n从原料、工艺、品质多维度筛选监制,保证好品质。', 'http://yanxuan.nosdn.127.net/b00570a5edc8da2f4a629fbdddb0b03c.jpg', '35', '1', '39.00', 'http://yanxuan.nosdn.127.net/4e93ea29b1d06fabfd24ba68a9b20a34.jpg', '0', '', '10');
  208. INSERT INTO `nideshop_brand` VALUES ('1028000', 'Gucci制造商', 'http://yanxuan.nosdn.127.net/278869cad9bf5411ffc18982686b88fb.jpg', '严选为设计一款优雅时尚的品质礼帽,\n找寻拥有10来年经验的大型毛毡帽厂商合作,\n坚持打造好设计、好工艺、好材质的潮流礼帽。', 'http://yanxuan.nosdn.127.net/7749ff4939c0a62689c5d1de7fba2860.png', '23', '1', '59.00', 'http://yanxuan.nosdn.127.net/278869cad9bf5411ffc18982686b88fb.jpg', '0', '', '10');
  209. INSERT INTO `nideshop_brand` VALUES ('1028003', 'Burberry制造商', 'http://yanxuan.nosdn.127.net/07af01e281c7e0b912d162d611e22c32.jpg', '为打造时尚舒适的童装系列,\n严选选择Burberry制造商,优化版型配色\n英伦风情融入经典格纹,百搭优雅气质款。', 'http://yanxuan.nosdn.127.net/1a874a6b8cf8c17ef7420b2449179eae.jpg', '4', '1', '99.00', 'http://yanxuan.nosdn.127.net/07af01e281c7e0b912d162d611e22c32.jpg', '0', '', '10');
  210. INSERT INTO `nideshop_brand` VALUES ('1033003', 'Armani制造商', 'http://yanxuan.nosdn.127.net/981e06f0f46f5f1f041d7de3dd3202e6.jpg', '严选团队携手国际标准化专业生产厂家,\n厂家长期为Armani、Alexander wang等知名品牌代工,\n专业进口设备,精密质量把控,精于品质居家体验。', 'http://yanxuan.nosdn.127.net/cc2513963d45c8a0787bc9650e95b3bc.jpg', '26', '1', '199.00', 'http://yanxuan.nosdn.127.net/981e06f0f46f5f1f041d7de3dd3202e6.jpg', '0', '', '10');
  211. INSERT INTO `nideshop_brand` VALUES ('1033004', '爱马仕集团制造商', 'http://yanxuan.nosdn.127.net/d98470dd728fb5a91f7aceade07572b5.png', '严选采用欧洲一线品牌爱马仕的御用香料供应商,\n经过反复配比改良、试香调香、选品定样,\n为你带来独特馥郁的散香体验。', 'http://yanxuan.nosdn.127.net/dd4b9a6cb73e3e1c61c79cbd4bb0bca0.jpg', '33', '1', '19.00', 'http://yanxuan.nosdn.127.net/d98470dd728fb5a91f7aceade07572b5.png', '0', '', '10');
  212. INSERT INTO `nideshop_brand` VALUES ('1034001', 'Alexander McQueen制造商', 'http://yanxuan.nosdn.127.net/db7ee9667d84cbce573688297586699c.jpg', '为制造精致实用的高品质包包,\n严选团队选择Alexander McQueen制造商,\n严格筛选,带来轻奢优雅体验。', 'http://yanxuan.nosdn.127.net/48d8b0a9cd41cd7028b055d6d2b4b57e.jpg', '16', '1', '69.00', 'http://yanxuan.nosdn.127.net/db7ee9667d84cbce573688297586699c.jpg', '0', '', '10');
  213. INSERT INTO `nideshop_brand` VALUES ('1037000', '厚木ATSUGI制造商', 'http://yanxuan.nosdn.127.net/7df55c408dbac6085ed6c30836c828ac.jpg', '严选考究袜子品质,层层把关原料生产,\n携手12年行业生产资质的厚木品牌制造商,\n带来轻盈优雅,舒适显瘦的袜子系列。', 'http://yanxuan.nosdn.127.net/51f1a2b3e663989e8880066af929ce50.jpg', '27', '1', '29.00', 'http://yanxuan.nosdn.127.net/7df55c408dbac6085ed6c30836c828ac.jpg', '0', '', '10');
  214. INSERT INTO `nideshop_brand` VALUES ('1038000', 'Birkenstock集团制造商', 'http://yanxuan.nosdn.127.net/05a2ecffb60b77e4c165bd8492e5c22a.jpg', '为打造一双舒适的软木拖鞋,\n严选团队寻找BIRKENSTOCK集团旗下产品制造商,\n360度全程监制,舒适随脚,百搭文艺。', 'http://yanxuan.nosdn.127.net/0996a492f86f01cb83cd3737ad325e23.jpg', '14', '1', '59.90', 'http://yanxuan.nosdn.127.net/05a2ecffb60b77e4c165bd8492e5c22a.jpg', '0', '', '10');
  215. INSERT INTO `nideshop_brand` VALUES ('1038001', 'Nine West制造商', 'http://yanxuan.nosdn.127.net/ad4df7848ce450f00483c2d5e9f2bfa7.png', '为打造一双优雅舒适的高跟鞋,\n严选选择美国Nine West玖熙品牌的制造商,\n让美丽绽放在足尖。', 'http://yanxuan.nosdn.127.net/38d494067453afa08d2b26d8227558fc.jpg', '13', '1', '219.00', 'http://yanxuan.nosdn.127.net/ad4df7848ce450f00483c2d5e9f2bfa7.png', '0', '', '10');
  216. INSERT INTO `nideshop_brand` VALUES ('1039000', 'TEFAL制造商', 'http://yanxuan.nosdn.127.net/2b7a07e25a3f3be886a7fb90ba975bb7.png', '严选对标国际品质,致力于高品质生活好物,\n执着寻求优质厨房电器供应商,\n携手WMF、Tefal制造商,打造高品质厨具。', 'http://yanxuan.nosdn.127.net/713daad73395a4f3d06f5dd07ed927d4.jpg', '44', '1', '259.00', 'http://yanxuan.nosdn.127.net/2b7a07e25a3f3be886a7fb90ba975bb7.png', '0', '', '10');
  217. INSERT INTO `nideshop_brand` VALUES ('1039001', '京瓷制造商', 'http://yanxuan.nosdn.127.net/3dda530605e3ab1c82d5ed30f2489473.png', '严选想为你的厨房生活,带来新鲜感和活力,\n深入全国各地,选择日本京瓷等品牌代工厂,\n打造钻石系列厨具,颜值与品质兼具。', 'http://yanxuan.nosdn.127.net/de8c967f47c47e48aaaf461a5e24bc4c.jpg', '38', '1', '89.00', 'http://yanxuan.nosdn.127.net/3dda530605e3ab1c82d5ed30f2489473.png', '0', '', '10');
  218. INSERT INTO `nideshop_brand` VALUES ('1040000', 'Tescom制造商', 'http://yanxuan.nosdn.127.net/c17cd65971189fdc28f5bd6b78f657a7.png', '严选为打造时尚健康的个护电器,\n选择Tescom品牌制造商,全球最大个护电器工厂之一,\n拥有20年经验,出口180多个国家,品质有保障。', 'http://yanxuan.nosdn.127.net/21ff3c560b263cf45dd2b8c92091768b.jpg', '15', '1', '59.00', 'http://yanxuan.nosdn.127.net/c17cd65971189fdc28f5bd6b78f657a7.png', '0', '', '10');
  219. INSERT INTO `nideshop_brand` VALUES ('1041000', 'BCBG制造商', 'http://yanxuan.nosdn.127.net/b9072023afd3621714fd5c49f140fca8.png', '严选从产品源头开始,每道工序质量把关,\n选择美国知名品牌BCBG的制造商合作,\n严谨匠心,致力于优质柔滑的睡衣穿搭产品。', 'http://yanxuan.nosdn.127.net/3f2a66543f4c6e2abd5de2d280ff7960.png', '36', '1', '99.00', 'http://yanxuan.nosdn.127.net/b9072023afd3621714fd5c49f140fca8.png', '0', '', '10');
  220. INSERT INTO `nideshop_brand` VALUES ('1046000', 'Police制造商', 'http://yanxuan.nosdn.127.net/66e2cb956a9dd1efc7732bea278e901e.png', '严选团队选定Police品牌制造商合作,\n有11年眼镜生产资质,兼顾品质与品味,\n为你带来专业时尚的墨镜。', 'http://yanxuan.nosdn.127.net/d48930cbb91f0e3adafe5341ce270a4e.png', '6', '1', '109.00', 'http://yanxuan.nosdn.127.net/66e2cb956a9dd1efc7732bea278e901e.png', '0', '', '10');
  221. -- ----------------------------
  222. -- Table structure for `nideshop_cart`
  223. -- ----------------------------
  224. DROP TABLE IF EXISTS `nideshop_cart`;
  225. CREATE TABLE `nideshop_cart` (
  226. `id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT COMMENT '主键',
  227. `user_id` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT '会员Id',
  228. `session_id` char(32) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '' COMMENT 'sessionId',
  229. `goods_id` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT '商品Id',
  230. `goods_sn` varchar(60) NOT NULL DEFAULT '' COMMENT '商品序列号',
  231. `product_id` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT '产品Id',
  232. `goods_name` varchar(120) NOT NULL DEFAULT '' COMMENT '产品名称',
  233. `market_price` decimal(10,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '市场价',
  234. `retail_price` decimal(10,2) NOT NULL DEFAULT '0.00' COMMENT '零售价格',
  235. `number` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT '数量',
  236. `goods_specifition_name_value` text COMMENT '规格属性组成的字符串,用来显示用',
  237. `goods_specifition_ids` varchar(60) DEFAULT '' COMMENT 'product表对应的goods_specifition_ids',
  238. `checked` tinyint(1) unsigned NOT NULL DEFAULT '1',
  239. `list_pic_url` varchar(255) NOT NULL DEFAULT '' COMMENT '商品图片',
  240. PRIMARY KEY (`id`),
  241. KEY `session_id` (`session_id`)
  242. ) ENGINE=InnoDB AUTO_INCREMENT=154 DEFAULT CHARSET=utf8;
  243. -- ----------------------------
  244. -- Records of nideshop_cart
  245. -- ----------------------------
  246. INSERT INTO `nideshop_cart` VALUES ('126', '15', '1', '1152008', '1152008', '232', '魔兽世界 部落 护腕 一只', '0.00', '29.00', '2', null, '', '1', 'http://yanxuan.nosdn.127.net/203cb83d93606865e3ddde57b69b9e9a.png');
  247. -- ----------------------------
  248. -- Table structure for `nideshop_category`
  249. -- ----------------------------
  250. DROP TABLE IF EXISTS `nideshop_category`;
  251. CREATE TABLE `nideshop_category` (
  252. `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  253. `name` varchar(90) NOT NULL DEFAULT '',
  254. `keywords` varchar(255) DEFAULT '',
  255. `front_desc` varchar(255) DEFAULT '',
  256. `parent_id` int(11) unsigned DEFAULT '0',
  257. `sort_order` tinyint(1) unsigned DEFAULT '50',
  258. `show_index` tinyint(1) DEFAULT '0',
  259. `is_show` tinyint(1) unsigned DEFAULT '1',
  260. `banner_url` varchar(255) DEFAULT '',
  261. `icon_url` varchar(255) DEFAULT NULL,
  262. `img_url` varchar(255) DEFAULT NULL,
  263. `wap_banner_url` varchar(255) DEFAULT NULL,
  264. `level` varchar(255) DEFAULT NULL,
  265. `type` int(11) DEFAULT '0',
  266. `front_name` varchar(255) DEFAULT NULL,
  267. PRIMARY KEY (`id`),
  268. KEY `parent_id` (`parent_id`)
  269. ) ENGINE=InnoDB AUTO_INCREMENT=1036007 DEFAULT CHARSET=utf8;
  270. -- ----------------------------
  271. -- Records of nideshop_category
  272. -- ----------------------------
  273. INSERT INTO `nideshop_category` VALUES ('1005000', '居家', '', '回家,放松身心', '0', '2', '1', '1', 'http://yanxuan.nosdn.127.net/92357337378cce650797444bc107b0f7.jpg', 'http://yanxuan.nosdn.127.net/a45c2c262a476fea0b9fc684fed91ef5.png', '//nos.netease.com/yanxuan/f0d0e1a542e2095861b42bf789d948ce.jpg', 'http://yanxuan.nosdn.127.net/e8bf0cf08cf7eda21606ab191762e35c.png', 'L1', '0', '回家,放松身心');
  274. INSERT INTO `nideshop_category` VALUES ('1005001', '餐厨', '', '厨房', '0', '3', '2', '1', 'http://yanxuan.nosdn.127.net/f4ff8b3d5b0767d4e578575c1fd6b921.jpg', 'http://yanxuan.nosdn.127.net/ad8b00d084cb7d0958998edb5fee9c0a.png', '//nos.netease.com/yanxuan/88855173a0cfcfd889ee6394a3259c4f.jpg', 'http://yanxuan.nosdn.127.net/3708dbcb35ad5abf9e001500f73db615.png', 'L1', '0', '爱,囿于厨房');
  275. INSERT INTO `nideshop_category` VALUES ('1005002', '饮食', '', '好吃,高颜值美食', '0', '9', '8', '1', 'http://yanxuan.nosdn.127.net/dd6cc8a7e996936768db5634f12447ed.jpg', 'http://yanxuan.nosdn.127.net/c9280327a3fd2374c000f6bf52dff6eb.png', '//nos.netease.com/yanxuan/9a29ef4f41c305a12e1459f12abd290f.jpg', 'http://yanxuan.nosdn.127.net/fb670ff3511182833e5b035275e4ac09.png', 'L1', '0', '好吃,高颜值美食');
  276. INSERT INTO `nideshop_category` VALUES ('1005007', '锅具', '', '中华铸铁、精选不锈钢、进口珐琅', '1005001', '1', '1', '1', 'http://yanxuan.nosdn.127.net/4aab4598017b5749e3b63309d25e9f6b.png', '', '', 'http://yanxuan.nosdn.127.net/d2db0d1d0622c621a8aa5a7c06b0fc6d.png', 'L2', '0', '一口好锅,炖煮生活一日三餐');
  277. INSERT INTO `nideshop_category` VALUES ('1005008', '餐具', '', '皇家道尔顿、日本KEYUCA制造商出品', '1005001', '4', '4', '1', 'http://yanxuan.nosdn.127.net/f109afbb7e7a00c243c1da29991a5aa3.png', '', '', 'http://yanxuan.nosdn.127.net/695ed861a63d8c0fc51a51f42a5a993b.png', 'L2', '0', '餐桌上的舞蹈');
  278. INSERT INTO `nideshop_category` VALUES ('1005009', '清洁', '', '特殊材质,做家务更简单', '1005001', '9', '9', '1', 'http://yanxuan.nosdn.127.net/e8b67fe8b8db2ecc2e126a0aa631def0.png', '', '', 'http://yanxuan.nosdn.127.net/3a40faaef0a52627357d98ceed7a3c45.png', 'L2', '0', '环保便利,聪明之选');
  279. INSERT INTO `nideshop_category` VALUES ('1005010', '炒货', '', '精选原产地,美味加营养', '1005002', '5', '5', '1', 'http://yanxuan.nosdn.127.net/6c43063003207168c1d8e83a923e8515.png', '', '', 'http://yanxuan.nosdn.127.net/3972963a4b6f9588262d2a667f4c1c73.png', 'L2', '0', '精选原产地,美味加营养');
  280. INSERT INTO `nideshop_category` VALUES ('1005011', '小食', '', '原香鲜材,以小食之味,带来味蕾惊喜', '1005002', '2', '2', '1', 'http://yanxuan.nosdn.127.net/663f568475c994358bf31bcb67d122fe.png', '', '', 'http://yanxuan.nosdn.127.net/418f86049f957108a31ad55cec42c349.png', 'L2', '0', '原香鲜材,以小食之味,带来味蕾惊喜');
  281. INSERT INTO `nideshop_category` VALUES ('1005012', '食材', '', '天时、地利、人和,寻找这个时节这个地点的味道', '1005002', '10', '10', '1', 'http://yanxuan.nosdn.127.net/e050980992725b7932bb3645fe5aec08.png', '', '', 'http://yanxuan.nosdn.127.net/80db363e0687b1a65edc6e75c1b99726.png', 'L2', '0', '天时地利人和,寻找这个时节这个地点的味道');
  282. INSERT INTO `nideshop_category` VALUES ('1005013', '冲饮', '', '以用料天然之美,尽享闲雅之意', '1005002', '6', '6', '1', 'http://yanxuan.nosdn.127.net/2919b0d6eec79182cca31dc827f4d00a.png', '', '', 'http://yanxuan.nosdn.127.net/1e3d8f65c7c7811baccdfda6711cbfd5.png', 'L2', '0', '以用料天然之美,尽享闲雅之意');
  283. INSERT INTO `nideshop_category` VALUES ('1007000', '杯壶', '', '10Q品质控制系统', '1005001', '2', '2', '1', 'http://yanxuan.nosdn.127.net/0b244d3575b737c8f0ed7e84c5c4abd2.png', '', '', 'http://yanxuan.nosdn.127.net/ec53828a3814171079178a59fb2593da.png', 'L2', '0', '精工生产制作,匠人手艺');
  284. INSERT INTO `nideshop_category` VALUES ('1008000', '配件', '', '配角,亦是主角', '0', '4', '3', '1', 'http://yanxuan.nosdn.127.net/cad5aba2bc52d3b8adfd0232c9814de2.jpg', 'http://yanxuan.nosdn.127.net/11abb11c4cfdee59abfb6d16caca4c6a.png', '//nos.netease.com/yanxuan/935f1ab7dcfeb4bbd4a5da9935161aaf.jpg', 'http://yanxuan.nosdn.127.net/02f9a44d05c05c0dd439a5eb674570a2.png', 'L1', '0', '配角,亦是主角');
  285. INSERT INTO `nideshop_category` VALUES ('1008001', '毛巾', '', '精选长绒棉,出口日本品质标准', '1013001', '1', '1', '1', 'http://yanxuan.nosdn.127.net/44ad9a739380aa6b7cf956fb2a06e7a7.png', '', '', 'http://yanxuan.nosdn.127.net/c53d2dd5ba6b1cfb55bd42ea0783f051.png', 'L2', '0', '日本皇室专供,内野制造商出品');
  286. INSERT INTO `nideshop_category` VALUES ('1008002', '布艺软装', '', '换个软装,换个家', '1005000', '6', '4', '1', 'http://yanxuan.nosdn.127.net/8bbcd7de60a678846664af998f57e71c.png', '', '', 'http://yanxuan.nosdn.127.net/2e2fb4f2856a021bbcd1b4c8400f2b06.png', 'L2', '0', '各种风格软装装点你的家');
  287. INSERT INTO `nideshop_category` VALUES ('1008003', '鞋', '', '百搭造型,舒适脚感,久穿不累', '1008000', '4', '4', '1', 'http://yanxuan.nosdn.127.net/4316c2d05745bc90d1f333e363e571bd.png', '', '', 'http://yanxuan.nosdn.127.net/85566d138ea55e6aaeda2cda02df66f8.png', 'L2', '0', '一双好鞋,才能带你到远方');
  288. INSERT INTO `nideshop_category` VALUES ('1008004', '袜子', '', '优选面料,精细做工,越是细节之物,越显品质之处', '1010000', '4', '4', '1', 'http://yanxuan.nosdn.127.net/f123c74f54d9acff0bd1546c60034814.png', '', '', 'http://yanxuan.nosdn.127.net/13f256bac02bb27d74e035ad25cbd375.png', 'L2', '0', '新百伦、阿迪达斯等制造商出品');
  289. INSERT INTO `nideshop_category` VALUES ('1008005', '户外', '', '踏青出游,便携不误好心情', '1012000', '7', '8', '1', 'http://yanxuan.nosdn.127.net/83d22ca3d1c8f94ee23ca96de489864c.png', '', '', 'http://yanxuan.nosdn.127.net/833476fc3ecc30a7446279b787328775.png', 'L2', '0', 'MUJI、Nike等制造商出品');
  290. INSERT INTO `nideshop_category` VALUES ('1008006', '口罩', '', '权威数据认证效果,防霾有底气', '1012000', '6', '6', '1', 'http://yanxuan.nosdn.127.net/9b93e661ff59cbda6094e8b30a63724e.png', '', '', 'http://yanxuan.nosdn.127.net/11d9700da759f2c962c2f6d9412ac2a1.png', 'L2', '0', '为你遮挡雾霾');
  291. INSERT INTO `nideshop_category` VALUES ('1008007', '围巾件套', '', '严选好材料,亲肤柔软,防风抗寒,温暖不失风度', '1008000', '7', '6', '1', 'http://yanxuan.nosdn.127.net/3a8c7ae5b9dc5c1c4b7f2b656abb0279.png', '', '', 'http://yanxuan.nosdn.127.net/6beb3fd67106e42dc0f026b173373d16.png', 'L2', '0', '围上它,你的造型才完整');
  292. INSERT INTO `nideshop_category` VALUES ('1008008', '被枕', '', '选用优质材料,确保好芯', '1005000', '2', '2', '1', 'http://yanxuan.nosdn.127.net/927bc33f7ae2895dd6c11cf91f5e3228.png', '', '', 'http://yanxuan.nosdn.127.net/b43ef7cececebe6292d2f7f590522e05.png', 'L2', '0', '守护你的睡眠时光');
  293. INSERT INTO `nideshop_category` VALUES ('1008009', '床品件套', '', '严格用料,亲肤舒适', '1005000', '4', '3', '1', 'http://yanxuan.nosdn.127.net/243e5bf327a87217ad1f54592f0176ec.png', '', '', 'http://yanxuan.nosdn.127.net/81f671bd36bce05d5f57827e5c88dd1b.png', 'L2', '0', 'MUJI等品牌制造商出品');
  294. INSERT INTO `nideshop_category` VALUES ('1008010', '拖鞋', '', '人体工学设计,放松双脚', '1008000', '6', '5', '1', 'http://yanxuan.nosdn.127.net/1121696544ed9b0c2a70e82f1088fa0e.png', '', '', 'http://yanxuan.nosdn.127.net/984ddb9671aab41651784ba55b2cbdcf.png', 'L2', '0', '穿上拖鞋,回到自我');
  295. INSERT INTO `nideshop_category` VALUES ('1008011', '清洁保鲜', '', '让厨房整洁又新鲜,防尘防潮', '1005001', '6', '6', '1', 'http://yanxuan.nosdn.127.net/dc4d6c35b9f4abb42d2eeaf345710589.png', '', '', 'http://yanxuan.nosdn.127.net/04cd632e1589adcc4345e40e8ad75d2b.png', 'L2', '0', '真空保鲜,美味不限时');
  296. INSERT INTO `nideshop_category` VALUES ('1008012', '功能厨具', '', '日日使用的物件,制作精良才能更耐用', '1005001', '3', '3', '1', 'http://yanxuan.nosdn.127.net/22db4ccbf52dc62c723ac83aa587812a.png', '', '', 'http://yanxuan.nosdn.127.net/5b94463017437467a93ae4af17c2ba4f.png', 'L2', '0', '下厨省力小帮手');
  297. INSERT INTO `nideshop_category` VALUES ('1008013', '茶具咖啡具', '', '好茶配好器', '1005001', '5', '5', '1', 'http://yanxuan.nosdn.127.net/9ea192cd2719c8348f42ec17842ba763.png', '', '', 'http://yanxuan.nosdn.127.net/be3ba4056e274e311d1c23bd2931018d.png', 'L2', '0', '先进工艺制造,功夫体验');
  298. INSERT INTO `nideshop_category` VALUES ('1008014', '糖巧', '', '优选健康原料,甜食也吃得放心', '1005002', '3', '3', '1', 'http://yanxuan.nosdn.127.net/db48a1db4daab74233656caaea4a06f3.png', '', '', 'http://yanxuan.nosdn.127.net/c12cf29b574c7e9d1fcff6a57a12eea2.png', 'L2', '0', '糖心蜜意,甜而不腻');
  299. INSERT INTO `nideshop_category` VALUES ('1008015', '糕点', '', '无人工添加香精、防腐剂', '1005002', '1', '1', '1', 'http://yanxuan.nosdn.127.net/93168242df456b5f7bf3c89653b3db76.png', '', '', 'http://yanxuan.nosdn.127.net/66ea1d6ad602a8e441af7cada93bdc7a.png', 'L2', '0', '四季糕点,用心烘焙');
  300. INSERT INTO `nideshop_category` VALUES ('1008016', '灯具', '', '极简主义,贴近生活的设计', '1005000', '8', '6', '1', 'http://yanxuan.nosdn.127.net/c48e0d9dcfac01499a437774a915842b.png', '', '', 'http://yanxuan.nosdn.127.net/f702dc399d14d4e1509d5ed6e57acd19.png', 'L2', '0', '一盏灯,温暖一个家');
  301. INSERT INTO `nideshop_category` VALUES ('1008017', '收纳', '', '智慧收纳,抗菌防霉,便利拆卸,小空间的大智慧', '1012000', '2', '2', '1', 'http://yanxuan.nosdn.127.net/fdc048e1bf4f04d1c20b32eda5d1dc6e.png', '', '', 'http://yanxuan.nosdn.127.net/2a62f6c53f4ff089fa6a210c7a0c2e63.png', 'L2', '0', '选自古驰竹柄原料供应商');
  302. INSERT INTO `nideshop_category` VALUES ('1008018', '单肩包', '', '匠心制版,立体有型', '1008000', '3', '3', '1', 'http://yanxuan.nosdn.127.net/2f71c7710f0bf857e787e1adb449c8a2.png', '', '', 'http://yanxuan.nosdn.127.net/55f34f23ed31f31e1313ff33602f90cc.png', 'L2', '0', '单肩装上惬意心情');
  303. INSERT INTO `nideshop_category` VALUES ('1009000', '日用清洁', '', '天然材料,温和去除污垢', '1013001', '6', '6', '1', 'http://yanxuan.nosdn.127.net/e071686c212e93aa2fcafd0062a9c613.png', '', '', 'http://yanxuan.nosdn.127.net/729638bb13997f9c4c435b41ce6ed910.png', 'L2', '0', '洁净才能带来清爽心情');
  304. INSERT INTO `nideshop_category` VALUES ('1010000', '服装', '', '贴身的,要亲肤', '0', '5', '4', '1', 'http://yanxuan.nosdn.127.net/003e1d1289f4f290506ac2aedbd09d35.jpg', 'http://yanxuan.nosdn.127.net/28a685c96f91584e7e4876f1397767db.png', '//nos.netease.com/yanxuan/135113d6a43536b717063413fa24d69a.jpg', 'http://yanxuan.nosdn.127.net/622c8d79292154017b0cbda97588a0d7.png', 'L1', '0', '贴身的,要亲肤');
  305. INSERT INTO `nideshop_category` VALUES ('1010001', '内衣', '', '自然染料,亲肤舒适', '1010000', '2', '2', '1', 'http://yanxuan.nosdn.127.net/20279e1753e4eedc6e347857acda9681.png', '', '', 'http://yanxuan.nosdn.127.net/02fede55aba1bc6c9d7f7c01682f9e2d.png', 'L2', '0', '给你贴身的关怀');
  306. INSERT INTO `nideshop_category` VALUES ('1010002', '内裤', '', '透气洁净,环保染制', '1010000', '1', '1', '1', 'http://yanxuan.nosdn.127.net/364269344ed69adafe1b70ab7998fc50.png', '', '', 'http://yanxuan.nosdn.127.net/0a7fe0a08c195ca2cf55d12cd3c30f09.png', 'L2', '0', '来自李维斯、爱慕等制造商');
  307. INSERT INTO `nideshop_category` VALUES ('1010003', '地垫', '', '手工编织,时尚环保', '1005000', '5', '4', '1', 'http://yanxuan.nosdn.127.net/83d4c87f28c993af1aa8d3e4d30a2fa2.png', '', '', 'http://yanxuan.nosdn.127.net/1611ef6458e244d1909218becfe87c4d.png', 'L2', '0', '家里的第“五”面墙');
  308. INSERT INTO `nideshop_category` VALUES ('1010004', '双肩包', '', '精巧设计,严选全程监制', '1008000', '2', '2', '1', 'http://yanxuan.nosdn.127.net/5197c44b610d786796f955334b55c7a5.png', '', '', 'http://yanxuan.nosdn.127.net/506d19510c967ba137283035a93738a1.png', 'L2', '0', '背上的时髦');
  309. INSERT INTO `nideshop_category` VALUES ('1011000', '婴童', '', '爱,从心开始', '0', '7', '6', '1', 'http://yanxuan.nosdn.127.net/7dc78383e44df530f543659a977740de.jpg', 'http://yanxuan.nosdn.127.net/1ba9967b8de1ac50fad21774a4494f5d.png', '//nos.netease.com/yanxuan/8ab3c73fe90951a942e8b06d848f8743.jpg', 'http://yanxuan.nosdn.127.net/9cc0b3e0d5a4f4a22134c170f10b70f2.png', 'L1', '0', '爱,从心开始');
  310. INSERT INTO `nideshop_category` VALUES ('1011001', '妈咪', '', '孕育生命的你更值得被爱', '1011000', '2', '2', '1', 'http://yanxuan.nosdn.127.net/720aebaa529df9391b95a078dfb2fd5c.png', '', '', 'http://yanxuan.nosdn.127.net/844e2f4dce94f71283840c141d4ca71b.png', 'L2', '0', '犬印、Harvest Hills制造商');
  311. INSERT INTO `nideshop_category` VALUES ('1011002', '海外', '', '海外供应商直供,零关税、零风险、即时达', '1012000', '5', '5', '1', 'http://yanxuan.nosdn.127.net/da884ff3b9e9d5276986c99e85722461.png', '', '', 'http://yanxuan.nosdn.127.net/fd1de05d274222f1e56d057d2f2c20c6.png', 'L2', '0', '来自海外制造商的好物');
  312. INSERT INTO `nideshop_category` VALUES ('1011003', '床垫', '', '助你拥有舒眠好梦', '1005000', '3', '3', '1', 'http://yanxuan.nosdn.127.net/316afeb3948b295dfe073e4c51f77a42.png', '', '', 'http://yanxuan.nosdn.127.net/d6e0e84961032fc70fd52a8d4d0fb514.png', 'L2', '0', '承托你的好时光');
  313. INSERT INTO `nideshop_category` VALUES ('1011004', '家饰', '', '点缀美好生活,品质在于细节', '1005000', '9', '7', '1', 'http://yanxuan.nosdn.127.net/ab0df9445d985bf6719ac415313a8e88.png', '', '', 'http://yanxuan.nosdn.127.net/79275db76b5865e6167b0fbd141f2d7e.png', 'L2', '0', '装饰你的家');
  314. INSERT INTO `nideshop_category` VALUES ('1012000', '杂货', '', '解忧,每个烦恼', '0', '8', '7', '1', 'http://yanxuan.nosdn.127.net/d233a1a9060a22e8eb0e2b326252eece.jpg', 'http://yanxuan.nosdn.127.net/c2a3d6349e72c35931fe3b5bcd0966be.png', '//nos.netease.com/yanxuan/a0c91ae573079830743dec6ee08f5841.jpg', 'http://yanxuan.nosdn.127.net/547853361d29a37282f377b9a755dd37.png', 'L1', '0', '解忧,每个烦恼');
  315. INSERT INTO `nideshop_category` VALUES ('1012001', '功能箱包', '', '箱子里装着你的生活', '1008000', '1', '1', '1', 'http://yanxuan.nosdn.127.net/3050a2b3052d766c4b460d4b766353a3.png', '', '', 'http://yanxuan.nosdn.127.net/0645dcda6172118f9295630c2a6f234f.png', 'L2', '0', '范思哲、Coach等品牌制造商出品');
  316. INSERT INTO `nideshop_category` VALUES ('1012002', '雨具', '', '玻璃纤维伞骨,稳定抗风', '1012000', '4', '4', '1', 'http://yanxuan.nosdn.127.net/4e929a21baebdb1200361d8097e35e45.png', '', '', 'http://yanxuan.nosdn.127.net/589da0f02917b8393197a43175764381.png', 'L2', '0', 'WPC制作商出品');
  317. INSERT INTO `nideshop_category` VALUES ('1012003', '文具', '', '极简设计,环保材质', '1012000', '1', '1', '1', 'http://yanxuan.nosdn.127.net/e1743239e41ca9af76875aedc73be7f0.png', '', '', 'http://yanxuan.nosdn.127.net/e074795f61a83292d0f20eb7d124e2ac.png', 'L2', '0', '找回书写的力量');
  318. INSERT INTO `nideshop_category` VALUES ('1013000', '靴', '', 'UGG制造商出品', '1008000', '5', '5', '1', 'http://yanxuan.nosdn.127.net/868c2a976719cd508e9ddf807167a446.png', '', '', 'http://yanxuan.nosdn.127.net/59485f1aa100e4210e16175f3412fa41.png', 'L2', '0', '经典的温暖');
  319. INSERT INTO `nideshop_category` VALUES ('1013001', '洗护', '', '亲肤之物,严选天然', '0', '6', '5', '1', 'http://yanxuan.nosdn.127.net/ef8c49f8c92d1f86eb76dec0b5bc7cef.jpg', 'http://yanxuan.nosdn.127.net/9fe068776b6b1fca13053d68e9c0a83f.png', '//nos.netease.com/yanxuan/14bb4a29498a0f93a1ea001f26fea1dd.jpg', 'http://yanxuan.nosdn.127.net/1526ab0f5982722adbc8726f9f2a338c.png', 'L1', '0', '亲肤之物,严选天然');
  320. INSERT INTO `nideshop_category` VALUES ('1013002', '美妆', '', '竹宝堂、资生堂等制造商出品', '1013001', '3', '3', '1', 'http://yanxuan.nosdn.127.net/aa49c088f74a1c318f1765cc2703495a.png', '', '', 'http://yanxuan.nosdn.127.net/d6a7b9a2eb6af92d709429798a4ca3ea.png', 'L2', '0', '为你的面容添色');
  321. INSERT INTO `nideshop_category` VALUES ('1013003', '护发', '', '护发超有效小秘诀', '1013001', '5', '5', '1', 'http://yanxuan.nosdn.127.net/672ddbed88d9762d2be789080880b16a.png', '', '', 'http://yanxuan.nosdn.127.net/398375d0e39574c6e87273d328316186.png', 'L2', '0', '呵护秀发,柔顺不同发质');
  322. INSERT INTO `nideshop_category` VALUES ('1013004', '香薰', '', '提炼纯净,清雅不腻', '1013001', '2', '2', '1', 'http://yanxuan.nosdn.127.net/d43e7af0a6a9385d88be2ca1df679158.png', '', '', 'http://yanxuan.nosdn.127.net/fc7764ff8e12d18f6c5881a32318ed16.png', 'L2', '0', '爱马仕集团制造商出品');
  323. INSERT INTO `nideshop_category` VALUES ('1013005', '刀剪砧板', '', '厨房实用利器', '1005001', '7', '7', '1', 'http://yanxuan.nosdn.127.net/9d481ea4c2e9e6eda35aa720d407332e.png', '', '', 'http://yanxuan.nosdn.127.net/555afbfe05dab48c1a3b90dcaf89b4f2.png', 'L2', '0', '传统工艺 源自中国刀城');
  324. INSERT INTO `nideshop_category` VALUES ('1013006', '家居服', '', '居家休闲必备', '1010000', '6', '6', '1', 'http://yanxuan.nosdn.127.net/71f391af17fce739a6a57a1eeadbcbf0.png', '', '', 'http://yanxuan.nosdn.127.net/5da102ea4c64081ce3a05a91c855fbc9.png', 'L2', '0', '舒适亲肤');
  325. INSERT INTO `nideshop_category` VALUES ('1015000', '家具', '', '一级原木,严苛工艺', '1005000', '7', '5', '1', 'http://yanxuan.nosdn.127.net/4f00675caefd0d4177892ad18bfc2df6.png', '', '', 'http://yanxuan.nosdn.127.net/d5d41841136182bf49c1f99f5c452dd6.png', 'L2', '0', '大师级工艺');
  326. INSERT INTO `nideshop_category` VALUES ('1015001', 'T恤', '', '立体裁剪,专为国人打造', '1010000', '3', '3', '1', 'http://yanxuan.nosdn.127.net/24a7a33cfeac0bb87a737480db79e053.png', '', '', 'http://yanxuan.nosdn.127.net/505c9a5a794b79e85fef4654722b3447.png', 'L2', '0', '自在而潇洒的穿着感');
  327. INSERT INTO `nideshop_category` VALUES ('1017000', '宠物', '', '出口品质,严选贴合萌宠生活习惯用品。', '1005000', '10', '8', '1', 'http://yanxuan.nosdn.127.net/a0352c57c60ce4f68370ecdab6a30857.png', '', '', 'http://yanxuan.nosdn.127.net/dae4d6e89ab8a0cd3e8da026e4660137.png', 'L2', '0', '抑菌除味,打造宠物舒适空间');
  328. INSERT INTO `nideshop_category` VALUES ('1018000', '夏日甜心', '', '湖南卫视《夏日甜心》授权,独家发售大猫熊同款周边', '1019000', '10', '10', '1', 'http://yanxuan.nosdn.127.net/b5e9f174404ef81b8603d6ecc304c62e.png', '', '', 'http://yanxuan.nosdn.127.net/2b8497fe583d3c9759128b2d76f89dfd.png', 'L2', '0', '湖南卫视《夏日甜心》周边');
  329. INSERT INTO `nideshop_category` VALUES ('1019000', '志趣', '', '爱好,点缀生活', '0', '10', '9', '1', 'http://yanxuan.nosdn.127.net/99107fbd76eb66cd537213e478189ae1.png', 'http://yanxuan.nosdn.127.net/7093cfecb9dde1dd3eaf459623df4071.png', '//nos.netease.com/yanxuan/72de912b6350b33ecf88a27498840e62.jpg', 'http://yanxuan.nosdn.127.net/1706e24a5e605870ba3b37ff5f49aa18.png', 'L1', '0', '周边精品,共享热爱');
  330. INSERT INTO `nideshop_category` VALUES ('1020000', '出行用品', '', '便携设计,轻便旅途', '1012000', '3', '3', '1', 'http://yanxuan.nosdn.127.net/b29a11afa76b9f4a57131555f1a54c77.png', '', '', 'http://yanxuan.nosdn.127.net/81e18c6970a7809ee0d86f0545428aa4.png', 'L2', '0', '出行小物,贴心相伴');
  331. INSERT INTO `nideshop_category` VALUES ('1020001', '面部护理', '', '天然成分,无化学添加', '1013001', '4', '4', '1', 'http://yanxuan.nosdn.127.net/f73df75f334126cf1f3823696ea0663c.png', '', '', 'http://yanxuan.nosdn.127.net/babf6573f8acd53f21205a7577ec03e1.png', 'L2', '0', '温和无刺激的呵护');
  332. INSERT INTO `nideshop_category` VALUES ('1020002', '用具', '', '环保材料,耐用不发霉', '1013001', '7', '7', '1', 'http://yanxuan.nosdn.127.net/1a851b2b3c9e16bdfd020a5fc03e9140.png', '', '', 'http://yanxuan.nosdn.127.net/4e3aebbd7ffef5bb250d19f13cb85620.png', 'L2', '0', '小工具成就美好浴室');
  333. INSERT INTO `nideshop_category` VALUES ('1020003', '服饰', '', '100%纯棉,无荧光剂,严格质检', '1011000', '1', '1', '1', 'http://yanxuan.nosdn.127.net/4e50f3c4e4d0a64cd0ad14cfc0b6bd17.png', '', '', 'http://yanxuan.nosdn.127.net/004f5f96df4aeb0645abbd70c0637239.png', 'L2', '0', '萌宝穿搭,柔软舒适触感');
  334. INSERT INTO `nideshop_category` VALUES ('1020004', '婴童洗护', '', '给孩子更美好的童年体验', '1011000', '5', '5', '1', 'http://yanxuan.nosdn.127.net/c55338691ebd46bee9ebf225f80363ce.png', '', '', 'http://yanxuan.nosdn.127.net/f2e301b189befff1d99adf917ba8ce20.png', 'L2', '0', '天然,呵护宝宝肌肤');
  335. INSERT INTO `nideshop_category` VALUES ('1020005', '寝居', '', '始于初心,为爱初色', '1011000', '3', '3', '1', 'http://yanxuan.nosdn.127.net/0f3c5ad63139096fd0760219e12149af.png', '', '', 'http://yanxuan.nosdn.127.net/476995896abea91d3f2e9ec20d56bd8d.png', 'L2', '0', '无荧光剂,婴幼儿A类标准');
  336. INSERT INTO `nideshop_category` VALUES ('1020006', '玩具', '', '严选材质,安全无害保证', '1011000', '4', '4', '1', 'http://yanxuan.nosdn.127.net/7aac7c5819f71345a52a4b9df23d6239.png', '', '', 'http://yanxuan.nosdn.127.net/34b3267efcddad09cd652f181d87aab0.png', 'L2', '0', '萌宝童趣必备');
  337. INSERT INTO `nideshop_category` VALUES ('1020007', '喂养', '', '安全健康,我们执着于每个细节', '1011000', '6', '6', '1', 'http://yanxuan.nosdn.127.net/5db40a5bf84c177515610471d4d08687.png', '', '', 'http://yanxuan.nosdn.127.net/6b6f1672fe041594245fe56a5dd80871.png', 'L2', '0', '宝宝吃得香,妈妈才放心');
  338. INSERT INTO `nideshop_category` VALUES ('1020008', '配饰', '', '优选设计,让细节显示好品味', '1008000', '8', '7', '1', 'http://yanxuan.nosdn.127.net/d835a76e56a88905194f543b67089b4b.png', '', '', 'http://yanxuan.nosdn.127.net/57ce29ca06f592d65aabfa5f0f87ad43.png', 'L2', '0', '与众不同的点睛之笔');
  339. INSERT INTO `nideshop_category` VALUES ('1020009', '外衣', '', '外衣,是你面对这个世界的铠甲', '1010000', '10', '10', '1', 'http://yanxuan.nosdn.127.net/883d89e54a9287569a201eca388a7cda.png', '', '', 'http://yanxuan.nosdn.127.net/647f7c39eb7c353958274a59fd821d03.png', 'L2', '0', '穿出时尚感');
  340. INSERT INTO `nideshop_category` VALUES ('1020010', '衬衫', '', '挺拔而不束缚', '1010000', '7', '7', '1', 'http://yanxuan.nosdn.127.net/94aa4a4814e2a7a97639438f1d52dcee.png', '', '', 'http://yanxuan.nosdn.127.net/7927f8422c341f7353041a30d01045a2.png', 'L2', '0', '细节讲究,合身剪裁');
  341. INSERT INTO `nideshop_category` VALUES ('1021000', '节日礼盒', '', '遇见节日的美好', '1012000', '8', '9', '1', 'http://yanxuan.nosdn.127.net/e7b37b1ed5c18d63dc3e6c3f1aa85d8a.png', '', '', 'http://yanxuan.nosdn.127.net/bbb6f0ab4f6321121250c12583b0ff9a.png', 'L2', '0', '限量礼盒限时发售');
  342. INSERT INTO `nideshop_category` VALUES ('1022000', '数码', '', '享受安全智能的科技生活', '1008000', '9', '9', '1', 'http://yanxuan.nosdn.127.net/3ec003761d346bc866de2ec249d7ff19.png', '', '', 'http://yanxuan.nosdn.127.net/c33b13875a86da535c935e3d454a6fd2.png', 'L2', '0', '智能硬件,匠心出品');
  343. INSERT INTO `nideshop_category` VALUES ('1023000', '厨房小电', '', '省心省力,厨房高效能手', '1005001', '8', '8', '1', 'http://yanxuan.nosdn.127.net/521bd0c02d283b80ba49e73ca84df250.png', '', '', 'http://yanxuan.nosdn.127.net/c09d784ba592e4fadabbaef6b2e95a95.png', 'L2', '0', '厨房里的省心小电器');
  344. INSERT INTO `nideshop_category` VALUES ('1025000', '礼品卡', '', '传递高品质生活美学', '1019000', '11', '11', '1', 'http://yanxuan.nosdn.127.net/bb9232716b2fc96d9bdbac4955360dfa.png', '', '', 'http://yanxuan.nosdn.127.net/1266f0767a3f67298a40574df0d177fb.png', 'L2', '0', '送礼、福利首选');
  345. INSERT INTO `nideshop_category` VALUES ('1027000', '茗茶', '', '一品茶香,品茗即是观心,饮茶涤净尘虑', '1005002', '7', '7', '1', 'http://yanxuan.nosdn.127.net/0c5af0575176c4a3023783bef7a87a0f.png', '', '', 'http://yanxuan.nosdn.127.net/cfeb623929f3936cc882ffc6a9a2e927.png', 'L2', '0', '一品茶香,品茗即是观心,饮茶涤净尘虑');
  346. INSERT INTO `nideshop_category` VALUES ('1027001', '果干', '', '品尝与收获到的是自然的味道', '1005002', '4', '4', '1', 'http://yanxuan.nosdn.127.net/60f4ae2beef4754347fa36208f84efab.png', '', '', 'http://yanxuan.nosdn.127.net/4cdbf6ae196671cca154fe16e152d8d4.png', 'L2', '0', '品尝与收获到的是自然的味道');
  347. INSERT INTO `nideshop_category` VALUES ('1028001', '唱片', '', '瑞鸣音乐大师匠心打造', '1019000', '8', '8', '1', 'http://yanxuan.nosdn.127.net/71feb3efd3eaee01a74e8aa78430de9d.png', '', '', 'http://yanxuan.nosdn.127.net/3b69079ea27f90b4f539e8c3b76680f5.png', 'L2', '0', '经典音乐,用心典藏,瑞鸣音乐大师匠心打造');
  348. INSERT INTO `nideshop_category` VALUES ('1032000', '魔兽世界', '', '魔兽世界周边', '1019000', '1', '1', '1', 'http://yanxuan.nosdn.127.net/336f0186a9920eb0f93a3912f3662ffe.png', '', '', 'http://yanxuan.nosdn.127.net/becfba90e8a5c95d403b8a6b9bb77825.png', 'L2', '0', '艾泽拉斯的冒险,才刚刚开始');
  349. INSERT INTO `nideshop_category` VALUES ('1032001', '炉石传说', '', '炉石传说周边', '1019000', '2', '2', '1', 'http://yanxuan.nosdn.127.net/97937fcf2defb864d9e53d98a337d78a.png', '', '', 'http://yanxuan.nosdn.127.net/b5af3f6bfcbeb459d6c448ba87f8cc35.png', 'L2', '0', '快进来坐下吧,看看酒馆的新玩意');
  350. INSERT INTO `nideshop_category` VALUES ('1032002', '守望先锋', '', '守望先锋周边', '1019000', '3', '3', '1', 'http://yanxuan.nosdn.127.net/8cab7bf1225dc9893bd9de06fc51921d.png', '', '', 'http://yanxuan.nosdn.127.net/a562f05bf38f5ee478fefb81856aad3d.png', 'L2', '0', '物美价廉的补给箱');
  351. INSERT INTO `nideshop_category` VALUES ('1032003', '暗黑破坏神III', '', '暗黑破坏神III周边', '1019000', '4', '4', '1', 'http://yanxuan.nosdn.127.net/8fe4eb999f748236228a73e09878e277.png', '', '', 'http://yanxuan.nosdn.127.net/1e19e948de63a1d0895a8620250c441f.png', 'L2', '0', '奈非天们,停下脚步整理下行囊');
  352. INSERT INTO `nideshop_category` VALUES ('1032004', '星际争霸II', '', '星际争霸II周边', '1019000', '5', '5', '1', 'http://yanxuan.nosdn.127.net/433ff879a3686625535ca0304be22ab2.png', '', '', 'http://yanxuan.nosdn.127.net/7394ce778791ae8242013d6c974f47e0.png', 'L2', '0', '记录科普卢星区的战斗时光');
  353. INSERT INTO `nideshop_category` VALUES ('1032005', '风暴英雄', '', '风暴英雄周边', '1019000', '6', '6', '1', 'http://yanxuan.nosdn.127.net/e091aae0c8cafc5ab48dfabcc52c79b6.png', '', '', 'http://yanxuan.nosdn.127.net/ff1e28fb7151008f8dc46bbf8b357f63.png', 'L2', '0', '时空枢纽,是个充满惊喜的地方');
  354. INSERT INTO `nideshop_category` VALUES ('1033000', '梦幻西游', '', '梦幻西游精品周边', '1019000', '7', '7', '1', 'http://yanxuan.nosdn.127.net/f0698297aaac41b778c1ea65eefb8b34.png', '', '', 'http://yanxuan.nosdn.127.net/36711325781ca50fdfe234489fca973e.png', 'L2', '0', '梦幻西游精品周边');
  355. INSERT INTO `nideshop_category` VALUES ('1034000', '丝袜', '', '厚木制造商,专利冰丝', '1010000', '5', '5', '1', 'http://yanxuan.nosdn.127.net/d82d0bacfd7243c2ad09dbf2513cfcf9.png', '', '', 'http://yanxuan.nosdn.127.net/4f8f86dfd1d4b46a9cf783b4980db47f.png', 'L2', '0', '厚木制造商,专利冰丝');
  356. INSERT INTO `nideshop_category` VALUES ('1034001', '童车童椅', '', '安全舒适,给宝宝一个快乐童年', '1011000', '7', '7', '1', 'http://yanxuan.nosdn.127.net/06bbfb293b6194b27ebdb3350203a1f7.png', '', '', 'http://yanxuan.nosdn.127.net/4d16871eb80dac59d1796c7d806a5cea.png', 'L2', '0', '安全舒适,给宝宝一个快乐童年');
  357. INSERT INTO `nideshop_category` VALUES ('1035000', '卫衣', '', '舒适百搭,时尚选择', '1010000', '9', '9', '1', 'http://yanxuan.nosdn.127.net/97bb55280b8ffa40390f2ee36486314a.png', '', '', 'http://yanxuan.nosdn.127.net/0282a81bbcae6c39918808fe7c4e1b93.png', 'L2', '0', '舒适百搭,时尚选择');
  358. INSERT INTO `nideshop_category` VALUES ('1035001', '毛衣', '', '温暖柔软,品质之选', '1010000', '8', '8', '1', 'http://yanxuan.nosdn.127.net/cc886f16c8b9893305f1b3b6ad4eb0b1.png', '', '', 'http://yanxuan.nosdn.127.net/b610b058cfd73a9211dc890b7b0cbc66.png', 'L2', '0', '温暖柔软,品质之选');
  359. INSERT INTO `nideshop_category` VALUES ('1035002', '裤装', '', '高质感面料', '1010000', '11', '11', '1', 'http://yanxuan.nosdn.127.net/a3906045b1367d70f658ce9de03e8193.png', '', '', 'http://yanxuan.nosdn.127.net/1728b4eeaa7a3928f5416884f0e75b1c.png', 'L2', '0', '高质感面料,休闲商务两相宜');
  360. INSERT INTO `nideshop_category` VALUES ('1035003', '肉制品', '', '真嗜肉者,都爱这一味,或麻辣鲜香、或五味俱全,都是佳肴美馔真滋味', '1005002', '8', '8', '1', 'http://yanxuan.nosdn.127.net/db3e11b8a6974a253818ae0d6fb2d24e.png', '', '', 'http://yanxuan.nosdn.127.net/94480324b376a51af47cf92df70d1ade.png', 'L2', '0', '真嗜肉者,都爱这一味,佳肴美馔真滋味');
  361. INSERT INTO `nideshop_category` VALUES ('1036000', '夏凉', '', '夏凉床品,舒适一夏', '1005000', '1', '1', '1', 'http://yanxuan.nosdn.127.net/13ff4decdf38fe1a5bde34f0e0cc635a.png', '', '', 'http://yanxuan.nosdn.127.net/bd17c985bacb9b9ab1ab6e9d66ee343c.png', 'L2', '0', '夏凉床品,舒适一夏');
  362. INSERT INTO `nideshop_category` VALUES ('1036001', '眼镜', '', '实用加时尚,造型百搭单品', '1012000', '9', '10', '1', 'http://yanxuan.nosdn.127.net/97f5f75ea1209dfbb85e91932d26c3ed.png', '', '', 'http://yanxuan.nosdn.127.net/c25fb420ccb6f692a2d16f1740b60d21.png', 'L2', '0', '实用加时尚,造型百搭单品');
  363. INSERT INTO `nideshop_category` VALUES ('1036002', '汽车用品', '', '给你的爱车添装备', '1012000', '10', '10', '1', 'http://yanxuan.nosdn.127.net/382cda1ef9cca77d99bcef05070d7db0.png', '', '', 'http://yanxuan.nosdn.127.net/552e943e585a999169fdbc57b59524d6.png', 'L2', '0', '给你的爱车添装备');
  364. INSERT INTO `nideshop_category` VALUES ('1036003', '调味', '', '烹饪必备,美食调味', '1005002', '9', '9', '1', 'http://yanxuan.nosdn.127.net/2ae44a3944f2bc737416e1cff3d4bcef.png', '', '', 'http://yanxuan.nosdn.127.net/13d58949a8c72ec914b5ef63ac726a43.png', 'L2', '0', '烹饪必备,美食调味');
  365. INSERT INTO `nideshop_category` VALUES ('1036004', '大话西游', '', '大话西游正版周边', '1019000', '9', '8', '1', 'http://yanxuan.nosdn.127.net/b60618db213322bdc2c5b1208655bd7e.png', '', '', 'http://yanxuan.nosdn.127.net/470a017f508e9a18f3068be7b315e14b.png', 'L2', '0', '大话西游正版周边');
  366. -- ----------------------------
  367. -- Table structure for `nideshop_channel`
  368. -- ----------------------------
  369. DROP TABLE IF EXISTS `nideshop_channel`;
  370. CREATE TABLE `nideshop_channel` (
  371. `id` int(11) NOT NULL AUTO_INCREMENT,
  372. `name` varchar(45) NOT NULL DEFAULT '',
  373. `url` varchar(255) NOT NULL DEFAULT '',
  374. `icon_url` varchar(255) NOT NULL DEFAULT '',
  375. `sort_order` int(4) unsigned NOT NULL DEFAULT '10',
  376. PRIMARY KEY (`id`)
  377. ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8;
  378. -- ----------------------------
  379. -- Records of nideshop_channel
  380. -- ----------------------------
  381. INSERT INTO `nideshop_channel` VALUES (1, '居家', '/pages/category/category?id=1005000', 'https://platform-wxmall.oss-cn-beijing.aliyuncs.com/upload/20180727/1508205806587c.png', 1);
  382. INSERT INTO `nideshop_channel` VALUES (2, '餐厨', '/pages/category/category?id=1005001', 'https://platform-wxmall.oss-cn-beijing.aliyuncs.com/upload/20180727/1509505811a78d.png', 2);
  383. INSERT INTO `nideshop_channel` VALUES (3, '配件', '/pages/category/category?id=1008000', 'https://platform-wxmall.oss-cn-beijing.aliyuncs.com/upload/20180727/1512165188bbba.png', 3);
  384. INSERT INTO `nideshop_channel` VALUES (4, '服装', '/pages/category/category?id=1005002', 'https://platform-wxmall.oss-cn-beijing.aliyuncs.com/upload/20180727/151537891573ed.png', 4);
  385. INSERT INTO `nideshop_channel` VALUES (5, '志趣', '/pages/category/category?id=1019000', 'https://platform-wxmall.oss-cn-beijing.aliyuncs.com/upload/20180727/151514826f7581.png', 5);
  386. -- ----------------------------
  387. -- Table structure for `nideshop_collect`
  388. -- ----------------------------
  389. DROP TABLE IF EXISTS `nideshop_collect`;
  390. CREATE TABLE `nideshop_collect` (
  391. `id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT COMMENT '主键',
  392. `user_id` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT '用户Id',
  393. `value_id` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT '产品Id',
  394. `add_time` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '添加时间',
  395. `is_attention` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否提醒',
  396. `type_id` int(2) unsigned NOT NULL DEFAULT '0',
  397. PRIMARY KEY (`id`),
  398. KEY `user_id` (`user_id`),
  399. KEY `goods_id` (`value_id`),
  400. KEY `is_attention` (`is_attention`)
  401. ) ENGINE=InnoDB AUTO_INCREMENT=75 DEFAULT CHARSET=utf8;
  402. -- ----------------------------
  403. -- Table structure for `nideshop_comment`
  404. -- ----------------------------
  405. DROP TABLE IF EXISTS `nideshop_comment`;
  406. CREATE TABLE `nideshop_comment` (
  407. `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '主键',
  408. `type_id` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT '类型',
  409. `value_id` int(11) DEFAULT '0',
  410. `content` varchar(6550) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '储存为base64编码',
  411. `add_time` bigint(12) unsigned DEFAULT '0' COMMENT '记录时间',
  412. `status` tinyint(3) unsigned DEFAULT '0' COMMENT '状态',
  413. `user_id` int(11) DEFAULT '0' COMMENT '会员Id',
  414. PRIMARY KEY (`id`),
  415. KEY `id_value` (`value_id`)
  416. ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
  417. -- ----------------------------
  418. -- Records of nideshop_comment
  419. -- ----------------------------
  420. INSERT INTO `nideshop_comment` VALUES ('1', '0', '1152101', 'MTE=', '1504933578', '0', '15');
  421. -- ----------------------------
  422. -- Table structure for `nideshop_comment_picture`
  423. -- ----------------------------
  424. DROP TABLE IF EXISTS `nideshop_comment_picture`;
  425. CREATE TABLE `nideshop_comment_picture` (
  426. `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '主键',
  427. `comment_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '评价Id',
  428. `pic_url` varchar(255) NOT NULL DEFAULT '' COMMENT '评价图片',
  429. `sort_order` tinyint(1) unsigned NOT NULL DEFAULT '5' COMMENT '排序',
  430. PRIMARY KEY (`id`)
  431. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  432. -- ----------------------------
  433. -- Records of nideshop_comment_picture
  434. -- ----------------------------
  435. -- ----------------------------
  436. -- Table structure for `nideshop_coupon`
  437. -- ----------------------------
  438. DROP TABLE IF EXISTS `nideshop_coupon`;
  439. CREATE TABLE `nideshop_coupon` (
  440. `id` smallint(5) unsigned NOT NULL AUTO_INCREMENT,
  441. `name` varchar(60) DEFAULT '',
  442. `type_money` decimal(10,2) DEFAULT '0.00',
  443. `send_type` tinyint(3) unsigned DEFAULT '0',
  444. `min_amount` decimal(10,2) unsigned DEFAULT '0.00',
  445. `max_amount` decimal(10,2) unsigned DEFAULT '0.00',
  446. `send_start_date` datetime DEFAULT NULL,
  447. `send_end_date` datetime DEFAULT NULL,
  448. `use_start_date` datetime DEFAULT NULL,
  449. `use_end_date` datetime DEFAULT NULL,
  450. `min_goods_amount` decimal(10,2) unsigned DEFAULT '0.00',
  451. `min_transmit_num` int(4) DEFAULT NULL COMMENT '转发次数',
  452. PRIMARY KEY (`id`)
  453. ) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8;
  454. -- ----------------------------
  455. -- Records of nideshop_coupon
  456. -- ----------------------------
  457. INSERT INTO `nideshop_coupon` VALUES ('1', '满100减10元', '10.00', '0', '100.00', '0.00', '2017-08-28 11:51:49', '2020-09-29 11:51:53', '2017-05-01 16:50:40', '2019-11-27 16:50:48', '500.00', null);
  458. INSERT INTO `nideshop_coupon` VALUES ('2', '用户红包', '10.00', '1', '50.00', '0.00', '2017-08-28 11:50:51', '2020-12-02 11:50:56', '2017-06-14 11:50:56', '2020-12-02 11:50:56', '500.00', null);
  459. INSERT INTO `nideshop_coupon` VALUES ('4', '新用户注册5元', '5.00', '4', '10.00', '0.00', '2017-08-28 11:50:51', '2020-12-02 11:50:56', '2017-06-14 11:50:56', '2020-12-02 11:50:56', '360.00', null);
  460. INSERT INTO `nideshop_coupon` VALUES ('7', '满88元包邮', '0.00', '7', '88.00', '0.00', '2017-08-28 11:50:51', '2020-12-02 11:50:56', '2017-05-01 16:50:40', '2019-11-27 16:50:48', '0.00', null);
  461. INSERT INTO `nideshop_coupon` VALUES ('8', '满1000减20元', '20.00', '0', '1000.00', '0.00', '2017-08-28 11:51:49', '2020-09-29 11:51:53', '2017-05-01 16:50:40', '2019-11-27 16:50:48', '500.00', null);
  462. INSERT INTO `nideshop_coupon` VALUES ('9', '满20元减1元', '1.00', '6', '20.00', '0.00', '2017-08-28 11:51:49', '2020-09-29 11:51:53', '2017-05-01 16:50:40', '2019-11-27 16:50:48', '20.00', '10');
  463. -- ----------------------------
  464. -- Table structure for `nideshop_coupon_goods`
  465. -- ----------------------------
  466. DROP TABLE IF EXISTS `nideshop_coupon_goods`;
  467. CREATE TABLE `nideshop_coupon_goods` (
  468. `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '主键',
  469. `coupon_id` int(11) NOT NULL COMMENT '优惠券Id',
  470. `goods_id` int(11) NOT NULL COMMENT '商品id',
  471. PRIMARY KEY (`id`)
  472. ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='优惠券关联商品';
  473. -- ----------------------------
  474. -- Table structure for `nideshop_feedback`
  475. -- ----------------------------
  476. DROP TABLE IF EXISTS `nideshop_feedback`;
  477. CREATE TABLE `nideshop_feedback` (
  478. `msg_id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT COMMENT '主键',
  479. `user_id` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT '会员Id',
  480. `user_name` varchar(60) COLLATE utf8_unicode_ci NOT NULL DEFAULT '' COMMENT '会员会员名称',
  481. `mobile` varchar(60) COLLATE utf8_unicode_ci NOT NULL DEFAULT '' COMMENT '手机',
  482. `feed_Type` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '反馈类型',
  483. `content` text COLLATE utf8_unicode_ci NOT NULL COMMENT '详细内容',
  484. `status` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '状态',
  485. `add_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '反馈时间',
  486. PRIMARY KEY (`msg_id`),
  487. KEY `user_id` (`user_id`)
  488. ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
  489. -- ----------------------------
  490. -- Records of nideshop_feedback
  491. -- ----------------------------
  492. INSERT INTO `nideshop_feedback` VALUES ('1', '19', 'A0_不甘平凡的你', '11111111111', '2', '12', '1', '2017-10-05 23:16:21');
  493. INSERT INTO `nideshop_feedback` VALUES ('2', '19', 'A0_不甘平凡的你', '15209831990', '2', '反馈的内容', '1', '2017-10-05 23:28:56');
  494. -- ----------------------------
  495. -- Table structure for `nideshop_footprint`
  496. -- ----------------------------
  497. DROP TABLE IF EXISTS `nideshop_footprint`;
  498. CREATE TABLE `nideshop_footprint` (
  499. `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '主键',
  500. `user_id` int(11) NOT NULL DEFAULT '0' COMMENT '会员Id',
  501. `goods_id` int(11) NOT NULL DEFAULT '0' COMMENT '商品id',
  502. `add_time` int(11) NOT NULL DEFAULT '0' COMMENT '记录时间',
  503. `referrer` int(11) DEFAULT NULL COMMENT '转发人',
  504. PRIMARY KEY (`id`)
  505. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  506. -- ----------------------------
  507. -- Records of nideshop_footprint
  508. -- ----------------------------
  509. -- ----------------------------
  510. -- Table structure for `nideshop_goods`
  511. -- ----------------------------
  512. DROP TABLE IF EXISTS `nideshop_goods`;
  513. CREATE TABLE `nideshop_goods` (
  514. `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  515. `category_id` int(11) unsigned DEFAULT '0',
  516. `goods_sn` varchar(60) DEFAULT '',
  517. `name` varchar(120) NOT NULL DEFAULT '',
  518. `brand_id` int(11) unsigned DEFAULT '0',
  519. `goods_number` mediumint(8) unsigned DEFAULT '0',
  520. `keywords` varchar(255) DEFAULT '',
  521. `goods_brief` varchar(255) DEFAULT '',
  522. `goods_desc` text,
  523. `is_on_sale` tinyint(1) unsigned DEFAULT '1',
  524. `add_time` datetime DEFAULT NULL,
  525. `sort_order` smallint(4) unsigned DEFAULT '100',
  526. `is_delete` tinyint(1) unsigned DEFAULT '0',
  527. `attribute_category` int(11) unsigned DEFAULT '0',
  528. `counter_price` decimal(10,2) unsigned DEFAULT '0.00' COMMENT '专柜价格',
  529. `extra_price` decimal(10,2) unsigned DEFAULT '0.00' COMMENT '附加价格',
  530. `is_new` tinyint(1) unsigned DEFAULT '0',
  531. `goods_unit` varchar(45) DEFAULT NULL COMMENT '商品单位',
  532. `primary_pic_url` varchar(255) DEFAULT NULL COMMENT '商品主图',
  533. `list_pic_url` varchar(255) DEFAULT NULL COMMENT '商品列表图',
  534. `retail_price` decimal(10,2) unsigned DEFAULT '0.00' COMMENT '零售价格',
  535. `sell_volume` int(11) unsigned DEFAULT '0' COMMENT '销售量',
  536. `primary_product_id` int(11) unsigned DEFAULT '0' COMMENT '主sku product_id',
  537. `unit_price` decimal(10,2) unsigned DEFAULT '0.00' COMMENT '单位价格,单价',
  538. `promotion_desc` varchar(255) DEFAULT NULL,
  539. `promotion_tag` varchar(45) DEFAULT NULL,
  540. `app_exclusive_price` decimal(10,2) unsigned DEFAULT NULL COMMENT 'APP专享价',
  541. `is_app_exclusive` tinyint(1) unsigned DEFAULT NULL COMMENT '是否是APP专属',
  542. `is_limited` tinyint(1) unsigned DEFAULT NULL,
  543. `is_hot` tinyint(1) unsigned DEFAULT '0',
  544. `market_price` decimal(10,2) DEFAULT '0.00',
  545. `create_user_id` bigint(20) DEFAULT NULL COMMENT '创建人ID',
  546. `update_user_id` bigint(20) DEFAULT NULL COMMENT '修改人ID',
  547. `update_time` datetime DEFAULT NULL COMMENT '修改时间',
  548. `create_user_dept_id` bigint(20) DEFAULT NULL,
  549. PRIMARY KEY (`id`),
  550. KEY `goods_sn` (`goods_sn`),
  551. KEY `cat_id` (`category_id`),
  552. KEY `brand_id` (`brand_id`),
  553. KEY `goods_number` (`goods_number`),
  554. KEY `sort_order` (`sort_order`)
  555. ) ENGINE=InnoDB AUTO_INCREMENT=1181001 DEFAULT CHARSET=utf8;
  556. -- ----------------------------
  557. -- Records of nideshop_goods
  558. -- ----------------------------
  559. INSERT INTO `nideshop_goods` VALUES ('1006002', '1008009', '1006002', '轻奢纯棉刺绣水洗四件套', '0', '100', '', '设计师原款,精致绣花', '<p><img src=\"http://yanxuan.nosdn.127.net/2597f9e2e41093f50761837eb4c2e6be.jpg\" _src=\"http://yanxuan.nosdn.127.net/2597f9e2e41093f50761837eb4c2e6be.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4377adc892bf9d16f9d0fd78f88a6986.jpg\" _src=\"http://yanxuan.nosdn.127.net/4377adc892bf9d16f9d0fd78f88a6986.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/986bd3a7517a356265049443cbb747d9.jpg\" _src=\"http://yanxuan.nosdn.127.net/986bd3a7517a356265049443cbb747d9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5cdf3958b3a8d9982b879e3fea1fd616.jpg\" _src=\"http://yanxuan.nosdn.127.net/5cdf3958b3a8d9982b879e3fea1fd616.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/47e5be34ef476258f44f307982c705d4.jpg\" _src=\"http://yanxuan.nosdn.127.net/47e5be34ef476258f44f307982c705d4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a2220e4cbb5ebc49e9cecb64176983d9.jpg\" _src=\"http://yanxuan.nosdn.127.net/a2220e4cbb5ebc49e9cecb64176983d9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/dee62e466465b370c349e37fccd3b596.jpg\" _src=\"http://yanxuan.nosdn.127.net/dee62e466465b370c349e37fccd3b596.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c021b91f965ac022182eb03b2780e5de.jpg\" _src=\"http://yanxuan.nosdn.127.net/c021b91f965ac022182eb03b2780e5de.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b9f7afd9441928d7f670fd7879ba869d.jpg\" _src=\"http://yanxuan.nosdn.127.net/b9f7afd9441928d7f670fd7879ba869d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8a73b69a2fefbd154a2a6ad45102b565.jpg\" _src=\"http://yanxuan.nosdn.127.net/8a73b69a2fefbd154a2a6ad45102b565.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5836d918faa9b11eb8d9f97f9787cda9.jpg\" _src=\"http://yanxuan.nosdn.127.net/5836d918faa9b11eb8d9f97f9787cda9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8216a8addae2f02a5a570ef45d5ecffc.jpg\" _src=\"http://yanxuan.nosdn.127.net/8216a8addae2f02a5a570ef45d5ecffc.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/da382973dcb0e524a36519baab880204.jpg\" _src=\"http://yanxuan.nosdn.127.net/da382973dcb0e524a36519baab880204.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f1c6e84d49f74e228bc57934ec7b7500.jpg\" _src=\"http://yanxuan.nosdn.127.net/f1c6e84d49f74e228bc57934ec7b7500.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2f1d0a20e54d3e2e59a44ffe44ebe405.jpg\" _src=\"http://yanxuan.nosdn.127.net/2f1d0a20e54d3e2e59a44ffe44ebe405.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a39f2c7580ce5cadc62e8b39d58aca71.jpg\" _src=\"http://yanxuan.nosdn.127.net/a39f2c7580ce5cadc62e8b39d58aca71.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c71dc416f04615b634d2b6cd0c4215ee.jpg\" _src=\"http://yanxuan.nosdn.127.net/c71dc416f04615b634d2b6cd0c4215ee.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/06ac26ed7d870c5c6f0ce3e07c629471.jpg\" _src=\"http://yanxuan.nosdn.127.net/06ac26ed7d870c5c6f0ce3e07c629471.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/99b180d02726e0213e54dddf4b9b32fd.jpg\" _src=\"http://yanxuan.nosdn.127.net/99b180d02726e0213e54dddf4b9b32fd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/97de8d2687052976e51fff40d04af2ce.jpg\" _src=\"http://yanxuan.nosdn.127.net/97de8d2687052976e51fff40d04af2ce.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3f527003599be237095995c98039ef87.jpg\" _src=\"http://yanxuan.nosdn.127.net/3f527003599be237095995c98039ef87.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ec30289dc1b2beb4b84a08c02a97ef6e.jpg\" _src=\"http://yanxuan.nosdn.127.net/ec30289dc1b2beb4b84a08c02a97ef6e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/685da1eaddcd26e8e2a1ff4d5d83f29f.jpg\" _src=\"http://yanxuan.nosdn.127.net/685da1eaddcd26e8e2a1ff4d5d83f29f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2610f487a733a88973d101dcd1766ee1.jpg\" _src=\"http://yanxuan.nosdn.127.net/2610f487a733a88973d101dcd1766ee1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/eab3633e648ab2e8412c6801feb6231e.jpg\" _src=\"http://yanxuan.nosdn.127.net/eab3633e648ab2e8412c6801feb6231e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7b6c4f220592ea7d5af0072a816fe946.jpg\" _src=\"http://yanxuan.nosdn.127.net/7b6c4f220592ea7d5af0072a816fe946.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/310a777685204ece08592a6e2716c6c9.jpg\" _src=\"http://yanxuan.nosdn.127.net/310a777685204ece08592a6e2716c6c9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/198239985c74597717e639089ffae25f.jpg\" _src=\"http://yanxuan.nosdn.127.net/198239985c74597717e639089ffae25f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/dec6b498c899351fe94d99a6dde0ee79.jpg\" _src=\"http://yanxuan.nosdn.127.net/dec6b498c899351fe94d99a6dde0ee79.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/516a17ca73846bc871902b298ce38a97.jpg\" _src=\"http://yanxuan.nosdn.127.net/516a17ca73846bc871902b298ce38a97.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d8231b81b5ba0e1c244074598c19f003.jpg\" _src=\"http://yanxuan.nosdn.127.net/d8231b81b5ba0e1c244074598c19f003.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/92c704dcf169e9a177a3c762a6a54a46.jpg\" _src=\"http://yanxuan.nosdn.127.net/92c704dcf169e9a177a3c762a6a54a46.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5b9294ad5f78d890453d4a225feed518.jpg\" _src=\"http://yanxuan.nosdn.127.net/5b9294ad5f78d890453d4a225feed518.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9bb1b8fdfaa7f895bdd7d5c65c42a59b.jpg\" _src=\"http://yanxuan.nosdn.127.net/9bb1b8fdfaa7f895bdd7d5c65c42a59b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f342e6d6b75dc1f80972feb415fd4e75.jpg\" _src=\"http://yanxuan.nosdn.127.net/f342e6d6b75dc1f80972feb415fd4e75.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6c9597cf206066861b3244f634c98e32.jpg\" _src=\"http://yanxuan.nosdn.127.net/6c9597cf206066861b3244f634c98e32.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/970d4dad7d958293fd41ec1f444684f1.jpg\" _src=\"http://yanxuan.nosdn.127.net/970d4dad7d958293fd41ec1f444684f1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6f93819b03de07abef8b2d94f1d5c84b.jpg\" _src=\"http://yanxuan.nosdn.127.net/6f93819b03de07abef8b2d94f1d5c84b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/58c8c56aac61da4ee9fcf34930b76e4e.jpg\" _src=\"http://yanxuan.nosdn.127.net/58c8c56aac61da4ee9fcf34930b76e4e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fb6435ec714189d6ad5053bf12d41db7.jpg\" _src=\"http://yanxuan.nosdn.127.net/fb6435ec714189d6ad5053bf12d41db7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/19cc85ae097247d5d868df993de64e7b.jpg\" _src=\"http://yanxuan.nosdn.127.net/19cc85ae097247d5d868df993de64e7b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0ab8e27757cabd39fccdb5fd8ef7b013.jpg\" _src=\"http://yanxuan.nosdn.127.net/0ab8e27757cabd39fccdb5fd8ef7b013.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/03e6f02f8f77b71a82a05dd1a9705057.jpg\" _src=\"http://yanxuan.nosdn.127.net/03e6f02f8f77b71a82a05dd1a9705057.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '23', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/599ee624350ecb9e70c32375c0cd4807.jpg', 'http://yanxuan.nosdn.127.net/8ab2d3287af0cefa2cc539e40600621d.png', '899.00', '168', '1006003', '0.00', '限时购', '', '0.00', '0', '0', '0', '988.90', null, null, null, null);
  560. INSERT INTO `nideshop_goods` VALUES ('1006007', '1008008', '1006007', '秋冬保暖加厚澳洲羊毛被', '0', '100', '', '臻品级澳洲进口羊毛', '<p><img src=\"http://yanxuan.nosdn.127.net/c78ec6e16d8477525c0a59e3c9d847b8.jpg\" _src=\"http://yanxuan.nosdn.127.net/c78ec6e16d8477525c0a59e3c9d847b8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/294185760b75f364f6ed42784877e59c.jpg\" _src=\"http://yanxuan.nosdn.127.net/294185760b75f364f6ed42784877e59c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2468d1851e29930cc3802f125da5d6e8.jpg\" _src=\"http://yanxuan.nosdn.127.net/2468d1851e29930cc3802f125da5d6e8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0794791277945c1577776724778124f8.jpg\" _src=\"http://yanxuan.nosdn.127.net/0794791277945c1577776724778124f8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6973ca1e6f264620d5d25e581a0d623d.jpg\" _src=\"http://yanxuan.nosdn.127.net/6973ca1e6f264620d5d25e581a0d623d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/26f01273c833c2ae75177a5c8d9310ef.jpg\" _src=\"http://yanxuan.nosdn.127.net/26f01273c833c2ae75177a5c8d9310ef.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bf0207da5160588acf58d0f02ea9d360.jpg\" _src=\"http://yanxuan.nosdn.127.net/bf0207da5160588acf58d0f02ea9d360.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/dbd5d5171a309344d05663952930441f.jpg\" _src=\"http://yanxuan.nosdn.127.net/dbd5d5171a309344d05663952930441f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e7a65ac0824fc1584c2f1943ed1eaed0.jpg\" _src=\"http://yanxuan.nosdn.127.net/e7a65ac0824fc1584c2f1943ed1eaed0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/88871ed9eccf7fbdfccf7912bb8f9d21.jpg\" _src=\"http://yanxuan.nosdn.127.net/88871ed9eccf7fbdfccf7912bb8f9d21.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7aa0e4c0abeb157e231b17e91cfa8f02.jpg\" _src=\"http://yanxuan.nosdn.127.net/7aa0e4c0abeb157e231b17e91cfa8f02.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a38f897200e305e7b23d62431b9c4d18.jpg\" _src=\"http://yanxuan.nosdn.127.net/a38f897200e305e7b23d62431b9c4d18.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bb147c0e96cdac2d77ab4eef1785e99d.jpg\" _src=\"http://yanxuan.nosdn.127.net/bb147c0e96cdac2d77ab4eef1785e99d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c6a270f7aed68cfe74e66d720c776fca.jpg\" _src=\"http://yanxuan.nosdn.127.net/c6a270f7aed68cfe74e66d720c776fca.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c2c0b548be17f620db8afbe039a99452.jpg\" _src=\"http://yanxuan.nosdn.127.net/c2c0b548be17f620db8afbe039a99452.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/155fe0023e17bac4af486a6c1c098537.jpg\" _src=\"http://yanxuan.nosdn.127.net/155fe0023e17bac4af486a6c1c098537.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8f1f120ca7e362595fd986ea6de8814f.jpg\" _src=\"http://yanxuan.nosdn.127.net/8f1f120ca7e362595fd986ea6de8814f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6971f0333e0eeef7d9951edad068d4ec.jpg\" _src=\"http://yanxuan.nosdn.127.net/6971f0333e0eeef7d9951edad068d4ec.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c307630edf971e408938f1007169fa53.jpg\" _src=\"http://yanxuan.nosdn.127.net/c307630edf971e408938f1007169fa53.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4ea2ba74fb518a298ef825c43ed634f4.jpg\" _src=\"http://yanxuan.nosdn.127.net/4ea2ba74fb518a298ef825c43ed634f4.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '17', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/33c1b1b20972990e0ae81f260b00f036.jpg', 'http://yanxuan.nosdn.127.net/66425d1ed50b3968fed27c822fdd32e0.png', '459.00', '1730', '1006022', '0.00', '限时购', '', '0.00', '0', '0', '0', '504.90', null, null, null, null);
  561. INSERT INTO `nideshop_goods` VALUES ('1006010', '1008008', '1006010', '秋冬保暖加厚细羊毛被', '0', '100', '', '细腻绵羊毛,保暖性增加一倍', '<p><img src=\"http://yanxuan.nosdn.127.net/01c77e998005297e0fad16b25433409f.jpg\" _src=\"http://yanxuan.nosdn.127.net/01c77e998005297e0fad16b25433409f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/36bffed3bd139e0135f35e1c30dfab01.jpg\" _src=\"http://yanxuan.nosdn.127.net/36bffed3bd139e0135f35e1c30dfab01.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/400b9395fb6947977a27da56baf07fcb.jpg\" _src=\"http://yanxuan.nosdn.127.net/400b9395fb6947977a27da56baf07fcb.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7d6aef8e60f6bf2a438774ae114a9206.jpg\" _src=\"http://yanxuan.nosdn.127.net/7d6aef8e60f6bf2a438774ae114a9206.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/13521752a26971ad793d5e3e7061305b.jpg\" _src=\"http://yanxuan.nosdn.127.net/13521752a26971ad793d5e3e7061305b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8e4beb6669d9a83e19540727c01ced37.jpg\" _src=\"http://yanxuan.nosdn.127.net/8e4beb6669d9a83e19540727c01ced37.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9c2e31cb55507bcb4653181f64a069a4.jpg\" _src=\"http://yanxuan.nosdn.127.net/9c2e31cb55507bcb4653181f64a069a4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2a65159336d1e2991ef93ed2aab15b7f.jpg\" _src=\"http://yanxuan.nosdn.127.net/2a65159336d1e2991ef93ed2aab15b7f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4bade2a9a72c78749f2a0126a43f5943.jpg\" _src=\"http://yanxuan.nosdn.127.net/4bade2a9a72c78749f2a0126a43f5943.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/15cf85dc65d2d857bfd1e45516775944.jpg\" _src=\"http://yanxuan.nosdn.127.net/15cf85dc65d2d857bfd1e45516775944.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/dffc49e67aa11308b8e408d7539ddf84.jpg\" _src=\"http://yanxuan.nosdn.127.net/dffc49e67aa11308b8e408d7539ddf84.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0826118b3dbd1a123419d1f7f46784de.jpg\" _src=\"http://yanxuan.nosdn.127.net/0826118b3dbd1a123419d1f7f46784de.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2cc7573ddb418a0f9fc0483367fce877.jpg\" _src=\"http://yanxuan.nosdn.127.net/2cc7573ddb418a0f9fc0483367fce877.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/62b67fcc05f65b26be987e2576ac1b97.jpg\" _src=\"http://yanxuan.nosdn.127.net/62b67fcc05f65b26be987e2576ac1b97.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/61a604a7f4ec39a7383265d4fb4ba1fe.jpg\" _src=\"http://yanxuan.nosdn.127.net/61a604a7f4ec39a7383265d4fb4ba1fe.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5b04ba442e1d859cce4a945b5fee0ec2.jpg\" _src=\"http://yanxuan.nosdn.127.net/5b04ba442e1d859cce4a945b5fee0ec2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0aae1850fdc689eb42103b43709a3de9.jpg\" _src=\"http://yanxuan.nosdn.127.net/0aae1850fdc689eb42103b43709a3de9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9a82fdc70b5da5c802dca76410c80dac.jpg\" _src=\"http://yanxuan.nosdn.127.net/9a82fdc70b5da5c802dca76410c80dac.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/41fff402bc16cd45614bdfa7b612849f.jpg\" _src=\"http://yanxuan.nosdn.127.net/41fff402bc16cd45614bdfa7b612849f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d357f7ec1ced66c8865ed1029cbcc562.jpg\" _src=\"http://yanxuan.nosdn.127.net/d357f7ec1ced66c8865ed1029cbcc562.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ad18d0bdad9a571bbf03ebe013a422d9.jpg\" _src=\"http://yanxuan.nosdn.127.net/ad18d0bdad9a571bbf03ebe013a422d9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5e0e6c2c77f1627b79037b76ba37adf9.jpg\" _src=\"http://yanxuan.nosdn.127.net/5e0e6c2c77f1627b79037b76ba37adf9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b71de5aaafd05a730cfe421f9e16053d.jpg\" _src=\"http://yanxuan.nosdn.127.net/b71de5aaafd05a730cfe421f9e16053d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/aeca9234db5622edfe465c3f7732d203.jpg\" _src=\"http://yanxuan.nosdn.127.net/aeca9234db5622edfe465c3f7732d203.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/678124d2002655e05588a9484f8e5c14.jpg\" _src=\"http://yanxuan.nosdn.127.net/678124d2002655e05588a9484f8e5c14.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3909a0aa66fbdc59c99d0666aef34286.jpg\" _src=\"http://yanxuan.nosdn.127.net/3909a0aa66fbdc59c99d0666aef34286.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4ec01a83f6f6cd2d282ec0be98daeb3a.jpg\" _src=\"http://yanxuan.nosdn.127.net/4ec01a83f6f6cd2d282ec0be98daeb3a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d8716853b4b08223e886ee8d882e2d58.jpg\" _src=\"http://yanxuan.nosdn.127.net/d8716853b4b08223e886ee8d882e2d58.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b8188de7819424845707f3f79a1f80d6.jpg\" _src=\"http://yanxuan.nosdn.127.net/b8188de7819424845707f3f79a1f80d6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/30298def5edcdd62d0c4a20cfdfef66c.jpg\" _src=\"http://yanxuan.nosdn.127.net/30298def5edcdd62d0c4a20cfdfef66c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3437687b19a26469212a1e2c485c557d.jpg\" _src=\"http://yanxuan.nosdn.127.net/3437687b19a26469212a1e2c485c557d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2450afdd3b9f3cc7fc27bbde33ae0e86.jpg\" _src=\"http://yanxuan.nosdn.127.net/2450afdd3b9f3cc7fc27bbde33ae0e86.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/434d004c435b62a9505c5ffdf6d362d5.jpg\" _src=\"http://yanxuan.nosdn.127.net/434d004c435b62a9505c5ffdf6d362d5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/41b6db4ce14bc2d3ff6526d43f52fb46.jpg\" _src=\"http://yanxuan.nosdn.127.net/41b6db4ce14bc2d3ff6526d43f52fb46.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cec4d2d62eccc86b409465e1344f1d24.jpg\" _src=\"http://yanxuan.nosdn.127.net/cec4d2d62eccc86b409465e1344f1d24.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/09b9868d054ffcdbba3166882fbc8f38.jpg\" _src=\"http://yanxuan.nosdn.127.net/09b9868d054ffcdbba3166882fbc8f38.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9d8027527ac4af59cc2172a7c3dce64e.jpg\" _src=\"http://yanxuan.nosdn.127.net/9d8027527ac4af59cc2172a7c3dce64e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/59deea242718d6610f445776833f9afa.jpg\" _src=\"http://yanxuan.nosdn.127.net/59deea242718d6610f445776833f9afa.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/13f4b4c5dc11e4f5d2767254d2a5c777.jpg\" _src=\"http://yanxuan.nosdn.127.net/13f4b4c5dc11e4f5d2767254d2a5c777.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f0d22f9c380873ddca23e6f187d6b6aa.jpg\" _src=\"http://yanxuan.nosdn.127.net/f0d22f9c380873ddca23e6f187d6b6aa.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1821334ad83bfaa64ac4d212be9dd953.jpg\" _src=\"http://yanxuan.nosdn.127.net/1821334ad83bfaa64ac4d212be9dd953.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/72e6119d0329faa952d036173cf2f7fc.jpg\" _src=\"http://yanxuan.nosdn.127.net/72e6119d0329faa952d036173cf2f7fc.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f69081555848f7d3af16cefb9f661c64.jpg\" _src=\"http://yanxuan.nosdn.127.net/f69081555848f7d3af16cefb9f661c64.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cbb30819e21854491e0a5c8cf933b59a.jpg\" _src=\"http://yanxuan.nosdn.127.net/cbb30819e21854491e0a5c8cf933b59a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/16f564772fc2f1d0030629b42be12211.jpg\" _src=\"http://yanxuan.nosdn.127.net/16f564772fc2f1d0030629b42be12211.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a74dc5e969fc0896537be54155e11cd8.jpg\" _src=\"http://yanxuan.nosdn.127.net/a74dc5e969fc0896537be54155e11cd8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7c9702f8ffa6e3ebfcb5e1c14161a493.jpg\" _src=\"http://yanxuan.nosdn.127.net/7c9702f8ffa6e3ebfcb5e1c14161a493.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f4e3b23eacbc419baa748525bc71ac3f.jpg\" _src=\"http://yanxuan.nosdn.127.net/f4e3b23eacbc419baa748525bc71ac3f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fb9520c1bc8e63e480bd61cfbcb6d18c.jpg\" _src=\"http://yanxuan.nosdn.127.net/fb9520c1bc8e63e480bd61cfbcb6d18c.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '16', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/0e5e4cc4f12a72f37a0019707d333f49.jpg', 'http://yanxuan.nosdn.127.net/8fe022126a2789d970f82853be13a5e6.png', '659.00', '3919', '1006041', '0.00', '限时购', '', '0.00', '0', '0', '0', '724.90', null, null, null, null);
  562. INSERT INTO `nideshop_goods` VALUES ('1006013', '1036000', '1006013', '双宫茧桑蚕丝被 空调被', '1001045', '100', '', '一级桑蚕丝,吸湿透气柔软', '<p><img src=\"http://yanxuan.nosdn.127.net/72d71d3ef34d9c63521e6ede2fd468e0.jpg\" _src=\"http://yanxuan.nosdn.127.net/72d71d3ef34d9c63521e6ede2fd468e0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/454d60ad184bea35d73258716dd8eff2.jpg\" _src=\"http://yanxuan.nosdn.127.net/454d60ad184bea35d73258716dd8eff2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6af1ec459a8ed93abccb436c2424277f.jpg\" _src=\"http://yanxuan.nosdn.127.net/6af1ec459a8ed93abccb436c2424277f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/91b0e9d5f4bc57ec07702b9152ed9b46.jpg\" _src=\"http://yanxuan.nosdn.127.net/91b0e9d5f4bc57ec07702b9152ed9b46.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/da9743a2abce3752e186928fd8028167.jpg\" _src=\"http://yanxuan.nosdn.127.net/da9743a2abce3752e186928fd8028167.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e48f4b067e0890f15c9f3fae5a94ae73.jpg\" _src=\"http://yanxuan.nosdn.127.net/e48f4b067e0890f15c9f3fae5a94ae73.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/51009cc464b77780fda27d0f0d7aff62.jpg\" _src=\"http://yanxuan.nosdn.127.net/51009cc464b77780fda27d0f0d7aff62.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/557905b15620c59926fc3e655e676e1d.jpg\" _src=\"http://yanxuan.nosdn.127.net/557905b15620c59926fc3e655e676e1d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fb249f4ccaa07940b40215883902af7e.jpg\" _src=\"http://yanxuan.nosdn.127.net/fb249f4ccaa07940b40215883902af7e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c763f877079e495ef67dc8db49369044.jpg\" _src=\"http://yanxuan.nosdn.127.net/c763f877079e495ef67dc8db49369044.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fffbf8c9990f40d4d63f84a2ecd8e84d.jpg\" _src=\"http://yanxuan.nosdn.127.net/fffbf8c9990f40d4d63f84a2ecd8e84d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/62dd5aa7c9f64936dcd86f1592eb38b3.jpg\" _src=\"http://yanxuan.nosdn.127.net/62dd5aa7c9f64936dcd86f1592eb38b3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c1f1914c7be28f6800372d878aaf5de1.jpg\" _src=\"http://yanxuan.nosdn.127.net/c1f1914c7be28f6800372d878aaf5de1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fb23c66040b18fb5b5ba6dfeeb9a4b1e.jpg\" _src=\"http://yanxuan.nosdn.127.net/fb23c66040b18fb5b5ba6dfeeb9a4b1e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d49ac2656061fff48a6244dfdde01c41.jpg\" _src=\"http://yanxuan.nosdn.127.net/d49ac2656061fff48a6244dfdde01c41.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/947ca15f1e253634456e1bcb93c8172f.jpg\" _src=\"http://yanxuan.nosdn.127.net/947ca15f1e253634456e1bcb93c8172f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/80ea5528f9a679f24d1240c9e519d693.jpg\" _src=\"http://yanxuan.nosdn.127.net/80ea5528f9a679f24d1240c9e519d693.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/150a3223e5bfdde9442c0bcab62ca711.jpg\" _src=\"http://yanxuan.nosdn.127.net/150a3223e5bfdde9442c0bcab62ca711.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/769f510f743022e38ded0e4a2f2023c7.jpg\" _src=\"http://yanxuan.nosdn.127.net/769f510f743022e38ded0e4a2f2023c7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/91cc7ea8833b03cc9fd7b567a4e2569f.jpg\" _src=\"http://yanxuan.nosdn.127.net/91cc7ea8833b03cc9fd7b567a4e2569f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0982d37e3442540723b17a66493bf849.jpg\" _src=\"http://yanxuan.nosdn.127.net/0982d37e3442540723b17a66493bf849.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/449a379cf9a8664a52cc0ef9582fe063.jpg\" _src=\"http://yanxuan.nosdn.127.net/449a379cf9a8664a52cc0ef9582fe063.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/80d2959fe04d9a283ee1e9b180fd30be.jpg\" _src=\"http://yanxuan.nosdn.127.net/80d2959fe04d9a283ee1e9b180fd30be.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cc878d8a7b7386f5503b327fd444a12d.jpg\" _src=\"http://yanxuan.nosdn.127.net/cc878d8a7b7386f5503b327fd444a12d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f6137ff63496de30117774c7be09d8f1.jpg\" _src=\"http://yanxuan.nosdn.127.net/f6137ff63496de30117774c7be09d8f1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ddfbc82ef6ede49231463b8d09465dbb.jpg\" _src=\"http://yanxuan.nosdn.127.net/ddfbc82ef6ede49231463b8d09465dbb.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/07a0a19039d8e98ffad6895b438545ab.jpg\" _src=\"http://yanxuan.nosdn.127.net/07a0a19039d8e98ffad6895b438545ab.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0f4c47f5d8c1c390fd6efd5b757924c2.jpg\" _src=\"http://yanxuan.nosdn.127.net/0f4c47f5d8c1c390fd6efd5b757924c2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/dee8166ae7bed6d509af9925a350b405.jpg\" _src=\"http://yanxuan.nosdn.127.net/dee8166ae7bed6d509af9925a350b405.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f07dc7e541fd4c0c71d21679a3afbd06.jpg\" _src=\"http://yanxuan.nosdn.127.net/f07dc7e541fd4c0c71d21679a3afbd06.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9deb210e7cdbb18bb42e37b0640fbba9.jpg\" _src=\"http://yanxuan.nosdn.127.net/9deb210e7cdbb18bb42e37b0640fbba9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/286eed28f2cb51d76fafdb1a112aaa91.jpg\" _src=\"http://yanxuan.nosdn.127.net/286eed28f2cb51d76fafdb1a112aaa91.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b7d0251276ab00b200a153515d69dec7.jpg\" _src=\"http://yanxuan.nosdn.127.net/b7d0251276ab00b200a153515d69dec7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3a908235021c994fb2d5a029f27bf520.jpg\" _src=\"http://yanxuan.nosdn.127.net/3a908235021c994fb2d5a029f27bf520.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/98b1fdb1029b1a585871574f7f8bf104.jpg\" _src=\"http://yanxuan.nosdn.127.net/98b1fdb1029b1a585871574f7f8bf104.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b67aa253cacf03bd0d5a3be8743d15b9.jpg\" _src=\"http://yanxuan.nosdn.127.net/b67aa253cacf03bd0d5a3be8743d15b9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b9689e05a06746a6f00be0b6f1dd80ba.jpg\" _src=\"http://yanxuan.nosdn.127.net/b9689e05a06746a6f00be0b6f1dd80ba.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1a494d87239c3a84819f54d5e1e430ad.jpg\" _src=\"http://yanxuan.nosdn.127.net/1a494d87239c3a84819f54d5e1e430ad.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e0187f5be624e13ed5eac7f00c13bde0.jpg\" _src=\"http://yanxuan.nosdn.127.net/e0187f5be624e13ed5eac7f00c13bde0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/dec5144859fb414c2181e0bf15185cf2.jpg\" _src=\"http://yanxuan.nosdn.127.net/dec5144859fb414c2181e0bf15185cf2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f06282b15ffbed67f115b436ca6975ab.jpg\" _src=\"http://yanxuan.nosdn.127.net/f06282b15ffbed67f115b436ca6975ab.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3c159080beb18d634929c6543392d655.jpg\" _src=\"http://yanxuan.nosdn.127.net/3c159080beb18d634929c6543392d655.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/94bea38417d6f74a823b0407e3871709.jpg\" _src=\"http://yanxuan.nosdn.127.net/94bea38417d6f74a823b0407e3871709.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f204613bd50eb71265ca0dc28bc91df0.jpg\" _src=\"http://yanxuan.nosdn.127.net/f204613bd50eb71265ca0dc28bc91df0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/36e9a86f175472e70708511a51276e33.jpg\" _src=\"http://yanxuan.nosdn.127.net/36e9a86f175472e70708511a51276e33.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/293a0997d7f9dd51211225ceb8073a04.jpg\" _src=\"http://yanxuan.nosdn.127.net/293a0997d7f9dd51211225ceb8073a04.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a3c451b65fd6e8215f4609696f9699d8.jpg\" _src=\"http://yanxuan.nosdn.127.net/a3c451b65fd6e8215f4609696f9699d8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/54ad136164b7066bda8c3f5b418eb6c5.jpg\" _src=\"http://yanxuan.nosdn.127.net/54ad136164b7066bda8c3f5b418eb6c5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e17a55eea9daa90ad3e5490a8ade2060.jpg\" _src=\"http://yanxuan.nosdn.127.net/e17a55eea9daa90ad3e5490a8ade2060.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c898af2ddd8754fa42ae09d341c255ab.jpg\" _src=\"http://yanxuan.nosdn.127.net/c898af2ddd8754fa42ae09d341c255ab.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ad2b42dfa9ed7a3b0b7d832482592aea.jpg\" _src=\"http://yanxuan.nosdn.127.net/ad2b42dfa9ed7a3b0b7d832482592aea.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/314cb766b281d9d69ca7d0e177326e3a.jpg\" _src=\"http://yanxuan.nosdn.127.net/314cb766b281d9d69ca7d0e177326e3a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/42bcc536dc84355531fa657a450b5daa.jpg\" _src=\"http://yanxuan.nosdn.127.net/42bcc536dc84355531fa657a450b5daa.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a7f140d9e49eb84d504719b7a04541e9.jpg\" _src=\"http://yanxuan.nosdn.127.net/a7f140d9e49eb84d504719b7a04541e9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/693aa30f123d122d58507ec0df194f96.jpg\" _src=\"http://yanxuan.nosdn.127.net/693aa30f123d122d58507ec0df194f96.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7193b8192cb6345f6f2503febd2b86ed.jpg\" _src=\"http://yanxuan.nosdn.127.net/7193b8192cb6345f6f2503febd2b86ed.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5f997dbe72e525fcc68663fe50b5c825.jpg\" _src=\"http://yanxuan.nosdn.127.net/5f997dbe72e525fcc68663fe50b5c825.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6771f59b904f91d296c115de01f0b7f3.jpg\" _src=\"http://yanxuan.nosdn.127.net/6771f59b904f91d296c115de01f0b7f3.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '7', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/7b95e6b91133f8d8fd56505c47d2fa29.jpg', 'http://yanxuan.nosdn.127.net/583812520c68ca7995b6fac4c67ae2c7.png', '699.00', '841', '1006045', '0.00', '限时购', '', '0.00', '0', '0', '1', '768.90', null, null, null, null);
  563. INSERT INTO `nideshop_goods` VALUES ('1006014', '1008008', '1006014', '双宫茧桑蚕丝被 子母被', '1001045', '100', '', '双层子母被,四季皆可使用', '<p><img src=\"http://yanxuan.nosdn.127.net/3b5ee089edb2b5d3361bf60e208ec474.jpg\" _src=\"http://yanxuan.nosdn.127.net/3b5ee089edb2b5d3361bf60e208ec474.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/737260dd5cfae7ef72c713af861e8774.jpg\" _src=\"http://yanxuan.nosdn.127.net/737260dd5cfae7ef72c713af861e8774.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/62a70427f9d6bf81bc19203e6f401e2e.jpg\" _src=\"http://yanxuan.nosdn.127.net/62a70427f9d6bf81bc19203e6f401e2e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/051aa6ea1ef13b32240a34e0d2d5ca97.jpg\" _src=\"http://yanxuan.nosdn.127.net/051aa6ea1ef13b32240a34e0d2d5ca97.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/41b19060447843186366c221130ee4de.jpg\" _src=\"http://yanxuan.nosdn.127.net/41b19060447843186366c221130ee4de.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ae757922d72e6c4357d10f1d78bd7a8b.jpg\" _src=\"http://yanxuan.nosdn.127.net/ae757922d72e6c4357d10f1d78bd7a8b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/58bcf7d0ce99f4f2b5cf11b9511319e7.jpg\" _src=\"http://yanxuan.nosdn.127.net/58bcf7d0ce99f4f2b5cf11b9511319e7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/54496c73ebda2680aa2b9d8c375a82e3.jpg\" _src=\"http://yanxuan.nosdn.127.net/54496c73ebda2680aa2b9d8c375a82e3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6caae81b0956de612ce57b1419382813.jpg\" _src=\"http://yanxuan.nosdn.127.net/6caae81b0956de612ce57b1419382813.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2fbf34bb5b36ba708dfc3facc6551d1b.jpg\" _src=\"http://yanxuan.nosdn.127.net/2fbf34bb5b36ba708dfc3facc6551d1b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/741663a8fb8f5a17442951d7ed670952.jpg\" _src=\"http://yanxuan.nosdn.127.net/741663a8fb8f5a17442951d7ed670952.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7055264e97783cc669a003e3e857de8f.jpg\" _src=\"http://yanxuan.nosdn.127.net/7055264e97783cc669a003e3e857de8f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/59983cf72d63181eff723b7d6ec2a57d.jpg\" _src=\"http://yanxuan.nosdn.127.net/59983cf72d63181eff723b7d6ec2a57d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6046cb49c22b635a84d490e8f0ab9f8f.jpg\" _src=\"http://yanxuan.nosdn.127.net/6046cb49c22b635a84d490e8f0ab9f8f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/01d18fcb6e8019798a630c9abb01580a.jpg\" _src=\"http://yanxuan.nosdn.127.net/01d18fcb6e8019798a630c9abb01580a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4093967aedc279e3c4ee3e672fbebbff.jpg\" _src=\"http://yanxuan.nosdn.127.net/4093967aedc279e3c4ee3e672fbebbff.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/994d3bcf0b40fc9c31f51a9accd0b88c.jpg\" _src=\"http://yanxuan.nosdn.127.net/994d3bcf0b40fc9c31f51a9accd0b88c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/72fd621d3b567cb6d963a9b554c58ee5.jpg\" _src=\"http://yanxuan.nosdn.127.net/72fd621d3b567cb6d963a9b554c58ee5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c1704b2d57d8ce5a30b371f702b80e23.jpg\" _src=\"http://yanxuan.nosdn.127.net/c1704b2d57d8ce5a30b371f702b80e23.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a0cd8614de4c7bc709158dcf9b7e9ada.jpg\" _src=\"http://yanxuan.nosdn.127.net/a0cd8614de4c7bc709158dcf9b7e9ada.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/290ecc11a85a18b87825fe57caa81bd3.jpg\" _src=\"http://yanxuan.nosdn.127.net/290ecc11a85a18b87825fe57caa81bd3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3467f0eb4f5a3feb30df257b1dd1a80a.jpg\" _src=\"http://yanxuan.nosdn.127.net/3467f0eb4f5a3feb30df257b1dd1a80a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/406defa7a54f5626e050d9eee2a3a7f4.jpg\" _src=\"http://yanxuan.nosdn.127.net/406defa7a54f5626e050d9eee2a3a7f4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/14f1fa09e672955a8afad3e35eae3798.jpg\" _src=\"http://yanxuan.nosdn.127.net/14f1fa09e672955a8afad3e35eae3798.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/df344f04a06d62cb15c48a220fb18e34.jpg\" _src=\"http://yanxuan.nosdn.127.net/df344f04a06d62cb15c48a220fb18e34.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b468781d6f234e0107b7ed7c44492da5.jpg\" _src=\"http://yanxuan.nosdn.127.net/b468781d6f234e0107b7ed7c44492da5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d91c856cbb29826afbc4d3e2bbf63e27.jpg\" _src=\"http://yanxuan.nosdn.127.net/d91c856cbb29826afbc4d3e2bbf63e27.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f08409269a24bc60c51c97e56b279ddc.jpg\" _src=\"http://yanxuan.nosdn.127.net/f08409269a24bc60c51c97e56b279ddc.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3809897fdc8a9db7bd447d7ec1116a17.jpg\" _src=\"http://yanxuan.nosdn.127.net/3809897fdc8a9db7bd447d7ec1116a17.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fd024467887854c0f9540d9cfef2e6dc.jpg\" _src=\"http://yanxuan.nosdn.127.net/fd024467887854c0f9540d9cfef2e6dc.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/da5afa55ec02ac1e430ecb985c7aef83.jpg\" _src=\"http://yanxuan.nosdn.127.net/da5afa55ec02ac1e430ecb985c7aef83.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f522e5f98ccab9311de8b15a2c6951ae.jpg\" _src=\"http://yanxuan.nosdn.127.net/f522e5f98ccab9311de8b15a2c6951ae.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a4d5ef81a10211b7a8d3b7134b3adccb.jpg\" _src=\"http://yanxuan.nosdn.127.net/a4d5ef81a10211b7a8d3b7134b3adccb.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1c241ff5f9c267fbd27c2e0bf346dc00.jpg\" _src=\"http://yanxuan.nosdn.127.net/1c241ff5f9c267fbd27c2e0bf346dc00.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9db75fb0766730ee2f2afcf8b8b33659.jpg\" _src=\"http://yanxuan.nosdn.127.net/9db75fb0766730ee2f2afcf8b8b33659.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5f4f42fad5ace718567c9aa68ada22a1.jpg\" _src=\"http://yanxuan.nosdn.127.net/5f4f42fad5ace718567c9aa68ada22a1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fc0152f7a1a5a31603a59bdfdc4e987f.jpg\" _src=\"http://yanxuan.nosdn.127.net/fc0152f7a1a5a31603a59bdfdc4e987f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c2929041a7abc890965d4b399f3b6278.jpg\" _src=\"http://yanxuan.nosdn.127.net/c2929041a7abc890965d4b399f3b6278.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8e12a5accd62e0b29ace162ca64fe5ac.jpg\" _src=\"http://yanxuan.nosdn.127.net/8e12a5accd62e0b29ace162ca64fe5ac.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/924c7f4ce0af0fdefd04164508648885.jpg\" _src=\"http://yanxuan.nosdn.127.net/924c7f4ce0af0fdefd04164508648885.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/55f049536b6471804546d55b8f4fb88c.jpg\" _src=\"http://yanxuan.nosdn.127.net/55f049536b6471804546d55b8f4fb88c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cd99f9a6f3d60a1d07ac3428b974f65d.jpg\" _src=\"http://yanxuan.nosdn.127.net/cd99f9a6f3d60a1d07ac3428b974f65d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0444882d13667f002b4eeeaa02bf0498.jpg\" _src=\"http://yanxuan.nosdn.127.net/0444882d13667f002b4eeeaa02bf0498.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9491237b070c4eff99dff34d528b4b65.jpg\" _src=\"http://yanxuan.nosdn.127.net/9491237b070c4eff99dff34d528b4b65.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/18bbcf7de0dfe9df10fdccffa328a54d.jpg\" _src=\"http://yanxuan.nosdn.127.net/18bbcf7de0dfe9df10fdccffa328a54d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b396a6ce48ebd3297384d8deea6f06e9.jpg\" _src=\"http://yanxuan.nosdn.127.net/b396a6ce48ebd3297384d8deea6f06e9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2234040e3bcd7d6b7954b34afc9592a6.jpg\" _src=\"http://yanxuan.nosdn.127.net/2234040e3bcd7d6b7954b34afc9592a6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8b2015e0c984e01a2ec6e971f3b3c855.jpg\" _src=\"http://yanxuan.nosdn.127.net/8b2015e0c984e01a2ec6e971f3b3c855.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1cfd381db37cea6b62856d0bcceaa4e0.jpg\" _src=\"http://yanxuan.nosdn.127.net/1cfd381db37cea6b62856d0bcceaa4e0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/61c867e69ce18b47ba5e8b4dc35d45a3.jpg\" _src=\"http://yanxuan.nosdn.127.net/61c867e69ce18b47ba5e8b4dc35d45a3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/efbb973c5e5b9bf58e764957f64402b2.jpg\" _src=\"http://yanxuan.nosdn.127.net/efbb973c5e5b9bf58e764957f64402b2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/66eb58f7818e87a8cc67923a2effaeee.jpg\" _src=\"http://yanxuan.nosdn.127.net/66eb58f7818e87a8cc67923a2effaeee.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '15', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/fdea6bee474e586fd4da18682e07a432.jpg', 'http://yanxuan.nosdn.127.net/2b537159f0f789034bf8c4b339c43750.png', '1399.00', '1949', '1006046', '0.00', '限时购', '', '0.00', '0', '0', '0', '1538.90', null, null, null, null);
  564. INSERT INTO `nideshop_goods` VALUES ('1006051', '1008001', '1006051', '皇室御用超柔毛巾', '0', '100', '', '至柔至软,热销50万条', '', '1', '2017-08-30 11:40:11', '1', '0', '0', '0.00', '0.00', '0', '条', 'http://yanxuan.nosdn.127.net/de30c41b94ce203985a228dc787fdcfa.jpg', 'http://yanxuan.nosdn.127.net/ad5a317216f9da495b144070ecf1f957.png', '59.00', '33401', '1006120', '0.00', '限时购', '', '0.00', '0', '0', '0', '64.90', null, null, null, null);
  565. INSERT INTO `nideshop_goods` VALUES ('1009009', '1008008', '1009009', '白鹅绒秋冬加厚羽绒被', '1001000', '100', '', '热销5万条,一条被子过冬', '<p><img src=\"http://yanxuan.nosdn.127.net/79ae82326ba86985035215ca9bebd137.jpg\" _src=\"http://yanxuan.nosdn.127.net/79ae82326ba86985035215ca9bebd137.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e7aadf2c5fd0942dc9bceb5a0738d969.jpg\" _src=\"http://yanxuan.nosdn.127.net/e7aadf2c5fd0942dc9bceb5a0738d969.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6ccf2486677aafef68048894317b6e96.jpg\" _src=\"http://yanxuan.nosdn.127.net/6ccf2486677aafef68048894317b6e96.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b3ce70df9905a810c60220d9d24ebb2c.jpg\" _src=\"http://yanxuan.nosdn.127.net/b3ce70df9905a810c60220d9d24ebb2c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d51b1e4f61cb563b09dae46ee282e220.jpg\" _src=\"http://yanxuan.nosdn.127.net/d51b1e4f61cb563b09dae46ee282e220.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e2791ef7173866f12be3341ca7202336.jpg\" _src=\"http://yanxuan.nosdn.127.net/e2791ef7173866f12be3341ca7202336.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6cda9c3d9f044310f49afc5bbdb3533d.jpg\" _src=\"http://yanxuan.nosdn.127.net/6cda9c3d9f044310f49afc5bbdb3533d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/68e9be17108a9c6a0e6b786176a4b4c6.jpg\" _src=\"http://yanxuan.nosdn.127.net/68e9be17108a9c6a0e6b786176a4b4c6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3974579c71cdf946088d339e9e5c865d.jpg\" _src=\"http://yanxuan.nosdn.127.net/3974579c71cdf946088d339e9e5c865d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d95a8520e3e3dfec063fc484e1d57207.jpg\" _src=\"http://yanxuan.nosdn.127.net/d95a8520e3e3dfec063fc484e1d57207.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ce8b29a61396dced0f89ea3bfdf1f45d.jpg\" _src=\"http://yanxuan.nosdn.127.net/ce8b29a61396dced0f89ea3bfdf1f45d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/129cba9ef941b367e56dad47aeb7fd96.jpg\" _src=\"http://yanxuan.nosdn.127.net/129cba9ef941b367e56dad47aeb7fd96.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f566abb0c978093647aa1742725129ae.jpg\" _src=\"http://yanxuan.nosdn.127.net/f566abb0c978093647aa1742725129ae.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f7c7c153400895b5d690f1eba9b3c315.jpg\" _src=\"http://yanxuan.nosdn.127.net/f7c7c153400895b5d690f1eba9b3c315.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/be750a41eef4db163a29e2326a65660f.jpg\" _src=\"http://yanxuan.nosdn.127.net/be750a41eef4db163a29e2326a65660f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6ea11ee2e846b3536acb599b93b7d2e9.jpg\" _src=\"http://yanxuan.nosdn.127.net/6ea11ee2e846b3536acb599b93b7d2e9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5814d4e02b3fd0b94d04ca262b201385.jpg\" _src=\"http://yanxuan.nosdn.127.net/5814d4e02b3fd0b94d04ca262b201385.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7959e1d91576bf0d21e7bd042e2210bd.jpg\" _src=\"http://yanxuan.nosdn.127.net/7959e1d91576bf0d21e7bd042e2210bd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4268cc5be26539ed427927e4e6d8e18e.jpg\" _src=\"http://yanxuan.nosdn.127.net/4268cc5be26539ed427927e4e6d8e18e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5667dee42adfce79988974d96ddd8b09.jpg\" _src=\"http://yanxuan.nosdn.127.net/5667dee42adfce79988974d96ddd8b09.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d6c9f0a1a51cd0166844d3694cc92a1e.jpg\" _src=\"http://yanxuan.nosdn.127.net/d6c9f0a1a51cd0166844d3694cc92a1e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ce43457f50492c355ff1f7577685c004.jpg\" _src=\"http://yanxuan.nosdn.127.net/ce43457f50492c355ff1f7577685c004.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9c2ff68fede235b1b9f249cd5dabce0d.jpg\" _src=\"http://yanxuan.nosdn.127.net/9c2ff68fede235b1b9f249cd5dabce0d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/785952cd32deedc2bfd90826e89ddc2a.jpg\" _src=\"http://yanxuan.nosdn.127.net/785952cd32deedc2bfd90826e89ddc2a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b544624dcc990b966e6c6d20ee608b7c.jpg\" _src=\"http://yanxuan.nosdn.127.net/b544624dcc990b966e6c6d20ee608b7c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/761a606123be84d0c6eaa2e5eb9f4f81.jpg\" _src=\"http://yanxuan.nosdn.127.net/761a606123be84d0c6eaa2e5eb9f4f81.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0cce548176f68f7e00de503d4d146629.jpg\" _src=\"http://yanxuan.nosdn.127.net/0cce548176f68f7e00de503d4d146629.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/30cb73b7917af99d4ccbdbca9042d566.jpg\" _src=\"http://yanxuan.nosdn.127.net/30cb73b7917af99d4ccbdbca9042d566.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1a27c57bb90e145df10d633dcfdbe26b.jpg\" _src=\"http://yanxuan.nosdn.127.net/1a27c57bb90e145df10d633dcfdbe26b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8df76b01f83dd4d4a7f58014d8977067.jpg\" _src=\"http://yanxuan.nosdn.127.net/8df76b01f83dd4d4a7f58014d8977067.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ea47ed85b1334e2da9672ee3e9ad66a4.jpg\" _src=\"http://yanxuan.nosdn.127.net/ea47ed85b1334e2da9672ee3e9ad66a4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/750caeba2fa63dec64d598e8299f2122.jpg\" _src=\"http://yanxuan.nosdn.127.net/750caeba2fa63dec64d598e8299f2122.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/14bd429f1d48be5d9a8240c1fb4c494b.jpg\" _src=\"http://yanxuan.nosdn.127.net/14bd429f1d48be5d9a8240c1fb4c494b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/02ee506d1f4ba045d7408a0b1e719c8e.jpg\" _src=\"http://yanxuan.nosdn.127.net/02ee506d1f4ba045d7408a0b1e719c8e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/82443ff0a437048729b35fbdb85b0c3a.jpg\" _src=\"http://yanxuan.nosdn.127.net/82443ff0a437048729b35fbdb85b0c3a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d3f39a87baa66fe50f3b141d148645b5.jpg\" _src=\"http://yanxuan.nosdn.127.net/d3f39a87baa66fe50f3b141d148645b5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/814e549460f206dccb8889165ef69ea2.jpg\" _src=\"http://yanxuan.nosdn.127.net/814e549460f206dccb8889165ef69ea2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/43c21522533725d57ff893f9d080f6cd.jpg\" _src=\"http://yanxuan.nosdn.127.net/43c21522533725d57ff893f9d080f6cd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/dfc0d18fa3b2ba721fd7614af7962cbe.jpg\" _src=\"http://yanxuan.nosdn.127.net/dfc0d18fa3b2ba721fd7614af7962cbe.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1b58ac36c4781edd6d09dfeb2fbb6112.jpg\" _src=\"http://yanxuan.nosdn.127.net/1b58ac36c4781edd6d09dfeb2fbb6112.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/aadb34b1fe47217989e46eefb2fcef2c.jpg\" _src=\"http://yanxuan.nosdn.127.net/aadb34b1fe47217989e46eefb2fcef2c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/558aa961eb6b51692e50c5801d74adeb.jpg\" _src=\"http://yanxuan.nosdn.127.net/558aa961eb6b51692e50c5801d74adeb.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/af3a0c3d829d015c0850befa9aa7f05c.jpg\" _src=\"http://yanxuan.nosdn.127.net/af3a0c3d829d015c0850befa9aa7f05c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/23c02d5a325df4c87eb339e694489339.jpg\" _src=\"http://yanxuan.nosdn.127.net/23c02d5a325df4c87eb339e694489339.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c51160264c2344feb8a2580d0c47a655.jpg\" _src=\"http://yanxuan.nosdn.127.net/c51160264c2344feb8a2580d0c47a655.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ea8ecd877fdd3c0b30f7d7b961fdf8ee.jpg\" _src=\"http://yanxuan.nosdn.127.net/ea8ecd877fdd3c0b30f7d7b961fdf8ee.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5976f583518689c566c94ce65ac8fcb2.jpg\" _src=\"http://yanxuan.nosdn.127.net/5976f583518689c566c94ce65ac8fcb2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/494dc60b71027177448188093c5eb072.jpg\" _src=\"http://yanxuan.nosdn.127.net/494dc60b71027177448188093c5eb072.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9c0fc3b0727795fe696579e6b3a1f817.jpg\" _src=\"http://yanxuan.nosdn.127.net/9c0fc3b0727795fe696579e6b3a1f817.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7ab7aa0de0e90b5a8768d25155e6c475.jpg\" _src=\"http://yanxuan.nosdn.127.net/7ab7aa0de0e90b5a8768d25155e6c475.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/839ffe5bf65befd4ec353fbed7730b2c.jpg\" _src=\"http://yanxuan.nosdn.127.net/839ffe5bf65befd4ec353fbed7730b2c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/313df862cf6181ef199b782969be4607.jpg\" _src=\"http://yanxuan.nosdn.127.net/313df862cf6181ef199b782969be4607.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e39bfc4343d8968879ec66cc67db8987.jpg\" _src=\"http://yanxuan.nosdn.127.net/e39bfc4343d8968879ec66cc67db8987.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d0c74814f38aba0c40a405ece465d554.jpg\" _src=\"http://yanxuan.nosdn.127.net/d0c74814f38aba0c40a405ece465d554.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '19', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/47bb01a1c0d4940494d31e7a61e6466e.jpg', 'http://yanxuan.nosdn.127.net/9791006f25e26b2d7c81f41f87ce8619.png', '1999.00', '154', '1008012', '0.00', '限时购', '', '0.00', '0', '0', '0', '2198.90', null, null, null, null);
  566. INSERT INTO `nideshop_goods` VALUES ('1009012', '1008008', '1009012', '可水洗舒柔丝羽绒枕', '0', '100', '', '超细纤维,蓬松轻盈回弹', '<p><img src=\"http://yanxuan.nosdn.127.net/1a5e9ace280a27c810e67bf3aab66a75.jpg\" _src=\"http://yanxuan.nosdn.127.net/1a5e9ace280a27c810e67bf3aab66a75.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/40c88e440f866d761e72fff850edafc1.jpg\" _src=\"http://yanxuan.nosdn.127.net/40c88e440f866d761e72fff850edafc1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e26e6ab169ea6cd025558eecd8c9cd5c.jpg\" _src=\"http://yanxuan.nosdn.127.net/e26e6ab169ea6cd025558eecd8c9cd5c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7a44f6c9ce44db0c10453632a295849b.jpg\" _src=\"http://yanxuan.nosdn.127.net/7a44f6c9ce44db0c10453632a295849b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/df9d87e60d06169417fa9460f81537d4.jpg\" _src=\"http://yanxuan.nosdn.127.net/df9d87e60d06169417fa9460f81537d4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c2cf5687c311b0dda7931a15532be0fd.jpg\" _src=\"http://yanxuan.nosdn.127.net/c2cf5687c311b0dda7931a15532be0fd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8acf04b68de689304e5cb69ff6bb07d0.jpg\" _src=\"http://yanxuan.nosdn.127.net/8acf04b68de689304e5cb69ff6bb07d0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/65d20babc642c3dcf86e543344e9ed52.jpg\" _src=\"http://yanxuan.nosdn.127.net/65d20babc642c3dcf86e543344e9ed52.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/92efc7c36a8be774dffa2c6e64d80501.jpg\" _src=\"http://yanxuan.nosdn.127.net/92efc7c36a8be774dffa2c6e64d80501.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/70be97c7a2fb95b45260c3debf6c2688.jpg\" _src=\"http://yanxuan.nosdn.127.net/70be97c7a2fb95b45260c3debf6c2688.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/01f3285234fb3e7a005511985b21f79f.jpg\" _src=\"http://yanxuan.nosdn.127.net/01f3285234fb3e7a005511985b21f79f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a4b7e5b867f5b248d28a16116eac5633.jpg\" _src=\"http://yanxuan.nosdn.127.net/a4b7e5b867f5b248d28a16116eac5633.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0c7402aa957e5a25db3fbfefdfb0af96.jpg\" _src=\"http://yanxuan.nosdn.127.net/0c7402aa957e5a25db3fbfefdfb0af96.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/39d0f3ba2eb421945a81fa52414dbca5.jpg\" _src=\"http://yanxuan.nosdn.127.net/39d0f3ba2eb421945a81fa52414dbca5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/000eb7d7bf5587215df305676533e5c2.jpg\" _src=\"http://yanxuan.nosdn.127.net/000eb7d7bf5587215df305676533e5c2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/557a98e73aa9d1d15721b7e4e26e487f.jpg\" _src=\"http://yanxuan.nosdn.127.net/557a98e73aa9d1d15721b7e4e26e487f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/70b33a53ab55bdc711021ae5c9494f03.jpg\" _src=\"http://yanxuan.nosdn.127.net/70b33a53ab55bdc711021ae5c9494f03.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f3d135a3e7c8f550a46cbdcc973d7ad7.jpg\" _src=\"http://yanxuan.nosdn.127.net/f3d135a3e7c8f550a46cbdcc973d7ad7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/87eedde73e8c0b357ca1295a201ffbe0.jpg\" _src=\"http://yanxuan.nosdn.127.net/87eedde73e8c0b357ca1295a201ffbe0.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '2', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/3f2cc7a7e4472aa40c997e70efe6aeed.jpg', 'http://yanxuan.nosdn.127.net/a196b367f23ccfd8205b6da647c62b84.png', '59.00', '4862', '1008022', '0.00', '限时购', '', '0.00', '0', '0', '1', '64.90', null, null, null, null);
  567. INSERT INTO `nideshop_goods` VALUES ('1009013', '1008008', '1009013', '可水洗抗菌防螨丝羽绒枕', '0', '100', '', '进口防螨布,热销50万件', '<p><img src=\"http://yanxuan.nosdn.127.net/b2576e9567e5de643a02f3a5fc26ee17.jpg\" _src=\"http://yanxuan.nosdn.127.net/b2576e9567e5de643a02f3a5fc26ee17.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/029b577be403335de4c2a37b9d83a31d.jpg\" _src=\"http://yanxuan.nosdn.127.net/029b577be403335de4c2a37b9d83a31d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/779f04eac136c934fe9a17d2d26137ae.jpg\" _src=\"http://yanxuan.nosdn.127.net/779f04eac136c934fe9a17d2d26137ae.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5d641ff16c4b2502442616f3e194d575.jpg\" _src=\"http://yanxuan.nosdn.127.net/5d641ff16c4b2502442616f3e194d575.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ec14832d8c947f4dbe716eabfaa7029a.jpg\" _src=\"http://yanxuan.nosdn.127.net/ec14832d8c947f4dbe716eabfaa7029a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/645db2317426b5a852d331231e258c02.jpg\" _src=\"http://yanxuan.nosdn.127.net/645db2317426b5a852d331231e258c02.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ac6055481565438d5fee342c3ccec155.jpg\" _src=\"http://yanxuan.nosdn.127.net/ac6055481565438d5fee342c3ccec155.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8382f534cf2acac06551df87e136c4f0.jpg\" _src=\"http://yanxuan.nosdn.127.net/8382f534cf2acac06551df87e136c4f0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ce4cf3fdb7230634c72fbf6c97bd3c16.jpg\" _src=\"http://yanxuan.nosdn.127.net/ce4cf3fdb7230634c72fbf6c97bd3c16.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5d78a9f815043b0ed880d0ba90b08dbc.jpg\" _src=\"http://yanxuan.nosdn.127.net/5d78a9f815043b0ed880d0ba90b08dbc.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3aa34184510cbdd8df6ba4440af6e37e.jpg\" _src=\"http://yanxuan.nosdn.127.net/3aa34184510cbdd8df6ba4440af6e37e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bbb48af3056fd3dcffa9968a076753f2.jpg\" _src=\"http://yanxuan.nosdn.127.net/bbb48af3056fd3dcffa9968a076753f2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/dc72b5750827b7d222d972888fb9831b.jpg\" _src=\"http://yanxuan.nosdn.127.net/dc72b5750827b7d222d972888fb9831b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b24b9b12b891be546263e2cd3f0b704c.jpg\" _src=\"http://yanxuan.nosdn.127.net/b24b9b12b891be546263e2cd3f0b704c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/631996fac12032dbdc17ffd721fb7087.jpg\" _src=\"http://yanxuan.nosdn.127.net/631996fac12032dbdc17ffd721fb7087.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ecc5a8793e18aad9bf3d5f0a89bff12f.jpg\" _src=\"http://yanxuan.nosdn.127.net/ecc5a8793e18aad9bf3d5f0a89bff12f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/943a4bc41ad6e80051c5cfacd102cfde.jpg\" _src=\"http://yanxuan.nosdn.127.net/943a4bc41ad6e80051c5cfacd102cfde.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c0a13678fdef5e56d53de783e8e01350.jpg\" _src=\"http://yanxuan.nosdn.127.net/c0a13678fdef5e56d53de783e8e01350.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/220ef8d778bdfc198fcb53f0f01289a2.jpg\" _src=\"http://yanxuan.nosdn.127.net/220ef8d778bdfc198fcb53f0f01289a2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/573acbc397778453b21aba05e5a397f6.jpg\" _src=\"http://yanxuan.nosdn.127.net/573acbc397778453b21aba05e5a397f6.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '3', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/7ffe405a024fd78314cbf72c806b5a4b.jpg', 'http://yanxuan.nosdn.127.net/da56fda947d0f430d5f4cf4aba14e679.png', '99.00', '2837', '1008023', '0.00', '限时购', '', '0.00', '0', '0', '0', '108.90', null, null, null, null);
  568. INSERT INTO `nideshop_goods` VALUES ('1009024', '1008002', '1009024', '日式和风懒人沙发', '0', '100', '', '优质莱卡纯棉,和风家居新体验', '<p><br/></p><p><img src=\"http://yanxuan.nosdn.127.net/34a6a0daa3f7a397a38aad14cb9e90fa.jpg\" _src=\"http://yanxuan.nosdn.127.net/34a6a0daa3f7a397a38aad14cb9e90fa.jpg\"/><br/></p><p><img src=\"http://yanxuan.nosdn.127.net/76637af0eec246b318cb129b768de637.jpg\" _src=\"http://yanxuan.nosdn.127.net/76637af0eec246b318cb129b768de637.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/18fee22626e61fc1d1a01916914016ba.jpg\" _src=\"http://yanxuan.nosdn.127.net/18fee22626e61fc1d1a01916914016ba.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/91f57a9bb142e1c1e2ff0bbea6f9af96.jpg\" _src=\"http://yanxuan.nosdn.127.net/91f57a9bb142e1c1e2ff0bbea6f9af96.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/252d80fd75eb1254d746d0b57c267650.jpg\" _src=\"http://yanxuan.nosdn.127.net/252d80fd75eb1254d746d0b57c267650.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4b07697992a2b14de6fd0a5811936d71.jpg\" _src=\"http://yanxuan.nosdn.127.net/4b07697992a2b14de6fd0a5811936d71.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c499439d6081bb4e836955b7514c1b96.jpg\" _src=\"http://yanxuan.nosdn.127.net/c499439d6081bb4e836955b7514c1b96.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bed437fdc091d020a8f805bcc8830bd8.jpg\" _src=\"http://yanxuan.nosdn.127.net/bed437fdc091d020a8f805bcc8830bd8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0fc5febdb817abd7a1040bab03f048b7.jpg\" _src=\"http://yanxuan.nosdn.127.net/0fc5febdb817abd7a1040bab03f048b7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a0417b3986c9dc082124fcc360390021.jpg\" _src=\"http://yanxuan.nosdn.127.net/a0417b3986c9dc082124fcc360390021.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a5c9d24c652d4dee7946ef925105f3f2.jpg\" _src=\"http://yanxuan.nosdn.127.net/a5c9d24c652d4dee7946ef925105f3f2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b10272c58f95dd6737ce1cd41452a21d.jpg\" _src=\"http://yanxuan.nosdn.127.net/b10272c58f95dd6737ce1cd41452a21d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/510c6ef36760238b38ed59cd6e47a21f.png\" _src=\"http://yanxuan.nosdn.127.net/510c6ef36760238b38ed59cd6e47a21f.png\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6371348b917c021c55dc393fc59d4d28.png\" _src=\"http://yanxuan.nosdn.127.net/6371348b917c021c55dc393fc59d4d28.png\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/de4079b128e57c5c0fa8a8177e9bc6e7.png\" _src=\"http://yanxuan.nosdn.127.net/de4079b128e57c5c0fa8a8177e9bc6e7.png\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/160966fbc772787f824dc1dbd5afb16d.png\" _src=\"http://yanxuan.nosdn.127.net/160966fbc772787f824dc1dbd5afb16d.png\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bb3c8d3f10f2aca0908871c8e598aa0e.jpg\" _src=\"http://yanxuan.nosdn.127.net/bb3c8d3f10f2aca0908871c8e598aa0e.jpg\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '1', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/bcaf7ee314af7dbfb04612087e563249.jpg', 'http://yanxuan.nosdn.127.net/149dfa87a7324e184c5526ead81de9ad.png', '599.00', '2918', '1008052', '0.00', '限时购', '', '0.00', '0', '0', '0', '658.90', null, null, null, null);
  569. INSERT INTO `nideshop_goods` VALUES ('1009027', '1008001', '1009027', '皇室御用超柔毛巾80s', '0', '100', '', '轻柔舒适不掉毛', '', '1', '2017-08-30 11:40:11', '2', '0', '0', '0.00', '0.00', '0', '条', 'http://yanxuan.nosdn.127.net/35ad21679dbd30a23a8308287ffd4673.jpg', 'http://yanxuan.nosdn.127.net/71cfd849335c498dee3c54d1eb823c17.png', '79.00', '10699', '1008061', '0.00', '限时购', '', '0.00', '0', '0', '0', '86.90', null, null, null, null);
  570. INSERT INTO `nideshop_goods` VALUES ('1010000', '1008009', '1010000', '澳洲纯羊毛盖毯 加厚款', '0', '100', '', '温暖加厚设计', '<p><img src=\"http://yanxuan.nosdn.127.net/ff86010e7277e9fe194e393fb1ad2ba9.jpg\" _src=\"http://yanxuan.nosdn.127.net/ff86010e7277e9fe194e393fb1ad2ba9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/217045fdde1eef8a8f37cd162bed12dc.jpg\" _src=\"http://yanxuan.nosdn.127.net/217045fdde1eef8a8f37cd162bed12dc.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/128cd8aebeb3ace9e00ab1f06ef52d69.jpg\" _src=\"http://yanxuan.nosdn.127.net/128cd8aebeb3ace9e00ab1f06ef52d69.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/648886df63abe5211271ab1187f9c763.jpg\" _src=\"http://yanxuan.nosdn.127.net/648886df63abe5211271ab1187f9c763.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/820a1f82b97a9f28b449bcdb2f72a631.jpg\" _src=\"http://yanxuan.nosdn.127.net/820a1f82b97a9f28b449bcdb2f72a631.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f4f0e12ff92d2d3056290c94aa512f43.jpg\" _src=\"http://yanxuan.nosdn.127.net/f4f0e12ff92d2d3056290c94aa512f43.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d4b8bb95cba61f7c6ec36af3312a3a68.jpg\" _src=\"http://yanxuan.nosdn.127.net/d4b8bb95cba61f7c6ec36af3312a3a68.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e15a76573c7ba9d0a077eec5b914321b.jpg\" _src=\"http://yanxuan.nosdn.127.net/e15a76573c7ba9d0a077eec5b914321b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8833d04e7f87b7a8d324c315df763726.jpg\" _src=\"http://yanxuan.nosdn.127.net/8833d04e7f87b7a8d324c315df763726.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/aa8ad5312cb4a8d129528e37a6ac64bd.jpg\" _src=\"http://yanxuan.nosdn.127.net/aa8ad5312cb4a8d129528e37a6ac64bd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e5d26e28d938e9a33a2c729283f2cc82.jpg\" _src=\"http://yanxuan.nosdn.127.net/e5d26e28d938e9a33a2c729283f2cc82.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d27a1a92b24adfdf0e6578ddbcd1b572.jpg\" _src=\"http://yanxuan.nosdn.127.net/d27a1a92b24adfdf0e6578ddbcd1b572.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/38eb737cc02e5b383911867ed48a004b.jpg\" _src=\"http://yanxuan.nosdn.127.net/38eb737cc02e5b383911867ed48a004b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/82d5a1d5e587b9e8e781f485fb9f73bf.jpg\" _src=\"http://yanxuan.nosdn.127.net/82d5a1d5e587b9e8e781f485fb9f73bf.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/728d11809778d6de50f7274a384952e6.jpg\" _src=\"http://yanxuan.nosdn.127.net/728d11809778d6de50f7274a384952e6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/046d49ddc7c9e7031a354129a05e72e8.jpg\" _src=\"http://yanxuan.nosdn.127.net/046d49ddc7c9e7031a354129a05e72e8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8144e45974188424d576bc16fdfc5842.jpg\" _src=\"http://yanxuan.nosdn.127.net/8144e45974188424d576bc16fdfc5842.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8bd138f32ee0930250aec8578d740a12.jpg\" _src=\"http://yanxuan.nosdn.127.net/8bd138f32ee0930250aec8578d740a12.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/71b7da3908ca5d8bb96c690d0c069a5a.jpg\" _src=\"http://yanxuan.nosdn.127.net/71b7da3908ca5d8bb96c690d0c069a5a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c3a9174f7ca98df4489fa0f1cacc289f.jpg\" _src=\"http://yanxuan.nosdn.127.net/c3a9174f7ca98df4489fa0f1cacc289f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1b4adaa15075af3218bb54b556db6a70.jpg\" _src=\"http://yanxuan.nosdn.127.net/1b4adaa15075af3218bb54b556db6a70.jpg\" style=\"\"/></p><p><br/></p><p><img src=\"http://yanxuan.nosdn.127.net/b7e346ce58ad1400c14a11a515c37ab0.jpg\" _src=\"http://yanxuan.nosdn.127.net/b7e346ce58ad1400c14a11a515c37ab0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2f3df0b2855589a41c66d35945dbf792.jpg\" _src=\"http://yanxuan.nosdn.127.net/2f3df0b2855589a41c66d35945dbf792.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8d5b71b357fc979d0e65968c6697a0df.jpg\" _src=\"http://yanxuan.nosdn.127.net/8d5b71b357fc979d0e65968c6697a0df.jpg\"/></p>', '1', '2017-08-30 11:40:11', '36', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/129d47ee8e76e045d835e29556048ece.jpg', 'http://yanxuan.nosdn.127.net/3bec70b85337c3eec182e54380ef7370.png', '399.00', '610', '1009000', '0.00', '限时购', '', '0.00', '0', '0', '0', '438.90', null, null, null, null);
  571. INSERT INTO `nideshop_goods` VALUES ('1010001', '1008009', '1010001', '澳洲纯羊毛盖毯 舒适款', '0', '100', '', '100%澳洲美利奴羊毛', '<p><img src=\"http://yanxuan.nosdn.127.net/b23db0608cd8bfde4be5d90124483b36.jpg\" _src=\"http://yanxuan.nosdn.127.net/b23db0608cd8bfde4be5d90124483b36.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f77c27a2e5d5f9d61eeaffc364d6415d.jpg\" _src=\"http://yanxuan.nosdn.127.net/f77c27a2e5d5f9d61eeaffc364d6415d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5841dfb7a94c4b849abbe42b2a00434e.jpg\" _src=\"http://yanxuan.nosdn.127.net/5841dfb7a94c4b849abbe42b2a00434e.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/656ebc04bee2462793db2b8bf1813aa9.jpg\" _src=\"http://yanxuan.nosdn.127.net/656ebc04bee2462793db2b8bf1813aa9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c55350f193eaf1204a25932fa469586f.jpg\" _src=\"http://yanxuan.nosdn.127.net/c55350f193eaf1204a25932fa469586f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ca5c07a9abb58032f2d12e257ccbf367.jpg\" _src=\"http://yanxuan.nosdn.127.net/ca5c07a9abb58032f2d12e257ccbf367.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/549b0e32a35f85fc0c1f34d03c336bcb.jpg\" _src=\"http://yanxuan.nosdn.127.net/549b0e32a35f85fc0c1f34d03c336bcb.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fb29db817a6ae1cd6619260023099369.jpg\" _src=\"http://yanxuan.nosdn.127.net/fb29db817a6ae1cd6619260023099369.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/68ec1234fec67d7ba4737ea6129601fd.jpg\" _src=\"http://yanxuan.nosdn.127.net/68ec1234fec67d7ba4737ea6129601fd.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d7eaba1187a93d93031e52662d7e9012.jpg\" _src=\"http://yanxuan.nosdn.127.net/d7eaba1187a93d93031e52662d7e9012.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a9fb5698bdfde2ae6fa8c49b743e113b.jpg\" _src=\"http://yanxuan.nosdn.127.net/a9fb5698bdfde2ae6fa8c49b743e113b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c8c4352aed20fc8e381e61b75a0df423.jpg\" _src=\"http://yanxuan.nosdn.127.net/c8c4352aed20fc8e381e61b75a0df423.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bda69e3e6128f1ae2aef1d6b6c2a32a9.jpg\" _src=\"http://yanxuan.nosdn.127.net/bda69e3e6128f1ae2aef1d6b6c2a32a9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/607a6bd73635d670d3c0efd5db4494a2.jpg\" _src=\"http://yanxuan.nosdn.127.net/607a6bd73635d670d3c0efd5db4494a2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bfe7e30663d3d8a2deba97eeb6a9dd33.jpg\" _src=\"http://yanxuan.nosdn.127.net/bfe7e30663d3d8a2deba97eeb6a9dd33.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/79991d473d14b4c64054ac43c62acedc.jpg\" _src=\"http://yanxuan.nosdn.127.net/79991d473d14b4c64054ac43c62acedc.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c1f4016c887fb7ec699fb8ac5336625d.jpg\" _src=\"http://yanxuan.nosdn.127.net/c1f4016c887fb7ec699fb8ac5336625d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3ed3f9a90c5b8b3a20190068aaeaa069.jpg\" _src=\"http://yanxuan.nosdn.127.net/3ed3f9a90c5b8b3a20190068aaeaa069.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ccafa9bae7e5aad763ef6ac20830d1a8.jpg\" _src=\"http://yanxuan.nosdn.127.net/ccafa9bae7e5aad763ef6ac20830d1a8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9bcb97f02f51d545eff2d186e6480728.jpg\" _src=\"http://yanxuan.nosdn.127.net/9bcb97f02f51d545eff2d186e6480728.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7e7cdbc72ac2358f7243baf320f8db9b.jpg\" _src=\"http://yanxuan.nosdn.127.net/7e7cdbc72ac2358f7243baf320f8db9b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d4c6ba6d38e2beae0ad248d799021a23.jpg\" _src=\"http://yanxuan.nosdn.127.net/d4c6ba6d38e2beae0ad248d799021a23.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/10afa0d6db391623eecaf87fa004dc6d.jpg\" _src=\"http://yanxuan.nosdn.127.net/10afa0d6db391623eecaf87fa004dc6d.jpg\" style=\"\"/></p><p><br/></p><p><img src=\"http://yanxuan.nosdn.127.net/427865bf514f70b9d3eeca7929a9b754.jpg\" _src=\"http://yanxuan.nosdn.127.net/427865bf514f70b9d3eeca7929a9b754.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6841486484cd3163b8d84856b6090f50.jpg\" _src=\"http://yanxuan.nosdn.127.net/6841486484cd3163b8d84856b6090f50.jpg\"/></p>', '1', '2017-08-30 11:40:11', '33', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/0a1b41d34a90d72be9f3c4ca1c2afc9a.jpg', 'http://yanxuan.nosdn.127.net/a8b0a5def7d64e411dd98bdfb1fc989b.png', '299.00', '21', '1009001', '0.00', '限时购', '', '0.00', '0', '0', '0', '328.90', null, null, null, null);
  572. INSERT INTO `nideshop_goods` VALUES ('1011004', '1036000', '1011004', '色织精梳AB纱格纹空调被', '1001000', '100', '', '加大加厚,双色精彩', '<p><img src=\"http://yanxuan.nosdn.127.net/28680639193b939b5d93cd77b3272a1e.jpg\" _src=\"http://yanxuan.nosdn.127.net/28680639193b939b5d93cd77b3272a1e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/990c9a7781a8ae2b2a08c65c9af7afc7.jpg\" _src=\"http://yanxuan.nosdn.127.net/990c9a7781a8ae2b2a08c65c9af7afc7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b7ccc07b50f491e94b6187bf49b48820.jpg\" _src=\"http://yanxuan.nosdn.127.net/b7ccc07b50f491e94b6187bf49b48820.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/69eb85fd08c9ebce511d13d899d96659.jpg\" _src=\"http://yanxuan.nosdn.127.net/69eb85fd08c9ebce511d13d899d96659.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a96f2f48217b913dc012671ed511d223.jpg\" _src=\"http://yanxuan.nosdn.127.net/a96f2f48217b913dc012671ed511d223.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c94a22b8644fafec3ff27f87dd12771b.jpg\" _src=\"http://yanxuan.nosdn.127.net/c94a22b8644fafec3ff27f87dd12771b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/721b4749caada515bb5e616f41a410d1.jpg\" _src=\"http://yanxuan.nosdn.127.net/721b4749caada515bb5e616f41a410d1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1215d6badb5a922efaeadd36911a4a3e.jpg\" _src=\"http://yanxuan.nosdn.127.net/1215d6badb5a922efaeadd36911a4a3e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/749a3c6e9228d304806a06e478644ca1.jpg\" _src=\"http://yanxuan.nosdn.127.net/749a3c6e9228d304806a06e478644ca1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2cc7fd2eadbef5ab061fdf3550962d4e.jpg\" _src=\"http://yanxuan.nosdn.127.net/2cc7fd2eadbef5ab061fdf3550962d4e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/710b9318f02863fe79209e7e6c822a5a.jpg\" _src=\"http://yanxuan.nosdn.127.net/710b9318f02863fe79209e7e6c822a5a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/aaf8500212ec5bf783cb2bc63afbf7f8.jpg\" _src=\"http://yanxuan.nosdn.127.net/aaf8500212ec5bf783cb2bc63afbf7f8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f9e03dfb8cacda0f8fbbcf0ef20f8a62.jpg\" _src=\"http://yanxuan.nosdn.127.net/f9e03dfb8cacda0f8fbbcf0ef20f8a62.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3fa109d21bda840ac7040b196c13a871.jpg\" _src=\"http://yanxuan.nosdn.127.net/3fa109d21bda840ac7040b196c13a871.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/76bfa90446c129fa3eb9f05104e9e778.jpg\" _src=\"http://yanxuan.nosdn.127.net/76bfa90446c129fa3eb9f05104e9e778.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a3b94053478ceb6912a28597c51a3bcb.jpg\" _src=\"http://yanxuan.nosdn.127.net/a3b94053478ceb6912a28597c51a3bcb.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a25bca01f9ad835cd79b1c11ffdb400e.jpg\" _src=\"http://yanxuan.nosdn.127.net/a25bca01f9ad835cd79b1c11ffdb400e.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '2', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/4de19773ac86263bc5f474c1351c6df4.png', 'http://yanxuan.nosdn.127.net/0984c9388a2c3fd2335779da904be393.png', '199.00', '1007', '1010014', '0.00', '限时购', '', '0.00', '0', '0', '1', '218.90', null, null, null, null);
  573. INSERT INTO `nideshop_goods` VALUES ('1015007', '1008002', '1015007', '典雅美式全棉刺绣抱枕', '0', '100', '', '典雅毛线绣,精致工艺', '<p><img src=\"http://yanxuan.nosdn.127.net/66640f55aeb668ac9df6e26b6b30adb5.jpg\" _src=\"http://yanxuan.nosdn.127.net/66640f55aeb668ac9df6e26b6b30adb5.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/42852faba5623c6dc5be451d80e5df03.jpg\" _src=\"http://yanxuan.nosdn.127.net/42852faba5623c6dc5be451d80e5df03.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/48ce93c6f6a731778c505442f163b09e.jpg\" _src=\"http://yanxuan.nosdn.127.net/48ce93c6f6a731778c505442f163b09e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/02a3abee9bb3e22f27781ced8774d1ab.jpg\" _src=\"http://yanxuan.nosdn.127.net/02a3abee9bb3e22f27781ced8774d1ab.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c62a27145e1045879e3f2b97b9f86b4d.jpg\" _src=\"http://yanxuan.nosdn.127.net/c62a27145e1045879e3f2b97b9f86b4d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/48baaafe4ea4c32242c57e58ce8e139f.jpg\" _src=\"http://yanxuan.nosdn.127.net/48baaafe4ea4c32242c57e58ce8e139f.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/99549f0375b108240866a09a0a2527d7.jpg\" _src=\"http://yanxuan.nosdn.127.net/99549f0375b108240866a09a0a2527d7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/341529ba80d91c5304680be8f524a626.jpg\" _src=\"http://yanxuan.nosdn.127.net/341529ba80d91c5304680be8f524a626.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b15e35e9d8c04288dfb7546b1f743c17.jpg\" _src=\"http://yanxuan.nosdn.127.net/b15e35e9d8c04288dfb7546b1f743c17.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2c0ebf7949133cb382b6bf18c8a5a1c0.jpg\" _src=\"http://yanxuan.nosdn.127.net/2c0ebf7949133cb382b6bf18c8a5a1c0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bfd25d0fa6dc13a335877360e3dab8d1.jpg\" _src=\"http://yanxuan.nosdn.127.net/bfd25d0fa6dc13a335877360e3dab8d1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/dbcc420cef18e4a43589198ebfcc4fd1.jpg\" _src=\"http://yanxuan.nosdn.127.net/dbcc420cef18e4a43589198ebfcc4fd1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/15aa3e3ed45714d29ca062499db930ea.jpg\" _src=\"http://yanxuan.nosdn.127.net/15aa3e3ed45714d29ca062499db930ea.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ab6963b4e529810577f3e428c9d10af6.jpg\" _src=\"http://yanxuan.nosdn.127.net/ab6963b4e529810577f3e428c9d10af6.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '4', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/d16d6fb25f3d6d8c356fcd8e178bdd26.jpg', 'http://yanxuan.nosdn.127.net/a2045004de8a6225289376ad54317fc8.png', '59.00', '133', '1013024', '0.00', '限时购', '', '0.00', '0', '0', '0', '64.90', null, null, null, null);
  574. INSERT INTO `nideshop_goods` VALUES ('1019000', '1008008', '1019000', '升级款护颈波浪记忆枕', '0', '100', '', '享受自在侧睡', '<p><img src=\"http://yanxuan.nosdn.127.net/c1e5ff831fd66e404c8b2ac90b91c4e0.jpg\" _src=\"http://yanxuan.nosdn.127.net/c1e5ff831fd66e404c8b2ac90b91c4e0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b0118ea9e0c1aa9596f9b57a8d862581.jpg\" _src=\"http://yanxuan.nosdn.127.net/b0118ea9e0c1aa9596f9b57a8d862581.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/948f4095c7efbd2a1a7bfd624321b2e2.jpg\" _src=\"http://yanxuan.nosdn.127.net/948f4095c7efbd2a1a7bfd624321b2e2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9b415b3b9e48688d3c81c96edbe5a26a.jpg\" _src=\"http://yanxuan.nosdn.127.net/9b415b3b9e48688d3c81c96edbe5a26a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4a841d953c5d0ec3dbce02152bb44c2f.jpg\" _src=\"http://yanxuan.nosdn.127.net/4a841d953c5d0ec3dbce02152bb44c2f.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2ce236ff050b8743bc2139c25db084d8.jpg\" _src=\"http://yanxuan.nosdn.127.net/2ce236ff050b8743bc2139c25db084d8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8dac2a76d5886429b8417cdd48bcbb7b.jpg\" _src=\"http://yanxuan.nosdn.127.net/8dac2a76d5886429b8417cdd48bcbb7b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b79a8aac5584b137a3b010897415510e.jpg\" _src=\"http://yanxuan.nosdn.127.net/b79a8aac5584b137a3b010897415510e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/100e058ca7bf727ac206147961e2638d.jpg\" _src=\"http://yanxuan.nosdn.127.net/100e058ca7bf727ac206147961e2638d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/746152d0f88b32455c1a85691a18ee0b.jpg\" _src=\"http://yanxuan.nosdn.127.net/746152d0f88b32455c1a85691a18ee0b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/56d32b1bef15fd6f4b5780466b04c69d.jpg\" _src=\"http://yanxuan.nosdn.127.net/56d32b1bef15fd6f4b5780466b04c69d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e949e68bdec54d89a8c55579da4eedd8.jpg\" _src=\"http://yanxuan.nosdn.127.net/e949e68bdec54d89a8c55579da4eedd8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cee6a2ffbde4cfcc6f4e6bcaa824a28c.jpg\" _src=\"http://yanxuan.nosdn.127.net/cee6a2ffbde4cfcc6f4e6bcaa824a28c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3ac36b88f968048e02a9d074a0d28478.jpg\" _src=\"http://yanxuan.nosdn.127.net/3ac36b88f968048e02a9d074a0d28478.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8ed41d77cb4db472e73d996ca8566305.jpg\" _src=\"http://yanxuan.nosdn.127.net/8ed41d77cb4db472e73d996ca8566305.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ccc002f264cd53415811961486ae49bd.jpg\" _src=\"http://yanxuan.nosdn.127.net/ccc002f264cd53415811961486ae49bd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/21b631c1147dee010fc3a7060feb8497.jpg\" _src=\"http://yanxuan.nosdn.127.net/21b631c1147dee010fc3a7060feb8497.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/124748dc5e030621db17ff341024cf9d.jpg\" _src=\"http://yanxuan.nosdn.127.net/124748dc5e030621db17ff341024cf9d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/800ff0bc68c16062cd128a4850bb0800.jpg\" _src=\"http://yanxuan.nosdn.127.net/800ff0bc68c16062cd128a4850bb0800.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7add37eaba2dcfc34441f8a6d605ddc7.jpg\" _src=\"http://yanxuan.nosdn.127.net/7add37eaba2dcfc34441f8a6d605ddc7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c078aab2f23798ff88e1623e01694ff2.jpg\" _src=\"http://yanxuan.nosdn.127.net/c078aab2f23798ff88e1623e01694ff2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9fb2a267c184178d454c48a519338bfb.jpg\" _src=\"http://yanxuan.nosdn.127.net/9fb2a267c184178d454c48a519338bfb.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '8', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/81b2529f4d516bcd6f9225ae825ed1b6.jpg', 'http://yanxuan.nosdn.127.net/77c09feb378814be712741b273d16656.png', '99.00', '2805', '1017000', '0.00', '限时购', '', '0.00', '0', '0', '0', '108.90', null, null, null, null);
  575. INSERT INTO `nideshop_goods` VALUES ('1019001', '1008008', '1019001', '升级款护颈加翼记忆枕', '0', '100', '', '仰睡优质装备', '<p><img src=\"http://yanxuan.nosdn.127.net/c6eb7df0cb54b1efd167d8c9fb499d4d.jpg\" _src=\"http://yanxuan.nosdn.127.net/c6eb7df0cb54b1efd167d8c9fb499d4d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c6df32e9289c2e47966c3b117268698a.jpg\" _src=\"http://yanxuan.nosdn.127.net/c6df32e9289c2e47966c3b117268698a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/92adf10bf5bb25403f449ec1e8612223.jpg\" _src=\"http://yanxuan.nosdn.127.net/92adf10bf5bb25403f449ec1e8612223.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8f4b631f23c4d86aa3c6882258f1ed61.jpg\" _src=\"http://yanxuan.nosdn.127.net/8f4b631f23c4d86aa3c6882258f1ed61.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/484044307538426c6c79d88891a44573.jpg\" _src=\"http://yanxuan.nosdn.127.net/484044307538426c6c79d88891a44573.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3340218a14eb10f023410cb7b14ff5c7.jpg\" _src=\"http://yanxuan.nosdn.127.net/3340218a14eb10f023410cb7b14ff5c7.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/12f8e836b270f459bb9a7d0fd043f840.jpg\" _src=\"http://yanxuan.nosdn.127.net/12f8e836b270f459bb9a7d0fd043f840.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/234a40d515b4ef5283a4b307aa694880.jpg\" _src=\"http://yanxuan.nosdn.127.net/234a40d515b4ef5283a4b307aa694880.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b999f414bab88eb61dc8c7c19e43784b.jpg\" _src=\"http://yanxuan.nosdn.127.net/b999f414bab88eb61dc8c7c19e43784b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/729907923ec1d1c987b4fc9a3aab75da.jpg\" _src=\"http://yanxuan.nosdn.127.net/729907923ec1d1c987b4fc9a3aab75da.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/86c4cfbca9b18f1931fd6424d504f58c.jpg\" _src=\"http://yanxuan.nosdn.127.net/86c4cfbca9b18f1931fd6424d504f58c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/11cd2b57e9430b77019c1148ffc98e00.jpg\" _src=\"http://yanxuan.nosdn.127.net/11cd2b57e9430b77019c1148ffc98e00.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a9025355615221491eeb0028f52c1190.jpg\" _src=\"http://yanxuan.nosdn.127.net/a9025355615221491eeb0028f52c1190.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6541688751bf78732def7b1e7b80acde.jpg\" _src=\"http://yanxuan.nosdn.127.net/6541688751bf78732def7b1e7b80acde.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a307a08fe871cda58d345c3d27aec637.jpg\" _src=\"http://yanxuan.nosdn.127.net/a307a08fe871cda58d345c3d27aec637.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9d0c08ea2cce7fa09cd20463687fde2b.jpg\" _src=\"http://yanxuan.nosdn.127.net/9d0c08ea2cce7fa09cd20463687fde2b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a141d9a027680a921b70adabb9e822f6.jpg\" _src=\"http://yanxuan.nosdn.127.net/a141d9a027680a921b70adabb9e822f6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8eb750a2ce2373be40b852aaf0494edf.jpg\" _src=\"http://yanxuan.nosdn.127.net/8eb750a2ce2373be40b852aaf0494edf.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2275f3636c0719ab83d7391993da903a.jpg\" _src=\"http://yanxuan.nosdn.127.net/2275f3636c0719ab83d7391993da903a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0d05c90aa86f19886e94e402305dada1.jpg\" _src=\"http://yanxuan.nosdn.127.net/0d05c90aa86f19886e94e402305dada1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0acbac29252596be257c86a590eb567a.jpg\" _src=\"http://yanxuan.nosdn.127.net/0acbac29252596be257c86a590eb567a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c99b1fd6b0b812a289b5887233453646.jpg\" _src=\"http://yanxuan.nosdn.127.net/c99b1fd6b0b812a289b5887233453646.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e45ab89e057c3f73c0b06464115ea357.jpg\" _src=\"http://yanxuan.nosdn.127.net/e45ab89e057c3f73c0b06464115ea357.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/08f026762e2459f85f66766e4ea3e195.jpg\" _src=\"http://yanxuan.nosdn.127.net/08f026762e2459f85f66766e4ea3e195.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3365604b1b01c7a99d31a5307991bbb8.jpg\" _src=\"http://yanxuan.nosdn.127.net/3365604b1b01c7a99d31a5307991bbb8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2406859dfe2befe93927346fe1317c22.jpg\" _src=\"http://yanxuan.nosdn.127.net/2406859dfe2befe93927346fe1317c22.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0121587794b92e2a5bba41460984f091.jpg\" _src=\"http://yanxuan.nosdn.127.net/0121587794b92e2a5bba41460984f091.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5187cfe2da36ce4c3946aa6d6ce23461.jpg\" _src=\"http://yanxuan.nosdn.127.net/5187cfe2da36ce4c3946aa6d6ce23461.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/07447d11bdb3db402bd06a991f765052.jpg\" _src=\"http://yanxuan.nosdn.127.net/07447d11bdb3db402bd06a991f765052.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a5219f74a5884e3bd4dc2a44c40ac521.jpg\" _src=\"http://yanxuan.nosdn.127.net/a5219f74a5884e3bd4dc2a44c40ac521.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ca006cc5c87ccde67019c28e7627d0fc.jpg\" _src=\"http://yanxuan.nosdn.127.net/ca006cc5c87ccde67019c28e7627d0fc.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3260e27582b77978faee526a2a3c9d68.jpg\" _src=\"http://yanxuan.nosdn.127.net/3260e27582b77978faee526a2a3c9d68.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/95093aa9450eb598e110bfa7903dce7f.jpg\" _src=\"http://yanxuan.nosdn.127.net/95093aa9450eb598e110bfa7903dce7f.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '9', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/71650a4e0e793500e8ac08a328b76812.jpg', 'http://yanxuan.nosdn.127.net/7644803ab19b3e398456aa5a54229363.png', '109.00', '2961', '1017001', '0.00', '限时购', '', '0.00', '0', '0', '0', '119.90', null, null, null, null);
  576. INSERT INTO `nideshop_goods` VALUES ('1019002', '1008008', '1019002', '升级款护颈双人记忆枕', '0', '100', '', '共享亲密2人时光', '<p><img src=\"http://yanxuan.nosdn.127.net/c186a059de5eefc906216f4b30592330.jpg\" _src=\"http://yanxuan.nosdn.127.net/c186a059de5eefc906216f4b30592330.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f6de82771ca1dd4cece4b16dcc306f83.jpg\" _src=\"http://yanxuan.nosdn.127.net/f6de82771ca1dd4cece4b16dcc306f83.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/df2daa178d711c8ea0ba9dbc52ce2686.jpg\" _src=\"http://yanxuan.nosdn.127.net/df2daa178d711c8ea0ba9dbc52ce2686.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/14c3e64ba6565efe976952e2b6ae615d.jpg\" _src=\"http://yanxuan.nosdn.127.net/14c3e64ba6565efe976952e2b6ae615d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e2cf982e78628f3a0acb911fc274b9b3.jpg\" _src=\"http://yanxuan.nosdn.127.net/e2cf982e78628f3a0acb911fc274b9b3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e81eaa79cf531ef8ab46a30dff994f33.jpg\" _src=\"http://yanxuan.nosdn.127.net/e81eaa79cf531ef8ab46a30dff994f33.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1b5b19aaddb243ce516b5db29c1ef90d.jpg\" _src=\"http://yanxuan.nosdn.127.net/1b5b19aaddb243ce516b5db29c1ef90d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/58cea18ebf8b094dcd62bd879fc040e2.jpg\" _src=\"http://yanxuan.nosdn.127.net/58cea18ebf8b094dcd62bd879fc040e2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/72b901a3f652c51fffa1a1de204aba31.jpg\" _src=\"http://yanxuan.nosdn.127.net/72b901a3f652c51fffa1a1de204aba31.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a0e9d94f5c2ee8533b68e2db7746b534.jpg\" _src=\"http://yanxuan.nosdn.127.net/a0e9d94f5c2ee8533b68e2db7746b534.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b705431d490adf12a9e5ec7b43e7607f.jpg\" _src=\"http://yanxuan.nosdn.127.net/b705431d490adf12a9e5ec7b43e7607f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b2bb4b705eabd3e5992dfab146bc2b3e.jpg\" _src=\"http://yanxuan.nosdn.127.net/b2bb4b705eabd3e5992dfab146bc2b3e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3bdf08a6dfd6d2ef299121bd9dd39c0b.jpg\" _src=\"http://yanxuan.nosdn.127.net/3bdf08a6dfd6d2ef299121bd9dd39c0b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/67c113a1c29d4db5bdb55f3ae06f7471.jpg\" _src=\"http://yanxuan.nosdn.127.net/67c113a1c29d4db5bdb55f3ae06f7471.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7733f0d7f4b0a66c247e60e3b49b1807.jpg\" _src=\"http://yanxuan.nosdn.127.net/7733f0d7f4b0a66c247e60e3b49b1807.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/95eab4e49e0f3b0c3ffd2b08797d284b.jpg\" _src=\"http://yanxuan.nosdn.127.net/95eab4e49e0f3b0c3ffd2b08797d284b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1c468ae0e82c662ae0abb227abc6d594.jpg\" _src=\"http://yanxuan.nosdn.127.net/1c468ae0e82c662ae0abb227abc6d594.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d53e9751dd2634990d89fb44a55ee566.jpg\" _src=\"http://yanxuan.nosdn.127.net/d53e9751dd2634990d89fb44a55ee566.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7c73eff0b7f7cd8040aad206313d0abe.jpg\" _src=\"http://yanxuan.nosdn.127.net/7c73eff0b7f7cd8040aad206313d0abe.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6e74edf9fe31e71f1833773a312b4326.jpg\" _src=\"http://yanxuan.nosdn.127.net/6e74edf9fe31e71f1833773a312b4326.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9ea7a4055b77399ee1d20e2cbf7812d7.jpg\" _src=\"http://yanxuan.nosdn.127.net/9ea7a4055b77399ee1d20e2cbf7812d7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b1e514096c4fdf3d54904fb29dc6a37c.jpg\" _src=\"http://yanxuan.nosdn.127.net/b1e514096c4fdf3d54904fb29dc6a37c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f305812a19b9147f8fa770beb4414459.jpg\" _src=\"http://yanxuan.nosdn.127.net/f305812a19b9147f8fa770beb4414459.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3acf6bc12a45cce9e5976ad27b09a60d.jpg\" _src=\"http://yanxuan.nosdn.127.net/3acf6bc12a45cce9e5976ad27b09a60d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/985e651c504cd41e4d39b7f41f34c677.jpg\" _src=\"http://yanxuan.nosdn.127.net/985e651c504cd41e4d39b7f41f34c677.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/76fdc45c20487b3cface59a5ee70ddb9.jpg\" _src=\"http://yanxuan.nosdn.127.net/76fdc45c20487b3cface59a5ee70ddb9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bcac72497ef8f724c6761757eef857b5.jpg\" _src=\"http://yanxuan.nosdn.127.net/bcac72497ef8f724c6761757eef857b5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1ada89064fd6a44ce87714431540e792.jpg\" _src=\"http://yanxuan.nosdn.127.net/1ada89064fd6a44ce87714431540e792.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f0d6b2c71c9572a68c58e0695e7e8e3c.jpg\" _src=\"http://yanxuan.nosdn.127.net/f0d6b2c71c9572a68c58e0695e7e8e3c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/52cb1f494073a399179b2b49b8ea25ea.jpg\" _src=\"http://yanxuan.nosdn.127.net/52cb1f494073a399179b2b49b8ea25ea.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9778eca1ecc98ce85c0952a3ef7f0c4c.jpg\" _src=\"http://yanxuan.nosdn.127.net/9778eca1ecc98ce85c0952a3ef7f0c4c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b0feec16f0b84c7693a0ee5ba81cd28d.jpg\" _src=\"http://yanxuan.nosdn.127.net/b0feec16f0b84c7693a0ee5ba81cd28d.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '10', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/8117b7048e8be50570d1410565eb352e.jpg', 'http://yanxuan.nosdn.127.net/0118039f7cda342651595d994ed09567.png', '199.00', '37', '1017002', '0.00', '限时购', '', '0.00', '0', '0', '1', '218.90', null, null, null, null);
  577. INSERT INTO `nideshop_goods` VALUES ('1019006', '1008008', '1019006', '植物填充护颈夜交藤枕', '0', '100', '', '健康保护枕', '<p><img src=\"http://yanxuan.nosdn.127.net/dbb1e80da69953f64383dd71fd0213f5.jpg\" _src=\"http://yanxuan.nosdn.127.net/dbb1e80da69953f64383dd71fd0213f5.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6acc4669a29c55f5c222414ad01bf89b.jpg\" _src=\"http://yanxuan.nosdn.127.net/6acc4669a29c55f5c222414ad01bf89b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/514bd211189416cfd66867b7894e64ec.jpg\" _src=\"http://yanxuan.nosdn.127.net/514bd211189416cfd66867b7894e64ec.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6291db12d9239a17cc4a746db803a307.jpg\" _src=\"http://yanxuan.nosdn.127.net/6291db12d9239a17cc4a746db803a307.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2c12eb42828a8b7aa9b428e34b7a6af5.jpg\" _src=\"http://yanxuan.nosdn.127.net/2c12eb42828a8b7aa9b428e34b7a6af5.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/592207ddff96c716e5a8d3e02ba80151.jpg\" _src=\"http://yanxuan.nosdn.127.net/592207ddff96c716e5a8d3e02ba80151.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b58dac5f4495fa73d8df137d4aa611d3.jpg\" _src=\"http://yanxuan.nosdn.127.net/b58dac5f4495fa73d8df137d4aa611d3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/89e5a35e2763cd977f5ecb30f20651ab.jpg\" _src=\"http://yanxuan.nosdn.127.net/89e5a35e2763cd977f5ecb30f20651ab.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d9b35ce1283c07e4f757e48016258e2d.jpg\" _src=\"http://yanxuan.nosdn.127.net/d9b35ce1283c07e4f757e48016258e2d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/29d555239824f9d3f92526120b75550c.jpg\" _src=\"http://yanxuan.nosdn.127.net/29d555239824f9d3f92526120b75550c.jpg\"/></p>', '1', '2017-08-30 11:40:11', '7', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/8d6f1d95b4e15bfda45410be6a9d83c2.jpg', 'http://yanxuan.nosdn.127.net/60c3707837c97a21715ecc3986a744ce.png', '99.00', '10', '1017014', '0.00', '限时购', '', '0.00', '0', '0', '1', '108.90', null, null, null, null);
  578. INSERT INTO `nideshop_goods` VALUES ('1020000', '1008002', '1020000', '升级款记忆绵护椎腰靠', '1001000', '100', '', '人体工学设计,缓解腰背疼痛', '<p><img src=\"http://yanxuan.nosdn.127.net/8176934e414ec6c85078cb64322fe336.jpg\" _src=\"http://yanxuan.nosdn.127.net/8176934e414ec6c85078cb64322fe336.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/33ff256b2f69de517f567ebb993dd08e.jpg\" _src=\"http://yanxuan.nosdn.127.net/33ff256b2f69de517f567ebb993dd08e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5204e4f7c7fa00866e270a93ec85a596.jpg\" _src=\"http://yanxuan.nosdn.127.net/5204e4f7c7fa00866e270a93ec85a596.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9f3aed0164b92344f17ffbc0b8fc7ade.jpg\" _src=\"http://yanxuan.nosdn.127.net/9f3aed0164b92344f17ffbc0b8fc7ade.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1d2d94d8f0f10f17183954b69d09e2bb.jpg\" _src=\"http://yanxuan.nosdn.127.net/1d2d94d8f0f10f17183954b69d09e2bb.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3921600dd00e2c49a7414035111b767d.jpg\" _src=\"http://yanxuan.nosdn.127.net/3921600dd00e2c49a7414035111b767d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/aef3c726fec0be6ce17089e06e753d4f.jpg\" _src=\"http://yanxuan.nosdn.127.net/aef3c726fec0be6ce17089e06e753d4f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/446fbad756b6327898cee40e7b67a0b6.jpg\" _src=\"http://yanxuan.nosdn.127.net/446fbad756b6327898cee40e7b67a0b6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0950b4fa1cac49eece29af35c6e69e4f.jpg\" _src=\"http://yanxuan.nosdn.127.net/0950b4fa1cac49eece29af35c6e69e4f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cf7e88b2b57641ab81bbf36351db5ff8.jpg\" _src=\"http://yanxuan.nosdn.127.net/cf7e88b2b57641ab81bbf36351db5ff8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/53d66b4714682aaff4ab082980a44b46.jpg\" _src=\"http://yanxuan.nosdn.127.net/53d66b4714682aaff4ab082980a44b46.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a7f2d82d7a5622dd9f6b0d44faed9fda.jpg\" _src=\"http://yanxuan.nosdn.127.net/a7f2d82d7a5622dd9f6b0d44faed9fda.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e7fdc566d101b7cf73cee32f55b0f945.jpg\" _src=\"http://yanxuan.nosdn.127.net/e7fdc566d101b7cf73cee32f55b0f945.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4e04202364d1a0a1dc1a2a1ea871e45e.jpg\" _src=\"http://yanxuan.nosdn.127.net/4e04202364d1a0a1dc1a2a1ea871e45e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7b3135ad6c01a2675fc7e96f6643ff7f.jpg\" _src=\"http://yanxuan.nosdn.127.net/7b3135ad6c01a2675fc7e96f6643ff7f.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '15', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/84563d90b0c10c4d4a8229fd34cb4063.jpg', 'http://yanxuan.nosdn.127.net/819fdf1f635a694166bcfdd426416e8c.png', '79.00', '8586', '1018000', '0.00', '限时购', '', '0.00', '0', '0', '0', '86.90', null, null, null, null);
  579. INSERT INTO `nideshop_goods` VALUES ('1021000', '1008001', '1021000', '埃及进口长绒棉毛巾', '0', '100', '', '厚实舒适', '', '1', '2017-08-30 11:40:11', '7', '0', '0', '0.00', '0.00', '0', '条', 'http://yanxuan.nosdn.127.net/96c20e15c503ff5e358a150148f2f352.jpg', 'http://yanxuan.nosdn.127.net/7191f2599c7fe44ed4cff7a76e853154.png', '39.00', '34530', '1122018', '0.00', '限时购', '', '0.00', '0', '0', '0', '42.90', null, null, null, null);
  580. INSERT INTO `nideshop_goods` VALUES ('1021001', '1008001', '1021001', '全棉进口埃及长绒棉浴巾', '0', '100', '', '加大加厚埃及棉', '', '1', '2017-08-30 11:40:11', '8', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/c41c58a7c72e8340211041cd493b1517.jpg', 'http://yanxuan.nosdn.127.net/fd5a8622ee1a7dfd4b57b938ebf25b24.png', '99.00', '35029', '1122028', '0.00', '限时购', '', '0.00', '0', '0', '0', '108.90', null, null, null, null);
  581. INSERT INTO `nideshop_goods` VALUES ('1021004', '1008009', '1021004', '澳洲羊羔毛AB面盖毯', '1001020', '100', '', '冬暖夏凉,吸湿排汗。', '<p><img src=\"http://yanxuan.nosdn.127.net/7a82ce63285fa75e7c45958db6e1ea72.jpg\" _src=\"http://yanxuan.nosdn.127.net/7a82ce63285fa75e7c45958db6e1ea72.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c6251683549d0cefad6d75d48371ee5d.jpg\" _src=\"http://yanxuan.nosdn.127.net/c6251683549d0cefad6d75d48371ee5d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/332da1ccf902e60d638ee7a10b376949.jpg\" _src=\"http://yanxuan.nosdn.127.net/332da1ccf902e60d638ee7a10b376949.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/46b7c34a5c80742a1c2e64c984aadf45.jpg\" _src=\"http://yanxuan.nosdn.127.net/46b7c34a5c80742a1c2e64c984aadf45.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0309bc61af948669fe361b33271c79cc.jpg\" _src=\"http://yanxuan.nosdn.127.net/0309bc61af948669fe361b33271c79cc.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f6d61c696d3194672cbfc760e2dfab04.jpg\" _src=\"http://yanxuan.nosdn.127.net/f6d61c696d3194672cbfc760e2dfab04.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1ece10fc88b908d9166e3f0fb5654b34.jpg\" _src=\"http://yanxuan.nosdn.127.net/1ece10fc88b908d9166e3f0fb5654b34.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/01da8df479e8eade44e5b97d98d2ecdc.jpg\" _src=\"http://yanxuan.nosdn.127.net/01da8df479e8eade44e5b97d98d2ecdc.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6e94e41f4b0fc8a91b48d111cf559963.jpg\" _src=\"http://yanxuan.nosdn.127.net/6e94e41f4b0fc8a91b48d111cf559963.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/39cc39f48b07dcd55280d6d41446a855.jpg\" _src=\"http://yanxuan.nosdn.127.net/39cc39f48b07dcd55280d6d41446a855.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bbb6f955287c419cb2560b9a92507fbd.jpg\" _src=\"http://yanxuan.nosdn.127.net/bbb6f955287c419cb2560b9a92507fbd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b2e23c277654ce9cda3f0222c0cdfd9e.jpg\" _src=\"http://yanxuan.nosdn.127.net/b2e23c277654ce9cda3f0222c0cdfd9e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a5c537f3406d0b0cb7f432654d73456c.jpg\" _src=\"http://yanxuan.nosdn.127.net/a5c537f3406d0b0cb7f432654d73456c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7fa0b1d1392d2755d8c76e5166717271.jpg\" _src=\"http://yanxuan.nosdn.127.net/7fa0b1d1392d2755d8c76e5166717271.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/533ac276228fb4f4708407dbc9557074.jpg\" _src=\"http://yanxuan.nosdn.127.net/533ac276228fb4f4708407dbc9557074.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6b8abe94b174667084cfaa909a1a6ae8.jpg\" _src=\"http://yanxuan.nosdn.127.net/6b8abe94b174667084cfaa909a1a6ae8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/90651cf71db15227b9d691e55f0a75da.jpg\" _src=\"http://yanxuan.nosdn.127.net/90651cf71db15227b9d691e55f0a75da.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/24c44cd0e9cc09849bbcd48235b81dac.jpg\" _src=\"http://yanxuan.nosdn.127.net/24c44cd0e9cc09849bbcd48235b81dac.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '32', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/ee906abd9b2aa273ad28ea544fdac479.png', 'http://yanxuan.nosdn.127.net/654b02045fde802b51d5bbf09a8b75f2.png', '299.00', '1323', '1019010', '0.00', '限时购', '', '0.00', '0', '0', '0', '328.90', null, null, null, null);
  582. INSERT INTO `nideshop_goods` VALUES ('1021010', '1008009', '1021010', '色织水洗棉纯色四件套', '0', '100', '', '做旧褶皱感,亲肤舒适', '<p><img src=\"http://yanxuan.nosdn.127.net/16227b81865dce643b91b00ea6c39012.jpg\" _src=\"http://yanxuan.nosdn.127.net/16227b81865dce643b91b00ea6c39012.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/427ef03b20aa52014ab9d91c3f9fdb5e.jpg\" _src=\"http://yanxuan.nosdn.127.net/427ef03b20aa52014ab9d91c3f9fdb5e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/dc2466433e832c592e537f0f54bc1702.jpg\" _src=\"http://yanxuan.nosdn.127.net/dc2466433e832c592e537f0f54bc1702.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a2bcd099ad5167317a73354291f2c007.jpg\" _src=\"http://yanxuan.nosdn.127.net/a2bcd099ad5167317a73354291f2c007.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/da75827b70675306c6ca7d63bef5ffb1.jpg\" _src=\"http://yanxuan.nosdn.127.net/da75827b70675306c6ca7d63bef5ffb1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6ffc1fcd1d8afcbfa43b727eb40842ae.jpg\" _src=\"http://yanxuan.nosdn.127.net/6ffc1fcd1d8afcbfa43b727eb40842ae.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d8ae03d8ff640eaffb14ba37a83b137f.jpg\" _src=\"http://yanxuan.nosdn.127.net/d8ae03d8ff640eaffb14ba37a83b137f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/52c5f880b8e1a7cb7900616bd13a4b62.jpg\" _src=\"http://yanxuan.nosdn.127.net/52c5f880b8e1a7cb7900616bd13a4b62.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0b77db532462faf31bed3c4629a1ecbf.jpg\" _src=\"http://yanxuan.nosdn.127.net/0b77db532462faf31bed3c4629a1ecbf.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/07efa2bf79478f24799ff0a4cbfa0e54.jpg\" _src=\"http://yanxuan.nosdn.127.net/07efa2bf79478f24799ff0a4cbfa0e54.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/68070ec063cb05000ed7aef2b3ef1632.jpg\" _src=\"http://yanxuan.nosdn.127.net/68070ec063cb05000ed7aef2b3ef1632.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/dd54998d1cc11890f2650c74e7bfd340.jpg\" _src=\"http://yanxuan.nosdn.127.net/dd54998d1cc11890f2650c74e7bfd340.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '15', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/d98b95d0b04d88ac68bbd4586cf9e5b4.jpg', 'http://yanxuan.nosdn.127.net/25d734cc0b2eae8f63f9deb1e4ad5f64.png', '299.00', '756', '1019028', '0.00', '限时购', '', '0.00', '0', '0', '0', '328.90', null, null, null, null);
  583. INSERT INTO `nideshop_goods` VALUES ('1022000', '1008009', '1022000', '意式毛线绣球四件套', '1001020', '100', '', '浪漫毛线绣球,简约而不简单', '<p><img src=\"http://yanxuan.nosdn.127.net/3f63478dd19081036c7c8061a88438b3.jpg\" _src=\"http://yanxuan.nosdn.127.net/3f63478dd19081036c7c8061a88438b3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a437697cad2ac00a76b8a2a9f9f7819b.jpg\" _src=\"http://yanxuan.nosdn.127.net/a437697cad2ac00a76b8a2a9f9f7819b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/30607b946fa5245ab1376d28ab8d68c6.jpg\" _src=\"http://yanxuan.nosdn.127.net/30607b946fa5245ab1376d28ab8d68c6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d18e17059acf20d507fdb8f7054968a8.jpg\" _src=\"http://yanxuan.nosdn.127.net/d18e17059acf20d507fdb8f7054968a8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/61a0539ce8ca1f38cce7c5647c94aaf7.jpg\" _src=\"http://yanxuan.nosdn.127.net/61a0539ce8ca1f38cce7c5647c94aaf7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ec45424eef32b60e477bf6860f6c3ac2.jpg\" _src=\"http://yanxuan.nosdn.127.net/ec45424eef32b60e477bf6860f6c3ac2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d2fb058299e851d21128af4c29bbf40f.jpg\" _src=\"http://yanxuan.nosdn.127.net/d2fb058299e851d21128af4c29bbf40f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/88fcf4d3d09cc26809eaabf0df4ddc84.jpg\" _src=\"http://yanxuan.nosdn.127.net/88fcf4d3d09cc26809eaabf0df4ddc84.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/505360bfb9ae52b707d194195b547d1e.jpg\" _src=\"http://yanxuan.nosdn.127.net/505360bfb9ae52b707d194195b547d1e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d359fdfda280d2c7681adee5a533a65d.jpg\" _src=\"http://yanxuan.nosdn.127.net/d359fdfda280d2c7681adee5a533a65d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e6276ab49a773dedadd75da6529fc41b.jpg\" _src=\"http://yanxuan.nosdn.127.net/e6276ab49a773dedadd75da6529fc41b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c6057375f8fdafdc1e8e7a894bb2f39a.jpg\" _src=\"http://yanxuan.nosdn.127.net/c6057375f8fdafdc1e8e7a894bb2f39a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2059408e8aee017c85e47c7267af21bc.jpg\" _src=\"http://yanxuan.nosdn.127.net/2059408e8aee017c85e47c7267af21bc.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0a7e4c7b19fd7822f89ccd63ca94b234.jpg\" _src=\"http://yanxuan.nosdn.127.net/0a7e4c7b19fd7822f89ccd63ca94b234.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/937329152fc61bff06d29d4b316b7259.jpg\" _src=\"http://yanxuan.nosdn.127.net/937329152fc61bff06d29d4b316b7259.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f7bc2c66157bd5e2cdc978460214d33c.jpg\" _src=\"http://yanxuan.nosdn.127.net/f7bc2c66157bd5e2cdc978460214d33c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/55d327d74e2c768006fcce7f83cf0051.jpg\" _src=\"http://yanxuan.nosdn.127.net/55d327d74e2c768006fcce7f83cf0051.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5d06b9bef3bae34d66d38e30fad204d4.jpg\" _src=\"http://yanxuan.nosdn.127.net/5d06b9bef3bae34d66d38e30fad204d4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e1f4f2ee0a473c251c055ffeb25426d0.jpg\" _src=\"http://yanxuan.nosdn.127.net/e1f4f2ee0a473c251c055ffeb25426d0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7b7efe85839b1f1ea17c829563fc9206.jpg\" _src=\"http://yanxuan.nosdn.127.net/7b7efe85839b1f1ea17c829563fc9206.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ca4091e28e5b8cfd76c1ad3de8fda999.jpg\" _src=\"http://yanxuan.nosdn.127.net/ca4091e28e5b8cfd76c1ad3de8fda999.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ebd7266b6b01bddadf4903e8ca66a82a.jpg\" _src=\"http://yanxuan.nosdn.127.net/ebd7266b6b01bddadf4903e8ca66a82a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/db777171b81a10c51bae065de7fbef7f.jpg\" _src=\"http://yanxuan.nosdn.127.net/db777171b81a10c51bae065de7fbef7f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/416626d4074c929f080eff87586a49e2.jpg\" _src=\"http://yanxuan.nosdn.127.net/416626d4074c929f080eff87586a49e2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c23701559de65d814e9062847e87c6db.jpg\" _src=\"http://yanxuan.nosdn.127.net/c23701559de65d814e9062847e87c6db.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/200d89ca470fa10ac02971f26cf8f7fd.jpg\" _src=\"http://yanxuan.nosdn.127.net/200d89ca470fa10ac02971f26cf8f7fd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d6c39f0cf32656244e699eb21089f434.jpg\" _src=\"http://yanxuan.nosdn.127.net/d6c39f0cf32656244e699eb21089f434.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/287fa73c7e8b56eb8bd0ecee08c865da.jpg\" _src=\"http://yanxuan.nosdn.127.net/287fa73c7e8b56eb8bd0ecee08c865da.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0807995485258c26c712169290aac892.jpg\" _src=\"http://yanxuan.nosdn.127.net/0807995485258c26c712169290aac892.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c29f153a2fada82300a904b2ca46eeeb.jpg\" _src=\"http://yanxuan.nosdn.127.net/c29f153a2fada82300a904b2ca46eeeb.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bcd0c03d117c27a5c8856aabe577535e.jpg\" _src=\"http://yanxuan.nosdn.127.net/bcd0c03d117c27a5c8856aabe577535e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f9d6c1f265a891458ec9646801a9f790.jpg\" _src=\"http://yanxuan.nosdn.127.net/f9d6c1f265a891458ec9646801a9f790.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6bce3852bdd99bc428e5339dcec1749b.jpg\" _src=\"http://yanxuan.nosdn.127.net/6bce3852bdd99bc428e5339dcec1749b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0076b7513361cb10daa6cdae51b0238f.jpg\" _src=\"http://yanxuan.nosdn.127.net/0076b7513361cb10daa6cdae51b0238f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b289f3fdd57ba7c2f9bfed5cc235ad5d.jpg\" _src=\"http://yanxuan.nosdn.127.net/b289f3fdd57ba7c2f9bfed5cc235ad5d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ea27ef8fcca46882e225ab03f29cc4c3.jpg\" _src=\"http://yanxuan.nosdn.127.net/ea27ef8fcca46882e225ab03f29cc4c3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c0bbddfd513a56bb4b4e60b0d7485261.jpg\" _src=\"http://yanxuan.nosdn.127.net/c0bbddfd513a56bb4b4e60b0d7485261.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9b6904ddbb813688f8e1c36874437b8b.jpg\" _src=\"http://yanxuan.nosdn.127.net/9b6904ddbb813688f8e1c36874437b8b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/87439f2dc3805340736a508bfb4fc044.jpg\" _src=\"http://yanxuan.nosdn.127.net/87439f2dc3805340736a508bfb4fc044.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/29ca62c0aee1df52a9435ed2bf915b06.jpg\" _src=\"http://yanxuan.nosdn.127.net/29ca62c0aee1df52a9435ed2bf915b06.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/993cfb5a549e93a86ac5a5485221ded3.jpg\" _src=\"http://yanxuan.nosdn.127.net/993cfb5a549e93a86ac5a5485221ded3.jpg\" style=\"\"/></p><p><br/></p><p><br/></p><p><br/></p><p><br/></p><p><br/></p><p><br/></p><p><br/></p><p><br/></p><p><br/></p><p><br/></p><p><br/></p><p><br/></p><p><br/></p><p><br/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '18', '0', '0', '399.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/fc4e15c98813310e8bd10091e5e1d3ca.jpg', 'http://yanxuan.nosdn.127.net/5350e35e6f22165f38928f3c2c52ac57.png', '299.00', '690', '1020000', '0.00', '限时购', '限时购', '0.00', '0', '203', '1', '328.90', null, null, null, null);
  584. INSERT INTO `nideshop_goods` VALUES ('1022001', '1008009', '1022001', '法式浪漫绣球四件套', '1001020', '100', '', '浪漫绣球,法式般的呵护', '<p><img src=\"http://yanxuan.nosdn.127.net/3caeae4eca0f08bc143f5c57412d6bcd.jpg\" _src=\"http://yanxuan.nosdn.127.net/3caeae4eca0f08bc143f5c57412d6bcd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/01f377d37098d65602e2447788b93dfc.jpg\" _src=\"http://yanxuan.nosdn.127.net/01f377d37098d65602e2447788b93dfc.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b47996d9b47ddb13789a4ace965328ef.jpg\" _src=\"http://yanxuan.nosdn.127.net/b47996d9b47ddb13789a4ace965328ef.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5daff2af7d1940210efba1d94057b073.jpg\" _src=\"http://yanxuan.nosdn.127.net/5daff2af7d1940210efba1d94057b073.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a1d01003115794950d3e4f110403fdfd.jpg\" _src=\"http://yanxuan.nosdn.127.net/a1d01003115794950d3e4f110403fdfd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/62c33967eb50d98eb09246092a054f74.jpg\" _src=\"http://yanxuan.nosdn.127.net/62c33967eb50d98eb09246092a054f74.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/29792456f207afd95a62d60214a01851.jpg\" _src=\"http://yanxuan.nosdn.127.net/29792456f207afd95a62d60214a01851.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5cda3817dcffa4e1be4e479724e7f035.jpg\" _src=\"http://yanxuan.nosdn.127.net/5cda3817dcffa4e1be4e479724e7f035.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5cf34c4567ec6dbe839339698a3adf30.jpg\" _src=\"http://yanxuan.nosdn.127.net/5cf34c4567ec6dbe839339698a3adf30.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e64a01d30c65cea7c4ddf8f2229870d4.jpg\" _src=\"http://yanxuan.nosdn.127.net/e64a01d30c65cea7c4ddf8f2229870d4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/413863b3cabcbc94e322e9d2910f66ea.jpg\" _src=\"http://yanxuan.nosdn.127.net/413863b3cabcbc94e322e9d2910f66ea.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/99ce4e6124b75df99e4d4b8de6878c5c.jpg\" _src=\"http://yanxuan.nosdn.127.net/99ce4e6124b75df99e4d4b8de6878c5c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/403a8d6fa2422a0587cd2063f28cbbe1.jpg\" _src=\"http://yanxuan.nosdn.127.net/403a8d6fa2422a0587cd2063f28cbbe1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/099a401a319dae53cc5a7705f7b657fe.jpg\" _src=\"http://yanxuan.nosdn.127.net/099a401a319dae53cc5a7705f7b657fe.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/85dd8f3d5a6e885604d5fda96c39f281.jpg\" _src=\"http://yanxuan.nosdn.127.net/85dd8f3d5a6e885604d5fda96c39f281.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/22ea153a4825aa13770743eb6a1d766f.jpg\" _src=\"http://yanxuan.nosdn.127.net/22ea153a4825aa13770743eb6a1d766f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/578698b1a104997b3632db1f9dc74c6a.jpg\" _src=\"http://yanxuan.nosdn.127.net/578698b1a104997b3632db1f9dc74c6a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7b0b8b276985770b2e1c904e676de897.jpg\" _src=\"http://yanxuan.nosdn.127.net/7b0b8b276985770b2e1c904e676de897.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/44f167771765a070a19c9ff6c130747e.jpg\" _src=\"http://yanxuan.nosdn.127.net/44f167771765a070a19c9ff6c130747e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/342e7982df39b39f5bde5066c2421c24.jpg\" _src=\"http://yanxuan.nosdn.127.net/342e7982df39b39f5bde5066c2421c24.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3db52e63ab4b82aa5544bb68bf494da5.jpg\" _src=\"http://yanxuan.nosdn.127.net/3db52e63ab4b82aa5544bb68bf494da5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f4449875c22659a531bbd6eb104f45e7.jpg\" _src=\"http://yanxuan.nosdn.127.net/f4449875c22659a531bbd6eb104f45e7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/177cf74899157b8edec80f14bdff2666.jpg\" _src=\"http://yanxuan.nosdn.127.net/177cf74899157b8edec80f14bdff2666.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e5a4bf58ec86ccceaeeae46a800be248.jpg\" _src=\"http://yanxuan.nosdn.127.net/e5a4bf58ec86ccceaeeae46a800be248.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/aedd86730887d4ce9ab4ce11367e70e0.jpg\" _src=\"http://yanxuan.nosdn.127.net/aedd86730887d4ce9ab4ce11367e70e0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/80a075b3084c766d313005abf44b59a4.jpg\" _src=\"http://yanxuan.nosdn.127.net/80a075b3084c766d313005abf44b59a4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6e2fbec13573dbd9fcc14b32fb9ca95e.jpg\" _src=\"http://yanxuan.nosdn.127.net/6e2fbec13573dbd9fcc14b32fb9ca95e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/48a2191cf1e56304bb2a8dc84c18dc55.jpg\" _src=\"http://yanxuan.nosdn.127.net/48a2191cf1e56304bb2a8dc84c18dc55.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7daef2160a7c2838b144cb4426e9232d.jpg\" _src=\"http://yanxuan.nosdn.127.net/7daef2160a7c2838b144cb4426e9232d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/be2ba2e98e8f6c3a3e0a22bba52cde64.jpg\" _src=\"http://yanxuan.nosdn.127.net/be2ba2e98e8f6c3a3e0a22bba52cde64.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/706f8518e4f9f0868efd6c06a92374b7.jpg\" _src=\"http://yanxuan.nosdn.127.net/706f8518e4f9f0868efd6c06a92374b7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7377480490be9c4989733bfb20960553.jpg\" _src=\"http://yanxuan.nosdn.127.net/7377480490be9c4989733bfb20960553.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/02f382fffc5e413d2c2c20f3ed1f7cbc.jpg\" _src=\"http://yanxuan.nosdn.127.net/02f382fffc5e413d2c2c20f3ed1f7cbc.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/dba4773485150b157bdb304a4b7c64c4.jpg\" _src=\"http://yanxuan.nosdn.127.net/dba4773485150b157bdb304a4b7c64c4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6a0662a11f315dfaad974a20f9195eef.jpg\" _src=\"http://yanxuan.nosdn.127.net/6a0662a11f315dfaad974a20f9195eef.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/08dc21856b99613f59d501f99c54a577.jpg\" _src=\"http://yanxuan.nosdn.127.net/08dc21856b99613f59d501f99c54a577.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6723f2a290b14dea262b0abddc3464f0.jpg\" _src=\"http://yanxuan.nosdn.127.net/6723f2a290b14dea262b0abddc3464f0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2dd2e85a09efff621454acd0a96c3497.jpg\" _src=\"http://yanxuan.nosdn.127.net/2dd2e85a09efff621454acd0a96c3497.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4a317a6b832d9321a69c8966409f68ea.jpg\" _src=\"http://yanxuan.nosdn.127.net/4a317a6b832d9321a69c8966409f68ea.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f4031ea25471029f59ce36da8e0ce38e.jpg\" _src=\"http://yanxuan.nosdn.127.net/f4031ea25471029f59ce36da8e0ce38e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8beeebd28e23d906d7916ab4575f3800.jpg\" _src=\"http://yanxuan.nosdn.127.net/8beeebd28e23d906d7916ab4575f3800.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c65e967c692d7150baf9fee28f262935.jpg\" _src=\"http://yanxuan.nosdn.127.net/c65e967c692d7150baf9fee28f262935.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3fc96c7688f33de5876b358fdf31ebf2.jpg\" _src=\"http://yanxuan.nosdn.127.net/3fc96c7688f33de5876b358fdf31ebf2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/94adba0162052a5758ec9d8426123198.jpg\" _src=\"http://yanxuan.nosdn.127.net/94adba0162052a5758ec9d8426123198.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/152038e70480f6ba580a4830dc36b2de.jpg\" _src=\"http://yanxuan.nosdn.127.net/152038e70480f6ba580a4830dc36b2de.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6053a2051a69b207a1c23236588c8ae8.jpg\" _src=\"http://yanxuan.nosdn.127.net/6053a2051a69b207a1c23236588c8ae8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/72ff4dab74569803e60b9ef2e9f43d34.jpg\" _src=\"http://yanxuan.nosdn.127.net/72ff4dab74569803e60b9ef2e9f43d34.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ef52fed7935192b6127031d91f6f4c21.jpg\" _src=\"http://yanxuan.nosdn.127.net/ef52fed7935192b6127031d91f6f4c21.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '16', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/afddb0b5a7e135769d7520f24bfea3d3.jpg', 'http://yanxuan.nosdn.127.net/bf8faee3b27b480f63b70056597b626d.png', '349.00', '873', '1020001', '0.00', '限时购', '', '0.00', '0', '0', '0', '383.90', null, null, null, null);
  585. INSERT INTO `nideshop_goods` VALUES ('1023003', '1005007', '1023003', '100年传世珐琅锅 全家系列', '0', '100', '', '特质铸铁,大容量全家共享', '', '1', '2017-08-30 11:40:11', '3', '0', '0', '0.00', '0.00', '0', '只', 'http://yanxuan.nosdn.127.net/9c9f47d3c321b96ad9c8d658ff4249e1.jpg', 'http://yanxuan.nosdn.127.net/c39d54c06a71b4b61b6092a0d31f2335.png', '398.00', '413', '1022007', '0.00', '限时购', '', '0.00', '0', '0', '0', '437.80', null, null, null, null);
  586. INSERT INTO `nideshop_goods` VALUES ('1023012', '1036000', '1023012', '色织华夫格夏凉被', '1001000', '100', '', '凹凸华夫格织法,舒适轻柔', '<p><img src=\"http://yanxuan.nosdn.127.net/70e21fc5c723dc6adcb1b531553597d9.jpg\" _src=\"http://yanxuan.nosdn.127.net/70e21fc5c723dc6adcb1b531553597d9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fcdf78276ab0bcd8ed80a3dda8c29b6a.jpg\" _src=\"http://yanxuan.nosdn.127.net/fcdf78276ab0bcd8ed80a3dda8c29b6a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1eb088a53d00f094bbac4b1f7a662457.jpg\" _src=\"http://yanxuan.nosdn.127.net/1eb088a53d00f094bbac4b1f7a662457.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/86be51c377922edd23e48b9d0c51d5dc.jpg\" _src=\"http://yanxuan.nosdn.127.net/86be51c377922edd23e48b9d0c51d5dc.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e9cadf6589933fab072aef8c0644bb91.jpg\" _src=\"http://yanxuan.nosdn.127.net/e9cadf6589933fab072aef8c0644bb91.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/adbb912f1131f821f4d01bb29ed31450.jpg\" _src=\"http://yanxuan.nosdn.127.net/adbb912f1131f821f4d01bb29ed31450.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8309ca74e9ecea295882b68cc0080652.jpg\" _src=\"http://yanxuan.nosdn.127.net/8309ca74e9ecea295882b68cc0080652.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4cce90d2ad13258af815b828dd3fa34f.jpg\" _src=\"http://yanxuan.nosdn.127.net/4cce90d2ad13258af815b828dd3fa34f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0ad6cf5c7f4ed107d39997ce1acfffd2.jpg\" _src=\"http://yanxuan.nosdn.127.net/0ad6cf5c7f4ed107d39997ce1acfffd2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4b867cc1a9f3c0046b40118e009a2cbd.jpg\" _src=\"http://yanxuan.nosdn.127.net/4b867cc1a9f3c0046b40118e009a2cbd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b14b08ce203d77633340b1677f6196b6.jpg\" _src=\"http://yanxuan.nosdn.127.net/b14b08ce203d77633340b1677f6196b6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b697d210e3137bc9fa8f5b74a9916ce6.jpg\" _src=\"http://yanxuan.nosdn.127.net/b697d210e3137bc9fa8f5b74a9916ce6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a8b23b600cb5848d00eb1a176554f5de.jpg\" _src=\"http://yanxuan.nosdn.127.net/a8b23b600cb5848d00eb1a176554f5de.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0b76964151af30178e74e28d0d590fd7.jpg\" _src=\"http://yanxuan.nosdn.127.net/0b76964151af30178e74e28d0d590fd7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3eda6586081f50314690ab9f141d1758.jpg\" _src=\"http://yanxuan.nosdn.127.net/3eda6586081f50314690ab9f141d1758.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/939f9ac497e48529e0c44ef5af32f329.jpg\" _src=\"http://yanxuan.nosdn.127.net/939f9ac497e48529e0c44ef5af32f329.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '4', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/8211ea549896095377d555b5066dbf82.jpg', 'http://yanxuan.nosdn.127.net/07376e78bf4fb8a5aa8e6a0b1437c3ad.png', '299.00', '7180', '1022030', '0.00', '限时购', '', '0.00', '0', '0', '0', '328.90', null, null, null, null);
  587. INSERT INTO `nideshop_goods` VALUES ('1023032', '1008009', '1023032', '纯棉色织缎纹四件套', '1001020', '100', '', '色织缎纹工艺,亲肤舒适', '<p><img src=\"http://yanxuan.nosdn.127.net/e05936cc765b06296b623de8c8ad08df.jpg\" _src=\"http://yanxuan.nosdn.127.net/e05936cc765b06296b623de8c8ad08df.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4eff9d27f32ff39c19f8f6e4fb1f222e.jpg\" _src=\"http://yanxuan.nosdn.127.net/4eff9d27f32ff39c19f8f6e4fb1f222e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7241fac29763a031c9ce1089a1e4b4be.jpg\" _src=\"http://yanxuan.nosdn.127.net/7241fac29763a031c9ce1089a1e4b4be.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0dc6d93ac0498c5dfab30508b9412bc7.jpg\" _src=\"http://yanxuan.nosdn.127.net/0dc6d93ac0498c5dfab30508b9412bc7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/88d77c126de94ba83b264c413433d1ef.jpg\" _src=\"http://yanxuan.nosdn.127.net/88d77c126de94ba83b264c413433d1ef.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3379adc4f8cb904a509830c339474986.jpg\" _src=\"http://yanxuan.nosdn.127.net/3379adc4f8cb904a509830c339474986.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e4b36d6bba85f96e1fe35c721f1bef4b.jpg\" _src=\"http://yanxuan.nosdn.127.net/e4b36d6bba85f96e1fe35c721f1bef4b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0340dc32d4eb348e015b6ad02e613ae5.jpg\" _src=\"http://yanxuan.nosdn.127.net/0340dc32d4eb348e015b6ad02e613ae5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2e478f4d41d9cb43e5ca6d3f4ec31e5d.jpg\" _src=\"http://yanxuan.nosdn.127.net/2e478f4d41d9cb43e5ca6d3f4ec31e5d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/656e723cec3cfc0e84d1c72eb286c3d3.jpg\" _src=\"http://yanxuan.nosdn.127.net/656e723cec3cfc0e84d1c72eb286c3d3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c0730b88458593c7f8cc3fb389682378.jpg\" _src=\"http://yanxuan.nosdn.127.net/c0730b88458593c7f8cc3fb389682378.jpg\"/><img src=\"http://yanxuan.nosdn.127.net/51bf3bc396723d289a1f9ec099dd7c74.jpg\" _src=\"http://yanxuan.nosdn.127.net/51bf3bc396723d289a1f9ec099dd7c74.jpg\" style=\"line-height: 1.42857;\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/301f70f9f1926ade3e7a7ef4c01d9084.jpg\" _src=\"http://yanxuan.nosdn.127.net/301f70f9f1926ade3e7a7ef4c01d9084.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7b1596630f22d05ca935ab9d9793001e.jpg\" _src=\"http://yanxuan.nosdn.127.net/7b1596630f22d05ca935ab9d9793001e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/87c1ea8b6868f46cdba056cd714108e8.jpg\" _src=\"http://yanxuan.nosdn.127.net/87c1ea8b6868f46cdba056cd714108e8.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '20', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/ae44a93beaee69f045128b7612d21fbb.jpg', 'http://yanxuan.nosdn.127.net/e0b928ada728c140f6965bb41f47407b.png', '449.00', '574', '1022076', '0.00', '限时购', '', '0.00', '0', '0', '0', '493.90', null, null, null, null);
  588. INSERT INTO `nideshop_goods` VALUES ('1023034', '1036000', '1023034', '泡泡纱可水洗夏凉被', '1001000', '100', '', '全棉泡泡纱,柔软亲肤', '<p><img src=\"http://yanxuan.nosdn.127.net/85eeb993c3b4f37680c1980ad142e076.jpg\" _src=\"http://yanxuan.nosdn.127.net/85eeb993c3b4f37680c1980ad142e076.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/81f6fb8e6d4917a25fd8b4817ea7d4f9.jpg\" _src=\"http://yanxuan.nosdn.127.net/81f6fb8e6d4917a25fd8b4817ea7d4f9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/accecd0efbee671b1592560c3e08df40.jpg\" _src=\"http://yanxuan.nosdn.127.net/accecd0efbee671b1592560c3e08df40.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b1ed91aae1e7a9b3762edafcb31949b7.jpg\" _src=\"http://yanxuan.nosdn.127.net/b1ed91aae1e7a9b3762edafcb31949b7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c08c0809a1ddfdc7f739666599920999.jpg\" _src=\"http://yanxuan.nosdn.127.net/c08c0809a1ddfdc7f739666599920999.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/233157394df91dc93fe61ab8d1103e79.jpg\" _src=\"http://yanxuan.nosdn.127.net/233157394df91dc93fe61ab8d1103e79.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/10f3d5dcab0458117539f5cf0929c268.jpg\" _src=\"http://yanxuan.nosdn.127.net/10f3d5dcab0458117539f5cf0929c268.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6ce6ff785959f440508e3bc7a9348618.jpg\" _src=\"http://yanxuan.nosdn.127.net/6ce6ff785959f440508e3bc7a9348618.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2b8c08729cfce7d9b35fd6ea00d4ba65.jpg\" _src=\"http://yanxuan.nosdn.127.net/2b8c08729cfce7d9b35fd6ea00d4ba65.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7d8284f1c706360ea32f8f05f94b367c.jpg\" _src=\"http://yanxuan.nosdn.127.net/7d8284f1c706360ea32f8f05f94b367c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e21927788dafa40a5f2f409114dca3c9.jpg\" _src=\"http://yanxuan.nosdn.127.net/e21927788dafa40a5f2f409114dca3c9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9b3c8d2cc37f9fc533616a18cd7a655e.jpg\" _src=\"http://yanxuan.nosdn.127.net/9b3c8d2cc37f9fc533616a18cd7a655e.jpg\" style=\"\"/></p>', '1', '2017-08-30 11:40:11', '5', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/55129640e1e09ff05e427c73d52a18c5.jpg', 'http://yanxuan.nosdn.127.net/715899c65c023bb4973fb0466a5b79d6.png', '299.00', '1068', '1031020', '0.00', '限时购', '', '0.00', '0', '0', '0', '328.90', null, null, null, null);
  589. INSERT INTO `nideshop_goods` VALUES ('1025005', '1005007', '1025005', '100年传世珐琅锅', '0', '100', '', '特质铸铁,锁热节能', '', '1', '2017-08-30 11:40:11', '1', '0', '0', '0.00', '0.00', '0', '只', 'http://yanxuan.nosdn.127.net/4559299068a6fff007d668c3c36a3d68.jpg', 'http://yanxuan.nosdn.127.net/49e26f00ca4d0ce00f9960d22c936738.png', '268.00', '10659', '1024021', '0.00', '限时购', '', '0.00', '0', '0', '0', '294.80', null, null, null, null);
  590. INSERT INTO `nideshop_goods` VALUES ('1027004', '1036000', '1027004', '色织六层纱布夏凉被', '1001000', '100', '', '柔软纱布,婴童可用', '<p><img src=\"http://yanxuan.nosdn.127.net/67f90229027c9f7ce81be64b88a3a89d.jpg\" _src=\"http://yanxuan.nosdn.127.net/67f90229027c9f7ce81be64b88a3a89d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/938dcbd014d6651024b94ac9c61deeac.jpg\" _src=\"http://yanxuan.nosdn.127.net/938dcbd014d6651024b94ac9c61deeac.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2afaf85ccfc966329c91873b9bcfd895.jpg\" _src=\"http://yanxuan.nosdn.127.net/2afaf85ccfc966329c91873b9bcfd895.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c7e46721c706d3a6abca8349384b7d29.jpg\" _src=\"http://yanxuan.nosdn.127.net/c7e46721c706d3a6abca8349384b7d29.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/16064cd765c185be8a4621ef66e3839e.jpg\" _src=\"http://yanxuan.nosdn.127.net/16064cd765c185be8a4621ef66e3839e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3861e21da16b8e8907136f167d011971.jpg\" _src=\"http://yanxuan.nosdn.127.net/3861e21da16b8e8907136f167d011971.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/62035b349641dff662334c1f749930e3.jpg\" _src=\"http://yanxuan.nosdn.127.net/62035b349641dff662334c1f749930e3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8d814f23d85fa7ba0d3871fbd2ca743c.jpg\" _src=\"http://yanxuan.nosdn.127.net/8d814f23d85fa7ba0d3871fbd2ca743c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fa41611ffce03535348c76548d7be717.jpg\" _src=\"http://yanxuan.nosdn.127.net/fa41611ffce03535348c76548d7be717.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4a88cf7d8a483148d5261ca6ea8888e9.jpg\" _src=\"http://yanxuan.nosdn.127.net/4a88cf7d8a483148d5261ca6ea8888e9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2ae01b731a6b50c78151f3fb270c2ee3.jpg\" _src=\"http://yanxuan.nosdn.127.net/2ae01b731a6b50c78151f3fb270c2ee3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/643974e12eea8a60e9b5c8039e2dfb46.jpg\" _src=\"http://yanxuan.nosdn.127.net/643974e12eea8a60e9b5c8039e2dfb46.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f8866316ff84ac68d1fe347eb6db8b07.jpg\" _src=\"http://yanxuan.nosdn.127.net/f8866316ff84ac68d1fe347eb6db8b07.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a8d875bd5949fa3d2f6bb1dbbcc12121.jpg\" _src=\"http://yanxuan.nosdn.127.net/a8d875bd5949fa3d2f6bb1dbbcc12121.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3cc4a687ed3be8727ee90e371defb4d0.jpg\" _src=\"http://yanxuan.nosdn.127.net/3cc4a687ed3be8727ee90e371defb4d0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c519db001d883d017a133efc7080d41a.jpg\" _src=\"http://yanxuan.nosdn.127.net/c519db001d883d017a133efc7080d41a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fbf012451cddac91a939c2b5171acc96.jpg\" _src=\"http://yanxuan.nosdn.127.net/fbf012451cddac91a939c2b5171acc96.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9e63320cbbeecd593457e3ded8b5e9b0.jpg\" _src=\"http://yanxuan.nosdn.127.net/9e63320cbbeecd593457e3ded8b5e9b0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e0acb487f97e14a5b9fc8c5fa5d8b1a6.jpg\" _src=\"http://yanxuan.nosdn.127.net/e0acb487f97e14a5b9fc8c5fa5d8b1a6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e4a709c0c8140be33d226e0963912499.jpg\" _src=\"http://yanxuan.nosdn.127.net/e4a709c0c8140be33d226e0963912499.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/eb3eaec97d07430ed6aea55e0a40b56e.jpg\" _src=\"http://yanxuan.nosdn.127.net/eb3eaec97d07430ed6aea55e0a40b56e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/149f85abb95d094a7cb5ae7565a4ecd5.jpg\" _src=\"http://yanxuan.nosdn.127.net/149f85abb95d094a7cb5ae7565a4ecd5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/af0c2642435d3437c9f710cc442615f7.jpg\" _src=\"http://yanxuan.nosdn.127.net/af0c2642435d3437c9f710cc442615f7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/592fd3838f55f48a3f4ba5b2e796eff2.jpg\" _src=\"http://yanxuan.nosdn.127.net/592fd3838f55f48a3f4ba5b2e796eff2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3433c1bb5f6e0e3f3a10481ec53a28f8.jpg\" _src=\"http://yanxuan.nosdn.127.net/3433c1bb5f6e0e3f3a10481ec53a28f8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/973cc6e90902c300a4648b5391246a19.jpg\" _src=\"http://yanxuan.nosdn.127.net/973cc6e90902c300a4648b5391246a19.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/eb348e33f7387db2ddeaac68ca1abde1.jpg\" _src=\"http://yanxuan.nosdn.127.net/eb348e33f7387db2ddeaac68ca1abde1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a7234ad4c588c7423cf121ffee298480.jpg\" _src=\"http://yanxuan.nosdn.127.net/a7234ad4c588c7423cf121ffee298480.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/17f16b61bc645d686fdbed7be626bf4c.jpg\" _src=\"http://yanxuan.nosdn.127.net/17f16b61bc645d686fdbed7be626bf4c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d6c3dc3c5436f3985a2fafce5e41d1e2.jpg\" _src=\"http://yanxuan.nosdn.127.net/d6c3dc3c5436f3985a2fafce5e41d1e2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d5adb3c164a8e9edb187ea20aaca8b41.jpg\" _src=\"http://yanxuan.nosdn.127.net/d5adb3c164a8e9edb187ea20aaca8b41.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/79e4f7477ee14c37ba3e8b34e51f70ad.jpg\" _src=\"http://yanxuan.nosdn.127.net/79e4f7477ee14c37ba3e8b34e51f70ad.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '3', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/a8dacc2f580c48bb535da34cf81c2497.jpg', 'http://yanxuan.nosdn.127.net/6252f53aaf36c072b6678f3d8c635132.png', '249.00', '1255', '1026004', '0.00', '限时购', '', '0.00', '0', '0', '1', '273.90', null, null, null, null);
  591. INSERT INTO `nideshop_goods` VALUES ('1029005', '1008009', '1029005', '淡墨天丝麻渐变四件套', '0', '100', '', '亲肤透气,告别干燥秋季', '<p><img src=\"http://yanxuan.nosdn.127.net/2f948674e3ef78aa24c10b19729f4fb4.jpg\" _src=\"http://yanxuan.nosdn.127.net/2f948674e3ef78aa24c10b19729f4fb4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b6f7b253a3a9c1f02e986f9a64cff535.jpg\" _src=\"http://yanxuan.nosdn.127.net/b6f7b253a3a9c1f02e986f9a64cff535.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3865d7978f3b48a9b14cd4da8f0f6098.jpg\" _src=\"http://yanxuan.nosdn.127.net/3865d7978f3b48a9b14cd4da8f0f6098.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/04cb61cad86bd2168bca2ec84e8b4e3d.jpg\" _src=\"http://yanxuan.nosdn.127.net/04cb61cad86bd2168bca2ec84e8b4e3d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ce4572adf231a3973b2d5a0f8314f968.jpg\" _src=\"http://yanxuan.nosdn.127.net/ce4572adf231a3973b2d5a0f8314f968.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ae020323ce54942f0144a6e502b63477.jpg\" _src=\"http://yanxuan.nosdn.127.net/ae020323ce54942f0144a6e502b63477.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/dbe53d568c242bcc315b1dfe0dd31ecc.jpg\" _src=\"http://yanxuan.nosdn.127.net/dbe53d568c242bcc315b1dfe0dd31ecc.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e4981bb62099cd889c2060d59091a30c.jpg\" _src=\"http://yanxuan.nosdn.127.net/e4981bb62099cd889c2060d59091a30c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7e44d15505bb091dea46ff43c7109050.jpg\" _src=\"http://yanxuan.nosdn.127.net/7e44d15505bb091dea46ff43c7109050.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2843d3e369881bc1cf99e4013ab4aae2.jpg\" _src=\"http://yanxuan.nosdn.127.net/2843d3e369881bc1cf99e4013ab4aae2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/99d3e400707eebe6b541008d8d2fa304.jpg\" _src=\"http://yanxuan.nosdn.127.net/99d3e400707eebe6b541008d8d2fa304.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1cf8ae7b0bef82d7180bde3d32939a67.jpg\" _src=\"http://yanxuan.nosdn.127.net/1cf8ae7b0bef82d7180bde3d32939a67.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1cf89b5f0fdd2beac19eabbb5c1b4dfb.jpg\" _src=\"http://yanxuan.nosdn.127.net/1cf89b5f0fdd2beac19eabbb5c1b4dfb.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/08021a1c737562f1a9acc37d878ff7d3.jpg\" _src=\"http://yanxuan.nosdn.127.net/08021a1c737562f1a9acc37d878ff7d3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4b1439470e09d8cbd9320a0c97a0ccaa.jpg\" _src=\"http://yanxuan.nosdn.127.net/4b1439470e09d8cbd9320a0c97a0ccaa.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e0759dd1870f1e0539cac751ebea4f1e.jpg\" _src=\"http://yanxuan.nosdn.127.net/e0759dd1870f1e0539cac751ebea4f1e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3343c096023771e737f13b6473f6c505.jpg\" _src=\"http://yanxuan.nosdn.127.net/3343c096023771e737f13b6473f6c505.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/80c5a9c55e6b95c4a858dd4c6d8c6de8.jpg\" _src=\"http://yanxuan.nosdn.127.net/80c5a9c55e6b95c4a858dd4c6d8c6de8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6e8910c022ab86841cda2396c4465a54.jpg\" _src=\"http://yanxuan.nosdn.127.net/6e8910c022ab86841cda2396c4465a54.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7348beaa667f2a6661280b16edd2b8f6.jpg\" _src=\"http://yanxuan.nosdn.127.net/7348beaa667f2a6661280b16edd2b8f6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0a1c836402908ce4c26a62c2ab5d7b83.jpg\" _src=\"http://yanxuan.nosdn.127.net/0a1c836402908ce4c26a62c2ab5d7b83.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/26dc9814e66b7252cba3fcefabb80d20.jpg\" _src=\"http://yanxuan.nosdn.127.net/26dc9814e66b7252cba3fcefabb80d20.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/80f8cfcfb47dab3107824b81bf195410.jpg\" _src=\"http://yanxuan.nosdn.127.net/80f8cfcfb47dab3107824b81bf195410.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a6f0f8ad06565d09338aab8c546dbf6d.jpg\" _src=\"http://yanxuan.nosdn.127.net/a6f0f8ad06565d09338aab8c546dbf6d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b24933453ed7672902fe34f4521806de.jpg\" _src=\"http://yanxuan.nosdn.127.net/b24933453ed7672902fe34f4521806de.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7c270fcfcf8072e9adbc4042702c542e.jpg\" _src=\"http://yanxuan.nosdn.127.net/7c270fcfcf8072e9adbc4042702c542e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/30524cd20f9dde720eb3405e0e5cf672.jpg\" _src=\"http://yanxuan.nosdn.127.net/30524cd20f9dde720eb3405e0e5cf672.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/583146da365d34a21a95c8ff096887a5.jpg\" _src=\"http://yanxuan.nosdn.127.net/583146da365d34a21a95c8ff096887a5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/77d0c9777c92e11a81abf49eac319782.jpg\" _src=\"http://yanxuan.nosdn.127.net/77d0c9777c92e11a81abf49eac319782.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a202e74dbace549f54730e9f9840d3a2.jpg\" _src=\"http://yanxuan.nosdn.127.net/a202e74dbace549f54730e9f9840d3a2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ffb8f977278d24a5d4ef68ddef7ec8f2.jpg\" _src=\"http://yanxuan.nosdn.127.net/ffb8f977278d24a5d4ef68ddef7ec8f2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d02e0db8572baa48c2c5479aa16e7a51.jpg\" _src=\"http://yanxuan.nosdn.127.net/d02e0db8572baa48c2c5479aa16e7a51.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4c1d4a177cccd0038d64455c0b14f21b.jpg\" _src=\"http://yanxuan.nosdn.127.net/4c1d4a177cccd0038d64455c0b14f21b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/15b18532a1eba7e8c68aa4ec7abf43ac.jpg\" _src=\"http://yanxuan.nosdn.127.net/15b18532a1eba7e8c68aa4ec7abf43ac.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/16e9a9c21cf9283b9c086be62234e1e0.jpg\" _src=\"http://yanxuan.nosdn.127.net/16e9a9c21cf9283b9c086be62234e1e0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7708ab7dde37876a1983cfa279dedeef.jpg\" _src=\"http://yanxuan.nosdn.127.net/7708ab7dde37876a1983cfa279dedeef.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5aef158d01cffc44ec3e1ec8477652d7.jpg\" _src=\"http://yanxuan.nosdn.127.net/5aef158d01cffc44ec3e1ec8477652d7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/57064140310058975c8d4021de045977.jpg\" _src=\"http://yanxuan.nosdn.127.net/57064140310058975c8d4021de045977.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/487efa0eb926a93b9f5979f4b6ad8f2a.jpg\" _src=\"http://yanxuan.nosdn.127.net/487efa0eb926a93b9f5979f4b6ad8f2a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ee1358f10dd840512d44e6d3dcee2074.jpg\" _src=\"http://yanxuan.nosdn.127.net/ee1358f10dd840512d44e6d3dcee2074.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/267b321aa7bac423ef296f9ea862fda2.jpg\" _src=\"http://yanxuan.nosdn.127.net/267b321aa7bac423ef296f9ea862fda2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5c9a99527c2a7320435407be94eba294.jpg\" _src=\"http://yanxuan.nosdn.127.net/5c9a99527c2a7320435407be94eba294.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d477452ba64594b379e20b1777dd12f1.jpg\" _src=\"http://yanxuan.nosdn.127.net/d477452ba64594b379e20b1777dd12f1.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '24', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/b459acfea49574659b32289df41e9484.jpg', 'http://yanxuan.nosdn.127.net/25fe52f44853eb45f610846991bc4d9d.png', '959.00', '305', '1028007', '0.00', '限时购', '', '0.00', '0', '0', '0', '1054.90', null, null, null, null);
  592. INSERT INTO `nideshop_goods` VALUES ('1030001', '1008002', '1030001', '160*230羊毛手工地毯', '0', '100', '', '印度进口,手工编织,简约百搭', '<p><img src=\"http://yanxuan.nosdn.127.net/fbe953060dd4282539ee78e22f9c326c.jpg\" _src=\"http://yanxuan.nosdn.127.net/fbe953060dd4282539ee78e22f9c326c.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fb6320b1b19fe349fca98dcb509ccb41.jpg\" _src=\"http://yanxuan.nosdn.127.net/fb6320b1b19fe349fca98dcb509ccb41.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4e3517025dc8da160277d7c80c55a83f.jpg\" _src=\"http://yanxuan.nosdn.127.net/4e3517025dc8da160277d7c80c55a83f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c6d902b098a5009871e7dd2fc47d4aae.jpg\" _src=\"http://yanxuan.nosdn.127.net/c6d902b098a5009871e7dd2fc47d4aae.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/15b721ac1796a6a93c2925c45fbafa91.jpg\" _src=\"http://yanxuan.nosdn.127.net/15b721ac1796a6a93c2925c45fbafa91.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c1e30ecc74b5b25869f892f51d4472b0.jpg\" _src=\"http://yanxuan.nosdn.127.net/c1e30ecc74b5b25869f892f51d4472b0.jpg\" style=\"\"/></p><p><br/></p><p><br/></p><p><img src=\"http://yanxuan.nosdn.127.net/e7ddc57f40d4ec7d7e1069fc24438e93.jpg\" _src=\"http://yanxuan.nosdn.127.net/e7ddc57f40d4ec7d7e1069fc24438e93.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/68e501bd5f6f2018ee275af62edcebce.jpg\" _src=\"http://yanxuan.nosdn.127.net/68e501bd5f6f2018ee275af62edcebce.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6cd10a4cc89e2067421632172382410c.jpg\" _src=\"http://yanxuan.nosdn.127.net/6cd10a4cc89e2067421632172382410c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/81d9b02cc74f846bb29bfc57b4d8dab1.jpg\" _src=\"http://yanxuan.nosdn.127.net/81d9b02cc74f846bb29bfc57b4d8dab1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/30a9e77d7e0cab9b389bc4a7f4a0be13.jpg\" _src=\"http://yanxuan.nosdn.127.net/30a9e77d7e0cab9b389bc4a7f4a0be13.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/50513c57074971334c4b715d8b3cdfa1.jpg\" _src=\"http://yanxuan.nosdn.127.net/50513c57074971334c4b715d8b3cdfa1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5497b96a17e01db88d3b8999d78e111d.jpg\" _src=\"http://yanxuan.nosdn.127.net/5497b96a17e01db88d3b8999d78e111d.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3311094b3f6ac170477dbf31fdc36a43.jpg\" _src=\"http://yanxuan.nosdn.127.net/3311094b3f6ac170477dbf31fdc36a43.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fb7a1c7b6c6989af9c42a4e66de098e8.jpg\" _src=\"http://yanxuan.nosdn.127.net/fb7a1c7b6c6989af9c42a4e66de098e8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ac42cbdfaa06c00a1bbd22fd63308546.jpg\" _src=\"http://yanxuan.nosdn.127.net/ac42cbdfaa06c00a1bbd22fd63308546.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0d2bf9139a0ca351f0ae4cabece86277.jpg\" _src=\"http://yanxuan.nosdn.127.net/0d2bf9139a0ca351f0ae4cabece86277.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/da1c0eef412d5ff9761a8659fa64d91b.jpg\" _src=\"http://yanxuan.nosdn.127.net/da1c0eef412d5ff9761a8659fa64d91b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ba7017652cf73419da57393bb02ca6de.jpg\" _src=\"http://yanxuan.nosdn.127.net/ba7017652cf73419da57393bb02ca6de.jpg\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '25', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/ca0d9199db70d7b7f2b9b2ea673c74a4.jpg', 'http://yanxuan.nosdn.127.net/88dc5d80c6f84102f003ecd69c86e1cf.png', '969.00', '657', '1029001', '0.00', '限时购', '', '0.00', '0', '0', '0', '1065.90', null, null, null, null);
  593. INSERT INTO `nideshop_goods` VALUES ('1030002', '1008002', '1030002', '160*230羊毛圈绒枪刺地毯', '0', '100', '', '印度进口,手工枪刺,简约百搭', '<p><video id=\"tmpVedio0\" class=\"edui-upload-video video-js vjs-default-skin video-js\" controls=\"\" preload=\"auto\" width=\"100%\" height=\"\" data-setup=\"{}\"><source src=\"http://yanxuan.nosdn.127.net/4ca24b2fa0043eb7435d1ca24312b689.mp4\" type=\"video/mp4\"/></video>‍</p><p><img src=\"http://yanxuan.nosdn.127.net/4c409ac170dafe286e2cbd918b30a388.jpg\" _src=\"http://yanxuan.nosdn.127.net/4c409ac170dafe286e2cbd918b30a388.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7c4147de069c1c7d819711e683fae373.jpg\" _src=\"http://yanxuan.nosdn.127.net/7c4147de069c1c7d819711e683fae373.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7d4be2d9edd8481dfa51cc7b86a90b36.jpg\" _src=\"http://yanxuan.nosdn.127.net/7d4be2d9edd8481dfa51cc7b86a90b36.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/61be18dbb282646133551c2bc297fb36.jpg\" _src=\"http://yanxuan.nosdn.127.net/61be18dbb282646133551c2bc297fb36.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7160604c5bd97a0f1aef7f3a2a32b72b.jpg\" _src=\"http://yanxuan.nosdn.127.net/7160604c5bd97a0f1aef7f3a2a32b72b.jpg\" style=\"\"/></p><p><br/></p><p><br/></p><p><img src=\"http://yanxuan.nosdn.127.net/32c5969b18a85bc62d4a855c40ab6142.jpg\" _src=\"http://yanxuan.nosdn.127.net/32c5969b18a85bc62d4a855c40ab6142.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/62189479f43fd283340ce0fad3706b00.jpg\" _src=\"http://yanxuan.nosdn.127.net/62189479f43fd283340ce0fad3706b00.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f39cb441e6778d5d39510099f8befd3a.jpg\" _src=\"http://yanxuan.nosdn.127.net/f39cb441e6778d5d39510099f8befd3a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6bbb06c48c23cdf11fd93f711512eed7.jpg\" _src=\"http://yanxuan.nosdn.127.net/6bbb06c48c23cdf11fd93f711512eed7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c0701aef423ba84cb1aabe8d6a1ab8d8.jpg\" _src=\"http://yanxuan.nosdn.127.net/c0701aef423ba84cb1aabe8d6a1ab8d8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4dec1e3bf4d5812d7d9fbddf50657e73.jpg\" _src=\"http://yanxuan.nosdn.127.net/4dec1e3bf4d5812d7d9fbddf50657e73.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/44497f9ad25cb6d208cc564016c8fd54.jpg\" _src=\"http://yanxuan.nosdn.127.net/44497f9ad25cb6d208cc564016c8fd54.jpg\"/></p><p><br/></p><p><img src=\"http://yanxuan.nosdn.127.net/37de0870b61ed6e880936d22000c2e85.jpg\" _src=\"http://yanxuan.nosdn.127.net/37de0870b61ed6e880936d22000c2e85.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/97906141bd8846ea9e7888fa8a6b4ae0.jpg\" _src=\"http://yanxuan.nosdn.127.net/97906141bd8846ea9e7888fa8a6b4ae0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/db23e00419f012686aaf4b3eeecae09b.jpg\" _src=\"http://yanxuan.nosdn.127.net/db23e00419f012686aaf4b3eeecae09b.jpg\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '24', '0', '0', '1269.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/0d0a7e7d40a16ae6850d19f5e8704d8e.jpg', 'http://yanxuan.nosdn.127.net/8b9328496990357033d4259fda250679.png', '899.00', '205', '1029006', '0.00', '限时购', '限时购', '0.00', '0', '203', '0', '988.90', null, null, null, null);
  594. INSERT INTO `nideshop_goods` VALUES ('1030003', '1008002', '1030003', '160*230羊毛手工几何地毯', '0', '100', '', '几何图案,打造立体的时尚感', '<p><video id=\"tmpVedio0\" class=\"edui-upload-video video-js vjs-default-skin video-js\" controls=\"\" preload=\"auto\" width=\"100%\" height=\"\" data-setup=\"{}\"><source src=\"http://yanxuan.nosdn.127.net/e07746a58f5814648229ab750f7e59b0.mp4\" type=\"video/mp4\"/></video>‍</p><p><img src=\"http://yanxuan.nosdn.127.net/a03425edf97e1b0299d3095172991847.jpg\" _src=\"http://yanxuan.nosdn.127.net/a03425edf97e1b0299d3095172991847.jpg\" style=\"line-height: 1.42857;\"/><br/></p><p><img src=\"http://yanxuan.nosdn.127.net/d3fc35db4f3956b210032f0a876c2f2e.jpg\" _src=\"http://yanxuan.nosdn.127.net/d3fc35db4f3956b210032f0a876c2f2e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cf278ec3726e12e0a07ef4384f80d7c4.jpg\" _src=\"http://yanxuan.nosdn.127.net/cf278ec3726e12e0a07ef4384f80d7c4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/04cdc7e09537f67a140f5bd363751d23.jpg\" _src=\"http://yanxuan.nosdn.127.net/04cdc7e09537f67a140f5bd363751d23.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f4978e0569025d98c7a0cc685a3227d5.jpg\" _src=\"http://yanxuan.nosdn.127.net/f4978e0569025d98c7a0cc685a3227d5.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/667999a8913e0dfc5118695f690f9ac4.jpg\" _src=\"http://yanxuan.nosdn.127.net/667999a8913e0dfc5118695f690f9ac4.jpg\" style=\"\"/></p><p><br/></p><p><br/></p><p><img src=\"http://yanxuan.nosdn.127.net/d0fe6f158bf93e05ae12fbc86ad7df61.jpg\" _src=\"http://yanxuan.nosdn.127.net/d0fe6f158bf93e05ae12fbc86ad7df61.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/39b84d98bfcbc4f0443ec04e39328d04.jpg\" _src=\"http://yanxuan.nosdn.127.net/39b84d98bfcbc4f0443ec04e39328d04.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/16218f2ea0f8f4ddfd1fcbeac17d3b54.jpg\" _src=\"http://yanxuan.nosdn.127.net/16218f2ea0f8f4ddfd1fcbeac17d3b54.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5e512605b0a5ee1dea333c42f826050b.jpg\" _src=\"http://yanxuan.nosdn.127.net/5e512605b0a5ee1dea333c42f826050b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/001d8961d92c3ebcf860e1745d0c63b4.jpg\" _src=\"http://yanxuan.nosdn.127.net/001d8961d92c3ebcf860e1745d0c63b4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/25dda9b93dd3dd9aa622779c27481ef4.jpg\" _src=\"http://yanxuan.nosdn.127.net/25dda9b93dd3dd9aa622779c27481ef4.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/037abff9d64cdc761092d47619df82d0.jpg\" _src=\"http://yanxuan.nosdn.127.net/037abff9d64cdc761092d47619df82d0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3f755e4142e8baf68fab301b3e6438d5.jpg\" _src=\"http://yanxuan.nosdn.127.net/3f755e4142e8baf68fab301b3e6438d5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fa9ac1211dca7edc8fd93efd9cdd66e9.jpg\" _src=\"http://yanxuan.nosdn.127.net/fa9ac1211dca7edc8fd93efd9cdd66e9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ada62ef76b083d844d0762d2a6d33824.jpg\" _src=\"http://yanxuan.nosdn.127.net/ada62ef76b083d844d0762d2a6d33824.jpg\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '23', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/d74913e762fa11a4e27b0a20b8dad02d.jpg', 'http://yanxuan.nosdn.127.net/1d1ab099dc0e254c15e57302e78e200b.png', '1469.00', '464', '1029008', '0.00', '限时购', '', '0.00', '0', '0', '0', '1615.90', null, null, null, null);
  595. INSERT INTO `nideshop_goods` VALUES ('1030004', '1008009', '1030004', '日式穿线绣四件套', '1001020', '100', '', '源自日本的刺子绣工艺', '<p><img src=\"http://yanxuan.nosdn.127.net/c4f000d07201318aa97e28ca44265b38.jpg\" _src=\"http://yanxuan.nosdn.127.net/c4f000d07201318aa97e28ca44265b38.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ba9c0e8463001b51e62e4a6d1d3cebe3.jpg\" _src=\"http://yanxuan.nosdn.127.net/ba9c0e8463001b51e62e4a6d1d3cebe3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/639358f7a538a6aad6b51ab71cf312f0.jpg\" _src=\"http://yanxuan.nosdn.127.net/639358f7a538a6aad6b51ab71cf312f0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7716eea4d973041f42f37dda65569d67.jpg\" _src=\"http://yanxuan.nosdn.127.net/7716eea4d973041f42f37dda65569d67.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1b11376974f63cb3ba512ee6c7a3246c.jpg\" _src=\"http://yanxuan.nosdn.127.net/1b11376974f63cb3ba512ee6c7a3246c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7e4dab90e7e762a28d3e44a93bd73dbf.jpg\" _src=\"http://yanxuan.nosdn.127.net/7e4dab90e7e762a28d3e44a93bd73dbf.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/14d6248e60ac4a5fa8a73ebe20d8e299.jpg\" _src=\"http://yanxuan.nosdn.127.net/14d6248e60ac4a5fa8a73ebe20d8e299.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/82037e630fb9aabe1caa647f1aad7b8b.jpg\" _src=\"http://yanxuan.nosdn.127.net/82037e630fb9aabe1caa647f1aad7b8b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9f1442e6e6a628cdd0298e11b72c3df1.jpg\" _src=\"http://yanxuan.nosdn.127.net/9f1442e6e6a628cdd0298e11b72c3df1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/47bd87ff29265ec6bd20e3d139bde9f0.jpg\" _src=\"http://yanxuan.nosdn.127.net/47bd87ff29265ec6bd20e3d139bde9f0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c26da60fee77b361d5dfd54db2e248ef.jpg\" _src=\"http://yanxuan.nosdn.127.net/c26da60fee77b361d5dfd54db2e248ef.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/360546bc4a24bcd01771ebf3fc14e78e.jpg\" _src=\"http://yanxuan.nosdn.127.net/360546bc4a24bcd01771ebf3fc14e78e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2526231998502ab75fff85578f5b5805.jpg\" _src=\"http://yanxuan.nosdn.127.net/2526231998502ab75fff85578f5b5805.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9b40d643b8801d4ff3c166757a4e22f0.jpg\" _src=\"http://yanxuan.nosdn.127.net/9b40d643b8801d4ff3c166757a4e22f0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/156e1560ba231e2c4d7441b556083b1a.jpg\" _src=\"http://yanxuan.nosdn.127.net/156e1560ba231e2c4d7441b556083b1a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/abaaa1e37b4650641500d6ffc63ad003.jpg\" _src=\"http://yanxuan.nosdn.127.net/abaaa1e37b4650641500d6ffc63ad003.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ead543a4b8b31b3160eb626d0ac99a86.jpg\" _src=\"http://yanxuan.nosdn.127.net/ead543a4b8b31b3160eb626d0ac99a86.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d9b21b1eeb2672cfb0b0d4d2eb05c1b2.jpg\" _src=\"http://yanxuan.nosdn.127.net/d9b21b1eeb2672cfb0b0d4d2eb05c1b2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/95d189148e850ba0058c461d9295d5a4.jpg\" _src=\"http://yanxuan.nosdn.127.net/95d189148e850ba0058c461d9295d5a4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b46ca72735ebc86f3903f19d6eeadc0a.jpg\" _src=\"http://yanxuan.nosdn.127.net/b46ca72735ebc86f3903f19d6eeadc0a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fc1c5c04748096c1e7e247589e5ac36d.jpg\" _src=\"http://yanxuan.nosdn.127.net/fc1c5c04748096c1e7e247589e5ac36d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4e3f5a4543ad7b8023098e6dc73d79ac.jpg\" _src=\"http://yanxuan.nosdn.127.net/4e3f5a4543ad7b8023098e6dc73d79ac.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5ce626b3616f9c924d9e0b9b16971928.jpg\" _src=\"http://yanxuan.nosdn.127.net/5ce626b3616f9c924d9e0b9b16971928.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/10451a1bd8ca994db14240f9da449aff.jpg\" _src=\"http://yanxuan.nosdn.127.net/10451a1bd8ca994db14240f9da449aff.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/726c9de98163127c5934133d3c8c83fa.jpg\" _src=\"http://yanxuan.nosdn.127.net/726c9de98163127c5934133d3c8c83fa.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/26cd209f7ab8571c8d9bca7835448ee6.jpg\" _src=\"http://yanxuan.nosdn.127.net/26cd209f7ab8571c8d9bca7835448ee6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/985f6986962a913af1e1fa2382677813.jpg\" _src=\"http://yanxuan.nosdn.127.net/985f6986962a913af1e1fa2382677813.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/81020d5f2f40527915dde40de5fe61fb.jpg\" _src=\"http://yanxuan.nosdn.127.net/81020d5f2f40527915dde40de5fe61fb.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8d09ba6c6d055b483029675fd054f13a.jpg\" _src=\"http://yanxuan.nosdn.127.net/8d09ba6c6d055b483029675fd054f13a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ec24ea55fb62e16b8465c0bc55ebc4fd.jpg\" _src=\"http://yanxuan.nosdn.127.net/ec24ea55fb62e16b8465c0bc55ebc4fd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/58c6aa370c08c703e656846c33e6da1d.jpg\" _src=\"http://yanxuan.nosdn.127.net/58c6aa370c08c703e656846c33e6da1d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f1b2a2dfb5df53e11a54dfe8e0c87ec8.jpg\" _src=\"http://yanxuan.nosdn.127.net/f1b2a2dfb5df53e11a54dfe8e0c87ec8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/03c572a157408b95dd174b382552af2b.jpg\" _src=\"http://yanxuan.nosdn.127.net/03c572a157408b95dd174b382552af2b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a1e28353558a5d1edc9e550f2f208afd.jpg\" _src=\"http://yanxuan.nosdn.127.net/a1e28353558a5d1edc9e550f2f208afd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a3bf45801fbaf481f1657ab129bd91e9.jpg\" _src=\"http://yanxuan.nosdn.127.net/a3bf45801fbaf481f1657ab129bd91e9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ab30b1b28a6b0931a0d0c17495b17d38.jpg\" _src=\"http://yanxuan.nosdn.127.net/ab30b1b28a6b0931a0d0c17495b17d38.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5065ff865628eba210732ee1fb814087.jpg\" _src=\"http://yanxuan.nosdn.127.net/5065ff865628eba210732ee1fb814087.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e85c4d9e815278bf505e9284be159911.jpg\" _src=\"http://yanxuan.nosdn.127.net/e85c4d9e815278bf505e9284be159911.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/982ba14437d259e070895027001fa014.jpg\" _src=\"http://yanxuan.nosdn.127.net/982ba14437d259e070895027001fa014.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/aef71397c166f205ee5da5a2400b9f5b.jpg\" _src=\"http://yanxuan.nosdn.127.net/aef71397c166f205ee5da5a2400b9f5b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9615297dc1dfefab07be48c6ded3fa48.jpg\" _src=\"http://yanxuan.nosdn.127.net/9615297dc1dfefab07be48c6ded3fa48.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d666d2aa297864ffff3a89656fe32065.jpg\" _src=\"http://yanxuan.nosdn.127.net/d666d2aa297864ffff3a89656fe32065.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/db3aab03b1fd811e0acb60fa72abf255.jpg\" _src=\"http://yanxuan.nosdn.127.net/db3aab03b1fd811e0acb60fa72abf255.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0f8a35c0788697bb69e57dc46b9bd835.jpg\" _src=\"http://yanxuan.nosdn.127.net/0f8a35c0788697bb69e57dc46b9bd835.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fe6f71e8260eabaceb2928f7b15273e9.jpg\" _src=\"http://yanxuan.nosdn.127.net/fe6f71e8260eabaceb2928f7b15273e9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f27b1c0a4d03da94dfe15a5b44df6f2c.jpg\" _src=\"http://yanxuan.nosdn.127.net/f27b1c0a4d03da94dfe15a5b44df6f2c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cd22744a56ddbad35ac3ac0dfdd68321.jpg\" _src=\"http://yanxuan.nosdn.127.net/cd22744a56ddbad35ac3ac0dfdd68321.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/099db3d23cf16e8315311a278b6dc067.jpg\" _src=\"http://yanxuan.nosdn.127.net/099db3d23cf16e8315311a278b6dc067.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d4dca16739bae1f1e1309acabd35f694.jpg\" _src=\"http://yanxuan.nosdn.127.net/d4dca16739bae1f1e1309acabd35f694.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/389ea34f63fc565c4393ba3ec28c6bb3.jpg\" _src=\"http://yanxuan.nosdn.127.net/389ea34f63fc565c4393ba3ec28c6bb3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/625bf5612aee58c83047656079a1fe18.jpg\" _src=\"http://yanxuan.nosdn.127.net/625bf5612aee58c83047656079a1fe18.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0404ed59fbdd994fe870c33714e42e7a.jpg\" _src=\"http://yanxuan.nosdn.127.net/0404ed59fbdd994fe870c33714e42e7a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e00f36c0d57f5e15b1a2a4986d301f94.jpg\" _src=\"http://yanxuan.nosdn.127.net/e00f36c0d57f5e15b1a2a4986d301f94.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d1125e14271c128a2b39ddf40176ddff.jpg\" _src=\"http://yanxuan.nosdn.127.net/d1125e14271c128a2b39ddf40176ddff.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/dd8afd4c1a2c0a8f82f2c3fde62d12b3.jpg\" _src=\"http://yanxuan.nosdn.127.net/dd8afd4c1a2c0a8f82f2c3fde62d12b3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8355d2dbfa75957a5e7271929687b9af.jpg\" _src=\"http://yanxuan.nosdn.127.net/8355d2dbfa75957a5e7271929687b9af.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '19', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/badbf3d488baf890e5281ece5be64ea3.jpg', 'http://yanxuan.nosdn.127.net/e84f2e3b3d39cfdc8af5c3954a877aae.png', '399.00', '203', '1029010', '0.00', '限时购', '', '0.00', '0', '0', '0', '438.90', null, null, null, null);
  596. INSERT INTO `nideshop_goods` VALUES ('1030005', '1008009', '1030005', '撞色全亚麻四件套', '1001020', '100', '', '纯亚麻面料,透气亲肤', '<p><img src=\"http://yanxuan.nosdn.127.net/a8fedb97484d141058bc355232bc7844.jpg\" _src=\"http://yanxuan.nosdn.127.net/a8fedb97484d141058bc355232bc7844.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/aa5e272a84cf083c296a03faeef32ed6.jpg\" _src=\"http://yanxuan.nosdn.127.net/aa5e272a84cf083c296a03faeef32ed6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8fd2fb566df26754c654534797dfa1bd.jpg\" _src=\"http://yanxuan.nosdn.127.net/8fd2fb566df26754c654534797dfa1bd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/32cf31205dc1b6b42bbd6ca9a2aabaea.jpg\" _src=\"http://yanxuan.nosdn.127.net/32cf31205dc1b6b42bbd6ca9a2aabaea.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e7e0f71348f56dd6a40c8a2478586791.jpg\" _src=\"http://yanxuan.nosdn.127.net/e7e0f71348f56dd6a40c8a2478586791.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/774b470824b4ff4a29f60331e3b20144.jpg\" _src=\"http://yanxuan.nosdn.127.net/774b470824b4ff4a29f60331e3b20144.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cc9898e5d4ac3a6b76e42db121aae0b6.jpg\" _src=\"http://yanxuan.nosdn.127.net/cc9898e5d4ac3a6b76e42db121aae0b6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d692546b25c6928e68a153b82a67a43b.jpg\" _src=\"http://yanxuan.nosdn.127.net/d692546b25c6928e68a153b82a67a43b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/07a3c5a409189b8ee2ab79ca5421ee99.jpg\" _src=\"http://yanxuan.nosdn.127.net/07a3c5a409189b8ee2ab79ca5421ee99.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4bd1645b9e8f3aa94ea6a2041c352397.jpg\" _src=\"http://yanxuan.nosdn.127.net/4bd1645b9e8f3aa94ea6a2041c352397.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/48b88069ce49024e5a7f3ee6165960ac.jpg\" _src=\"http://yanxuan.nosdn.127.net/48b88069ce49024e5a7f3ee6165960ac.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/37a1645307f9d3f5731bb72147859b25.jpg\" _src=\"http://yanxuan.nosdn.127.net/37a1645307f9d3f5731bb72147859b25.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c9ff48188d699f20ddea72558f3ec71e.jpg\" _src=\"http://yanxuan.nosdn.127.net/c9ff48188d699f20ddea72558f3ec71e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/15d1df0e289d03ababe2936c621ace26.jpg\" _src=\"http://yanxuan.nosdn.127.net/15d1df0e289d03ababe2936c621ace26.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4bcb25939826af34300c9b657c025334.jpg\" _src=\"http://yanxuan.nosdn.127.net/4bcb25939826af34300c9b657c025334.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c22a223c9f4efafa68a8f42d3b71d528.jpg\" _src=\"http://yanxuan.nosdn.127.net/c22a223c9f4efafa68a8f42d3b71d528.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/84cf2b201b3e1a5a24b219babb9d9255.jpg\" _src=\"http://yanxuan.nosdn.127.net/84cf2b201b3e1a5a24b219babb9d9255.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/009e66cce8a7a43bd0e97e4f02a16414.jpg\" _src=\"http://yanxuan.nosdn.127.net/009e66cce8a7a43bd0e97e4f02a16414.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d3aa5570b4e01e7e7e01d2d8b4dc4b37.jpg\" _src=\"http://yanxuan.nosdn.127.net/d3aa5570b4e01e7e7e01d2d8b4dc4b37.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4247a2bc0d95f5a664895b7e5553e3ec.jpg\" _src=\"http://yanxuan.nosdn.127.net/4247a2bc0d95f5a664895b7e5553e3ec.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e8e7c456990a99e0d821bc7a4019b46d.jpg\" _src=\"http://yanxuan.nosdn.127.net/e8e7c456990a99e0d821bc7a4019b46d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/af6665f7902523e9b19dc8d05219a94b.jpg\" _src=\"http://yanxuan.nosdn.127.net/af6665f7902523e9b19dc8d05219a94b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/50dae15620254859ce950e83a9de8e19.jpg\" _src=\"http://yanxuan.nosdn.127.net/50dae15620254859ce950e83a9de8e19.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b0d183809d6dd2578e22012fb5f29cb2.jpg\" _src=\"http://yanxuan.nosdn.127.net/b0d183809d6dd2578e22012fb5f29cb2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/534d89cbedac890a4845c09c02e3b97f.jpg\" _src=\"http://yanxuan.nosdn.127.net/534d89cbedac890a4845c09c02e3b97f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/13f685794d72dfa136d4a4ba7f924492.jpg\" _src=\"http://yanxuan.nosdn.127.net/13f685794d72dfa136d4a4ba7f924492.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/13febece3486646420d7de552cc89144.jpg\" _src=\"http://yanxuan.nosdn.127.net/13febece3486646420d7de552cc89144.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3768643d8aee9f44218c85ab78af9caf.jpg\" _src=\"http://yanxuan.nosdn.127.net/3768643d8aee9f44218c85ab78af9caf.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8be7249357104bc94a008641b3105f1f.jpg\" _src=\"http://yanxuan.nosdn.127.net/8be7249357104bc94a008641b3105f1f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/31cd85a05cdeddef127b4c785fe8da16.jpg\" _src=\"http://yanxuan.nosdn.127.net/31cd85a05cdeddef127b4c785fe8da16.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fadf2462c0f06978829530510ba95a6d.jpg\" _src=\"http://yanxuan.nosdn.127.net/fadf2462c0f06978829530510ba95a6d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/da61ca6ac63f21d27a85bc7b31a92b20.jpg\" _src=\"http://yanxuan.nosdn.127.net/da61ca6ac63f21d27a85bc7b31a92b20.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2d768f65baec4b75130dcc7c70daad88.jpg\" _src=\"http://yanxuan.nosdn.127.net/2d768f65baec4b75130dcc7c70daad88.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/50d644bc2cf83575ddd6a71a82fb4d05.jpg\" _src=\"http://yanxuan.nosdn.127.net/50d644bc2cf83575ddd6a71a82fb4d05.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/881e101c4072be27dbb21ecd935fc6b4.jpg\" _src=\"http://yanxuan.nosdn.127.net/881e101c4072be27dbb21ecd935fc6b4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/24472778c90fc48428d84350f31fd1a7.jpg\" _src=\"http://yanxuan.nosdn.127.net/24472778c90fc48428d84350f31fd1a7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e8d1dbd24abc6184905bffeb9859b18d.jpg\" _src=\"http://yanxuan.nosdn.127.net/e8d1dbd24abc6184905bffeb9859b18d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2895c067f4d44a0fc14ee1add035e2dc.jpg\" _src=\"http://yanxuan.nosdn.127.net/2895c067f4d44a0fc14ee1add035e2dc.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/96479876bb249cbe1b65b76bd08e03f6.jpg\" _src=\"http://yanxuan.nosdn.127.net/96479876bb249cbe1b65b76bd08e03f6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c1b15b5c27ad4cdff32ba9eac1d38b2d.jpg\" _src=\"http://yanxuan.nosdn.127.net/c1b15b5c27ad4cdff32ba9eac1d38b2d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4f068dfac9c93c994bd4d7efacec8b70.jpg\" _src=\"http://yanxuan.nosdn.127.net/4f068dfac9c93c994bd4d7efacec8b70.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/13dafff25c676995e6b893a4193d0d9b.jpg\" _src=\"http://yanxuan.nosdn.127.net/13dafff25c676995e6b893a4193d0d9b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4098b4ec10505fc8410dfa81e97a36d3.jpg\" _src=\"http://yanxuan.nosdn.127.net/4098b4ec10505fc8410dfa81e97a36d3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/05a682bc8ceff7e28655691dad62a169.jpg\" _src=\"http://yanxuan.nosdn.127.net/05a682bc8ceff7e28655691dad62a169.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2b19a674dfa17eb6580113bf6e354158.jpg\" _src=\"http://yanxuan.nosdn.127.net/2b19a674dfa17eb6580113bf6e354158.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/95ed5187ef97940225fc2875da7ec342.jpg\" _src=\"http://yanxuan.nosdn.127.net/95ed5187ef97940225fc2875da7ec342.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/dbc6fb5b61197b3c5bbb4cfd2406f423.jpg\" _src=\"http://yanxuan.nosdn.127.net/dbc6fb5b61197b3c5bbb4cfd2406f423.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/311c416209f055bd5fcb85b9fa02802d.jpg\" _src=\"http://yanxuan.nosdn.127.net/311c416209f055bd5fcb85b9fa02802d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cc5f4d85baf345a43a13d5c005756d0b.jpg\" _src=\"http://yanxuan.nosdn.127.net/cc5f4d85baf345a43a13d5c005756d0b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/88c814c6da3ce42657fe36cd4639050b.jpg\" _src=\"http://yanxuan.nosdn.127.net/88c814c6da3ce42657fe36cd4639050b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5f73bb5665bce9b76606919424e94ace.jpg\" _src=\"http://yanxuan.nosdn.127.net/5f73bb5665bce9b76606919424e94ace.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/267bf3ac28457f2640c2adf47e927f65.jpg\" _src=\"http://yanxuan.nosdn.127.net/267bf3ac28457f2640c2adf47e927f65.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/95f30aedac3780793a77217cec971d36.jpg\" _src=\"http://yanxuan.nosdn.127.net/95f30aedac3780793a77217cec971d36.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9c8330b3a20ca3fd799c685fcd2610e3.jpg\" _src=\"http://yanxuan.nosdn.127.net/9c8330b3a20ca3fd799c685fcd2610e3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/156ea9b9174741fccf12d1f84729bea0.jpg\" _src=\"http://yanxuan.nosdn.127.net/156ea9b9174741fccf12d1f84729bea0.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '22', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/ce4b27ecf71705158fd4b78f73cc1cf5.jpg', 'http://yanxuan.nosdn.127.net/86f57132793d3e3c924a7ba529849288.png', '899.00', '1732', '1029015', '0.00', '限时购', '', '0.00', '0', '0', '0', '988.90', null, null, null, null);
  597. INSERT INTO `nideshop_goods` VALUES ('1030006', '1008009', '1030006', '日式纯棉色织AB格四件套', '0', '100', '', '凹凸立体格纹,细节体现质感', '<p><img src=\"http://yanxuan.nosdn.127.net/7b05c0b013ec5ddced70db8f1836a524.jpg\" _src=\"http://yanxuan.nosdn.127.net/7b05c0b013ec5ddced70db8f1836a524.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/19f647d9669222fb0959a678d4e4b7b5.jpg\" _src=\"http://yanxuan.nosdn.127.net/19f647d9669222fb0959a678d4e4b7b5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/84a6fa64c9fe43e6a09ae808a525df8b.jpg\" _src=\"http://yanxuan.nosdn.127.net/84a6fa64c9fe43e6a09ae808a525df8b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b1c6b48a806df620cb939dd442bf9b24.jpg\" _src=\"http://yanxuan.nosdn.127.net/b1c6b48a806df620cb939dd442bf9b24.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3f3e08586b1a2381e76ef343b41fb8bb.jpg\" _src=\"http://yanxuan.nosdn.127.net/3f3e08586b1a2381e76ef343b41fb8bb.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/77b5016f3b1784ecc759ce4b5c5ec878.jpg\" _src=\"http://yanxuan.nosdn.127.net/77b5016f3b1784ecc759ce4b5c5ec878.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/75ab91bbe6ef31861d9266c1d5796bd8.jpg\" _src=\"http://yanxuan.nosdn.127.net/75ab91bbe6ef31861d9266c1d5796bd8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/af0385d4be03564be9b958be9b7c4191.jpg\" _src=\"http://yanxuan.nosdn.127.net/af0385d4be03564be9b958be9b7c4191.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/aac39aa60bdcfad36640dbd0e18ae452.jpg\" _src=\"http://yanxuan.nosdn.127.net/aac39aa60bdcfad36640dbd0e18ae452.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/159807ac6f2397189edbd794423994aa.jpg\" _src=\"http://yanxuan.nosdn.127.net/159807ac6f2397189edbd794423994aa.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/eedc9788b065368d513928bea9650c40.jpg\" _src=\"http://yanxuan.nosdn.127.net/eedc9788b065368d513928bea9650c40.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fa9e8fe3f75f2698d355fbab3128ed01.jpg\" _src=\"http://yanxuan.nosdn.127.net/fa9e8fe3f75f2698d355fbab3128ed01.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2582bc8b922a06800fcfdc274d42411c.jpg\" _src=\"http://yanxuan.nosdn.127.net/2582bc8b922a06800fcfdc274d42411c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fcfa6647d7273f487a3cff61aa948c95.jpg\" _src=\"http://yanxuan.nosdn.127.net/fcfa6647d7273f487a3cff61aa948c95.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5841455f07b63fcd05fba393543f7e87.jpg\" _src=\"http://yanxuan.nosdn.127.net/5841455f07b63fcd05fba393543f7e87.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ed5271f8cdcb33a25b18db8f0372470e.jpg\" _src=\"http://yanxuan.nosdn.127.net/ed5271f8cdcb33a25b18db8f0372470e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/20be5bfe0c05f8bbedaec60167fa0e7a.jpg\" _src=\"http://yanxuan.nosdn.127.net/20be5bfe0c05f8bbedaec60167fa0e7a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7e39f1ffa3a475a9ed61b762b8c25e2a.jpg\" _src=\"http://yanxuan.nosdn.127.net/7e39f1ffa3a475a9ed61b762b8c25e2a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8046850716f5ebb7fcf596dc31914e80.jpg\" _src=\"http://yanxuan.nosdn.127.net/8046850716f5ebb7fcf596dc31914e80.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0d2eafad0609aea932892b5c59decd27.jpg\" _src=\"http://yanxuan.nosdn.127.net/0d2eafad0609aea932892b5c59decd27.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ffe985a36f22902a4145a331e734dd84.jpg\" _src=\"http://yanxuan.nosdn.127.net/ffe985a36f22902a4145a331e734dd84.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/227fbf150c1bbd920c0458b5f2dc3c33.jpg\" _src=\"http://yanxuan.nosdn.127.net/227fbf150c1bbd920c0458b5f2dc3c33.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0398d5e84e61bf044b6694a103ba690d.jpg\" _src=\"http://yanxuan.nosdn.127.net/0398d5e84e61bf044b6694a103ba690d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/615dad0bf78318544a5408339082828a.jpg\" _src=\"http://yanxuan.nosdn.127.net/615dad0bf78318544a5408339082828a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9a05a6367cc1dd5e9dcc372755ec65ca.jpg\" _src=\"http://yanxuan.nosdn.127.net/9a05a6367cc1dd5e9dcc372755ec65ca.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/92682369d59dc519fb4d58fbbb9a23f3.jpg\" _src=\"http://yanxuan.nosdn.127.net/92682369d59dc519fb4d58fbbb9a23f3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d35c10f55941d55870f809ed212a5811.jpg\" _src=\"http://yanxuan.nosdn.127.net/d35c10f55941d55870f809ed212a5811.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f716b0db1b01cd73e0484a7e38fd873d.jpg\" _src=\"http://yanxuan.nosdn.127.net/f716b0db1b01cd73e0484a7e38fd873d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f01467b000ea837c21cd37c6e05049ae.jpg\" _src=\"http://yanxuan.nosdn.127.net/f01467b000ea837c21cd37c6e05049ae.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1b48e5f59ea7027e83bd16eebd3991b0.jpg\" _src=\"http://yanxuan.nosdn.127.net/1b48e5f59ea7027e83bd16eebd3991b0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/291de1e5da8832fc2da48a775c70ad70.jpg\" _src=\"http://yanxuan.nosdn.127.net/291de1e5da8832fc2da48a775c70ad70.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a9e2b594100374d8d3e6e4ed7b5d6b3c.jpg\" _src=\"http://yanxuan.nosdn.127.net/a9e2b594100374d8d3e6e4ed7b5d6b3c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b284b20ce0e3c2e6d3bb7468af21d7e3.jpg\" _src=\"http://yanxuan.nosdn.127.net/b284b20ce0e3c2e6d3bb7468af21d7e3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/70c1ed140868cca37832650061d99e2e.jpg\" _src=\"http://yanxuan.nosdn.127.net/70c1ed140868cca37832650061d99e2e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9e2a42fd68a4c0d9b6608e17e312ff50.jpg\" _src=\"http://yanxuan.nosdn.127.net/9e2a42fd68a4c0d9b6608e17e312ff50.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/98d794a141c1cd21173ee1e920ee2f59.jpg\" _src=\"http://yanxuan.nosdn.127.net/98d794a141c1cd21173ee1e920ee2f59.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d7e8a0d4c32c59d5bb58bfd043d7b0f1.jpg\" _src=\"http://yanxuan.nosdn.127.net/d7e8a0d4c32c59d5bb58bfd043d7b0f1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c96effe484ec0fe3a24b6f50eb4c653f.jpg\" _src=\"http://yanxuan.nosdn.127.net/c96effe484ec0fe3a24b6f50eb4c653f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/46402f7f7b982caa07de61b47c7a39a2.jpg\" _src=\"http://yanxuan.nosdn.127.net/46402f7f7b982caa07de61b47c7a39a2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8d561dde54a84b1f652bf75dea175299.jpg\" _src=\"http://yanxuan.nosdn.127.net/8d561dde54a84b1f652bf75dea175299.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '21', '0', '0', '459.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/a98bd0e18e7fc76bfeb2f8791a8868d4.jpg', 'http://yanxuan.nosdn.127.net/578ffec952eb25ff072d8ea1b676bfd2.png', '329.00', '7', '1029021', '0.00', '限时购', '限时购', '0.00', '0', '203', '0', '361.90', null, null, null, null);
  598. INSERT INTO `nideshop_goods` VALUES ('1033000', '1020003', '1033000', '新生彩棉初衣礼盒(婴童)', '0', '100', '', '来自天然彩棉的礼物', '', '1', '2017-08-30 11:40:11', '2', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/d820f03d67e68071d30c922ea87eb023.png', 'http://yanxuan.nosdn.127.net/9aab9a0bf4fef8fe3dc8c732bc22d4b7.png', '199.00', '13731', '1032000', '0.00', '限时购', '', '0.00', '0', '0', '0', '218.90', null, null, null, null);
  599. INSERT INTO `nideshop_goods` VALUES ('1035006', '1008002', '1035006', '全棉单面割绒浴室地垫', '0', '100', '', '手工制作,纯棉材质,柔软舒适', '<p><img src=\"http://yanxuan.nosdn.127.net/39cba017dbf04371863ec3af894cb79c.jpg\" _src=\"http://yanxuan.nosdn.127.net/39cba017dbf04371863ec3af894cb79c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/727bdb71768265b3c283b2d71ad63d8d.jpg\" _src=\"http://yanxuan.nosdn.127.net/727bdb71768265b3c283b2d71ad63d8d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5b7eb8df6b30b61ff8326a5882bbf411.jpg\" _src=\"http://yanxuan.nosdn.127.net/5b7eb8df6b30b61ff8326a5882bbf411.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5143f756b613c2523954affbdf514a05.jpg\" _src=\"http://yanxuan.nosdn.127.net/5143f756b613c2523954affbdf514a05.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5a6879162b60e2442036c6c5d88275e8.jpg\" _src=\"http://yanxuan.nosdn.127.net/5a6879162b60e2442036c6c5d88275e8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d65d49dfd73f6b44d8e1b971df58ec1c.jpg\" _src=\"http://yanxuan.nosdn.127.net/d65d49dfd73f6b44d8e1b971df58ec1c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/630c9a177eb89c044d4c968745fce915.jpg\" _src=\"http://yanxuan.nosdn.127.net/630c9a177eb89c044d4c968745fce915.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1597a314b6ae69f361f4f1fbc2ed876c.jpg\" _src=\"http://yanxuan.nosdn.127.net/1597a314b6ae69f361f4f1fbc2ed876c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5cfcfff37b305dcc44d9a907377761f1.jpg\" _src=\"http://yanxuan.nosdn.127.net/5cfcfff37b305dcc44d9a907377761f1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/27dd23d01d9d110ebb11c92fa087e208.jpg\" _src=\"http://yanxuan.nosdn.127.net/27dd23d01d9d110ebb11c92fa087e208.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/366f5281836ad5b3a06afe4ace14d2bb.jpg\" _src=\"http://yanxuan.nosdn.127.net/366f5281836ad5b3a06afe4ace14d2bb.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5cdd2229692184db4793f68ca2d1c307.jpg\" _src=\"http://yanxuan.nosdn.127.net/5cdd2229692184db4793f68ca2d1c307.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/999c7854dff1496c2702c510b8c6586d.jpg\" _src=\"http://yanxuan.nosdn.127.net/999c7854dff1496c2702c510b8c6586d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7097f2a9c69c4f337ab9ff961276cf0a.jpg\" _src=\"http://yanxuan.nosdn.127.net/7097f2a9c69c4f337ab9ff961276cf0a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7d6ad8caac9c24f024b9525e492dde1d.jpg\" _src=\"http://yanxuan.nosdn.127.net/7d6ad8caac9c24f024b9525e492dde1d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1005834f8ac736dc7bc5c59cfab0ce01.jpg\" _src=\"http://yanxuan.nosdn.127.net/1005834f8ac736dc7bc5c59cfab0ce01.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/342365052bc031f64050c0d117786de1.jpg\" _src=\"http://yanxuan.nosdn.127.net/342365052bc031f64050c0d117786de1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6bdb057b4b109ad39368d337b26fcef0.jpg\" _src=\"http://yanxuan.nosdn.127.net/6bdb057b4b109ad39368d337b26fcef0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4c764541e44c1bfe9308c4be9ba70eb8.jpg\" _src=\"http://yanxuan.nosdn.127.net/4c764541e44c1bfe9308c4be9ba70eb8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4e4dafc25a731ccf56b1296e9889530d.jpg\" _src=\"http://yanxuan.nosdn.127.net/4e4dafc25a731ccf56b1296e9889530d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0aae3c93d54fd9a25fc0d297e0cf856e.jpg\" _src=\"http://yanxuan.nosdn.127.net/0aae3c93d54fd9a25fc0d297e0cf856e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4d3f4adea81508c83148517b12b3963f.jpg\" _src=\"http://yanxuan.nosdn.127.net/4d3f4adea81508c83148517b12b3963f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a7f792a547c9f534fd4bd00c88fe734c.jpg\" _src=\"http://yanxuan.nosdn.127.net/a7f792a547c9f534fd4bd00c88fe734c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/41541dc15fbb715ed5311d4343516a6e.jpg\" _src=\"http://yanxuan.nosdn.127.net/41541dc15fbb715ed5311d4343516a6e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/267175ffcb24b51250f642b31cadd977.jpg\" _src=\"http://yanxuan.nosdn.127.net/267175ffcb24b51250f642b31cadd977.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '32', '0', '0', '69.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/96b3f9af4a260902e7b8b3100af1da07.jpg', 'http://yanxuan.nosdn.127.net/ee92704f3b8323905b51fc647823e6e5.png', '56.00', '14584', '1034011', '0.00', '限时购', '限时购', '0.00', '0', '203', '0', '61.60', null, null, null, null);
  600. INSERT INTO `nideshop_goods` VALUES ('1036002', '1008008', '1036002', '高山苦荞麦枕', '0', '100', '', '原生苦荞,健康护颈', '<p><img src=\"http://yanxuan.nosdn.127.net/698e2a2252d9d4227f17f9d88a6e87ef.jpg\" _src=\"http://yanxuan.nosdn.127.net/698e2a2252d9d4227f17f9d88a6e87ef.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/38d70ef29b5e883125a27d6607a9ce62.jpg\" _src=\"http://yanxuan.nosdn.127.net/38d70ef29b5e883125a27d6607a9ce62.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c0f7666b8f215007d322b7f7e7267d7c.jpg\" _src=\"http://yanxuan.nosdn.127.net/c0f7666b8f215007d322b7f7e7267d7c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1d7661b99de023bed2ebf360a8f0cb7e.jpg\" _src=\"http://yanxuan.nosdn.127.net/1d7661b99de023bed2ebf360a8f0cb7e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3a1860e8b8cac1f3e5a42bc7de5a8e04.jpg\" _src=\"http://yanxuan.nosdn.127.net/3a1860e8b8cac1f3e5a42bc7de5a8e04.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/eb4e72d283bd58f1b23125dbeef11ef6.jpg\" _src=\"http://yanxuan.nosdn.127.net/eb4e72d283bd58f1b23125dbeef11ef6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9846b6c36e9dc27fc4b18ec3e0177aff.jpg\" _src=\"http://yanxuan.nosdn.127.net/9846b6c36e9dc27fc4b18ec3e0177aff.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9b4e21c0d2fa575dc1636baf71666b1c.jpg\" _src=\"http://yanxuan.nosdn.127.net/9b4e21c0d2fa575dc1636baf71666b1c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9588e23919c7c54998bb5a07b0907eeb.jpg\" _src=\"http://yanxuan.nosdn.127.net/9588e23919c7c54998bb5a07b0907eeb.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c807c41d48efb876244bd41d1dd97ef5.jpg\" _src=\"http://yanxuan.nosdn.127.net/c807c41d48efb876244bd41d1dd97ef5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4b213fc5b21cbf79c39412e6d9b21e7f.jpg\" _src=\"http://yanxuan.nosdn.127.net/4b213fc5b21cbf79c39412e6d9b21e7f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2fba066200fc8ce47a0c7e99b47f97e4.jpg\" _src=\"http://yanxuan.nosdn.127.net/2fba066200fc8ce47a0c7e99b47f97e4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/208af7a63670fc2a438364f2336f2806.jpg\" _src=\"http://yanxuan.nosdn.127.net/208af7a63670fc2a438364f2336f2806.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ab0c3198ec5c1193da9cd5a491bb459d.jpg\" _src=\"http://yanxuan.nosdn.127.net/ab0c3198ec5c1193da9cd5a491bb459d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4c24e52caa847dd17210cc57d243d08c.jpg\" _src=\"http://yanxuan.nosdn.127.net/4c24e52caa847dd17210cc57d243d08c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0371cfdea30a90ef6955e3bcf3f9b6c0.jpg\" _src=\"http://yanxuan.nosdn.127.net/0371cfdea30a90ef6955e3bcf3f9b6c0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8916eff34678bfda4980a231a3b8d09a.jpg\" _src=\"http://yanxuan.nosdn.127.net/8916eff34678bfda4980a231a3b8d09a.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '5', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/0bbe5e8f7a719265ed89ad7fb4b9473c.jpg', 'http://yanxuan.nosdn.127.net/ffd7efe9d5225dff9f36d5110b027caa.png', '99.00', '2723', '1035005', '0.00', '限时购', '', '0.00', '0', '0', '1', '108.90', null, null, null, null);
  601. INSERT INTO `nideshop_goods` VALUES ('1036013', '1008009', '1036013', '全棉针织素色床笠', '0', '100', '', '百隆色纺纱,亲肤舒适,裸睡神器', '<p><img src=\"http://yanxuan.nosdn.127.net/2ea947dc5f93d996b2d9651f07cf4e5a.jpg\" _src=\"http://yanxuan.nosdn.127.net/2ea947dc5f93d996b2d9651f07cf4e5a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/584f94e084559eb5a4e8ba4b0c0d94b8.jpg\" _src=\"http://yanxuan.nosdn.127.net/584f94e084559eb5a4e8ba4b0c0d94b8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bd00b278f6e9ede88a9523f12da21a8d.jpg\" _src=\"http://yanxuan.nosdn.127.net/bd00b278f6e9ede88a9523f12da21a8d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/89a1458cc189b185d42b0fce5ec47786.jpg\" _src=\"http://yanxuan.nosdn.127.net/89a1458cc189b185d42b0fce5ec47786.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e8ca61b4ac2285c6399cf13e0e706122.jpg\" _src=\"http://yanxuan.nosdn.127.net/e8ca61b4ac2285c6399cf13e0e706122.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8a0ef1725c91b35d28fa2aade62474fa.jpg\" _src=\"http://yanxuan.nosdn.127.net/8a0ef1725c91b35d28fa2aade62474fa.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/456dcb6d70990b9175d70ba596f3c407.jpg\" _src=\"http://yanxuan.nosdn.127.net/456dcb6d70990b9175d70ba596f3c407.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e947956bcb3f7a281d75d900e14c1467.jpg\" _src=\"http://yanxuan.nosdn.127.net/e947956bcb3f7a281d75d900e14c1467.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/903adc0d93d873213cb63e2e8131b279.jpg\" _src=\"http://yanxuan.nosdn.127.net/903adc0d93d873213cb63e2e8131b279.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/554f7b2d804375a1d6234dd530afba62.jpg\" _src=\"http://yanxuan.nosdn.127.net/554f7b2d804375a1d6234dd530afba62.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0736125b93c2530567a3da47e51207f1.jpg\" _src=\"http://yanxuan.nosdn.127.net/0736125b93c2530567a3da47e51207f1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d05886366aa27bfdbcab94f1cec3fdf4.jpg\" _src=\"http://yanxuan.nosdn.127.net/d05886366aa27bfdbcab94f1cec3fdf4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a28af88609476e96c154e0724fbe1f5a.jpg\" _src=\"http://yanxuan.nosdn.127.net/a28af88609476e96c154e0724fbe1f5a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c8369453fa28fd4ceb4ad8d07797b8f5.jpg\" _src=\"http://yanxuan.nosdn.127.net/c8369453fa28fd4ceb4ad8d07797b8f5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6b876f252a587a0e96116b346b7f3261.jpg\" _src=\"http://yanxuan.nosdn.127.net/6b876f252a587a0e96116b346b7f3261.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fa33c3d86cb635ae43cb467eceac29ab.jpg\" _src=\"http://yanxuan.nosdn.127.net/fa33c3d86cb635ae43cb467eceac29ab.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ece8b099041cb048b9fef0084e913b3c.jpg\" _src=\"http://yanxuan.nosdn.127.net/ece8b099041cb048b9fef0084e913b3c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4d506d32e1fe346b94bea4a4358ffa62.jpg\" _src=\"http://yanxuan.nosdn.127.net/4d506d32e1fe346b94bea4a4358ffa62.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d45055d253ecac606f8f7a20cc740436.jpg\" _src=\"http://yanxuan.nosdn.127.net/d45055d253ecac606f8f7a20cc740436.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8b409d218695083e52089ab595ec169e.jpg\" _src=\"http://yanxuan.nosdn.127.net/8b409d218695083e52089ab595ec169e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6c2713ccb4655853d0f34e97481742a4.jpg\" _src=\"http://yanxuan.nosdn.127.net/6c2713ccb4655853d0f34e97481742a4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/099b05e20345682d8ccffed299de4036.jpg\" _src=\"http://yanxuan.nosdn.127.net/099b05e20345682d8ccffed299de4036.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/681e72addfa6a5c99c225b6cac80338b.jpg\" _src=\"http://yanxuan.nosdn.127.net/681e72addfa6a5c99c225b6cac80338b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/311a4c606bdebcf4e07bb4069d47d22d.jpg\" _src=\"http://yanxuan.nosdn.127.net/311a4c606bdebcf4e07bb4069d47d22d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d7d70ea6a2a2480717e8d495a78c9f1c.jpg\" _src=\"http://yanxuan.nosdn.127.net/d7d70ea6a2a2480717e8d495a78c9f1c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e746e02d8cf7f32f4f0c3aa42fd3951f.jpg\" _src=\"http://yanxuan.nosdn.127.net/e746e02d8cf7f32f4f0c3aa42fd3951f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/aaa74552f611e799d7912761a76718e0.jpg\" _src=\"http://yanxuan.nosdn.127.net/aaa74552f611e799d7912761a76718e0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/083c5a0f704b115660f5d6f1fe23d617.jpg\" _src=\"http://yanxuan.nosdn.127.net/083c5a0f704b115660f5d6f1fe23d617.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5e4ac92008c116a73048c4607f12eeca.jpg\" _src=\"http://yanxuan.nosdn.127.net/5e4ac92008c116a73048c4607f12eeca.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e833539bb3899ad048186fa2aff42241.jpg\" _src=\"http://yanxuan.nosdn.127.net/e833539bb3899ad048186fa2aff42241.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2289c3881b2d32a9132d684cdd9b4fca.jpg\" _src=\"http://yanxuan.nosdn.127.net/2289c3881b2d32a9132d684cdd9b4fca.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d1f8a657fd8363fcf4a62fa9ab838d61.jpg\" _src=\"http://yanxuan.nosdn.127.net/d1f8a657fd8363fcf4a62fa9ab838d61.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0fbef986dac776654ec8cd23e3cd8bf8.jpg\" _src=\"http://yanxuan.nosdn.127.net/0fbef986dac776654ec8cd23e3cd8bf8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ca3ff84fc05e386fdf3ee789d6fc70e7.jpg\" _src=\"http://yanxuan.nosdn.127.net/ca3ff84fc05e386fdf3ee789d6fc70e7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/80a1a3202fc0104e54bd1fb5b111b448.jpg\" _src=\"http://yanxuan.nosdn.127.net/80a1a3202fc0104e54bd1fb5b111b448.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/071a8ca1a90782d6813f7c125fe04ca9.jpg\" _src=\"http://yanxuan.nosdn.127.net/071a8ca1a90782d6813f7c125fe04ca9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/840a076f6ac26b74b3786cfc3b66e785.jpg\" _src=\"http://yanxuan.nosdn.127.net/840a076f6ac26b74b3786cfc3b66e785.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/923f018943db353459a940a2d3b57b5c.jpg\" _src=\"http://yanxuan.nosdn.127.net/923f018943db353459a940a2d3b57b5c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/360d3db07247ab7e824086d134ca8e83.jpg\" _src=\"http://yanxuan.nosdn.127.net/360d3db07247ab7e824086d134ca8e83.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d28b9978bbf757f926a8f1fec1af4355.jpg\" _src=\"http://yanxuan.nosdn.127.net/d28b9978bbf757f926a8f1fec1af4355.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9a8d4554060bdbcb99c6b910bca6de73.jpg\" _src=\"http://yanxuan.nosdn.127.net/9a8d4554060bdbcb99c6b910bca6de73.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/dbc5931307c3dabab82f4b6314064097.jpg\" _src=\"http://yanxuan.nosdn.127.net/dbc5931307c3dabab82f4b6314064097.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0ed409573b7775e6a4aa0d11ae2bbe02.jpg\" _src=\"http://yanxuan.nosdn.127.net/0ed409573b7775e6a4aa0d11ae2bbe02.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6e4653f2d0dcf16a6e9fba2364074df0.jpg\" _src=\"http://yanxuan.nosdn.127.net/6e4653f2d0dcf16a6e9fba2364074df0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b27de84243cc25f752b3b7e955b0177d.jpg\" _src=\"http://yanxuan.nosdn.127.net/b27de84243cc25f752b3b7e955b0177d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8ddc46378605add71e99e51fdaf83db5.jpg\" _src=\"http://yanxuan.nosdn.127.net/8ddc46378605add71e99e51fdaf83db5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e402495d57f4934e7224948ac3d956cc.jpg\" _src=\"http://yanxuan.nosdn.127.net/e402495d57f4934e7224948ac3d956cc.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6cdded8ed37708bf2a817f05efccbec0.jpg\" _src=\"http://yanxuan.nosdn.127.net/6cdded8ed37708bf2a817f05efccbec0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/56ad5ff1c7f6c686739961df64abef75.jpg\" _src=\"http://yanxuan.nosdn.127.net/56ad5ff1c7f6c686739961df64abef75.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7508fe30e5bd5d46c7dcd95b059616cf.jpg\" _src=\"http://yanxuan.nosdn.127.net/7508fe30e5bd5d46c7dcd95b059616cf.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/760c798a64bd06d50a769935ba7cc59a.jpg\" _src=\"http://yanxuan.nosdn.127.net/760c798a64bd06d50a769935ba7cc59a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/621d6bf8f4938f18b585d8418f592b6e.jpg\" _src=\"http://yanxuan.nosdn.127.net/621d6bf8f4938f18b585d8418f592b6e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8147afb283cb461062a47c98ec6e663b.jpg\" _src=\"http://yanxuan.nosdn.127.net/8147afb283cb461062a47c98ec6e663b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/49a679fc021af27dc631702b58893bd8.jpg\" _src=\"http://yanxuan.nosdn.127.net/49a679fc021af27dc631702b58893bd8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cc9c61af723770deb3796bdc4d1c7fd0.jpg\" _src=\"http://yanxuan.nosdn.127.net/cc9c61af723770deb3796bdc4d1c7fd0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/09e9e3ee2729bd7b1525db50ef15d978.jpg\" _src=\"http://yanxuan.nosdn.127.net/09e9e3ee2729bd7b1525db50ef15d978.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f77aaed5876f0b974834aaf0e0da96fa.jpg\" _src=\"http://yanxuan.nosdn.127.net/f77aaed5876f0b974834aaf0e0da96fa.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b323f96fabccf05c8f3ddd3537790cb5.jpg\" _src=\"http://yanxuan.nosdn.127.net/b323f96fabccf05c8f3ddd3537790cb5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a23566fd52f0c4cfe83af728aa66a014.jpg\" _src=\"http://yanxuan.nosdn.127.net/a23566fd52f0c4cfe83af728aa66a014.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0c4bbac4f263a5dc10fd3c66f701985c.jpg\" _src=\"http://yanxuan.nosdn.127.net/0c4bbac4f263a5dc10fd3c66f701985c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f40140d230db392fe51306614945713f.jpg\" _src=\"http://yanxuan.nosdn.127.net/f40140d230db392fe51306614945713f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0b9c12121bda764443a1933e533a4445.jpg\" _src=\"http://yanxuan.nosdn.127.net/0b9c12121bda764443a1933e533a4445.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/632a48034a7c29e15a1e6c70014e3964.jpg\" _src=\"http://yanxuan.nosdn.127.net/632a48034a7c29e15a1e6c70014e3964.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '27', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/21b899b9a57fcf11e5ee29041601b9aa.jpg', 'http://yanxuan.nosdn.127.net/da1bc2c10f7b2e53f2466bd23953b982.png', '109.00', '1420', '1035028', '0.00', '限时购', '', '0.00', '0', '0', '0', '119.90', null, null, null, null);
  602. INSERT INTO `nideshop_goods` VALUES ('1036016', '1008009', '1036016', '日式色织水洗棉床笠', '0', '100', '', '色织水洗工艺,亲肤柔软', '<p><img src=\"http://yanxuan.nosdn.127.net/27aa5bc8460115ccb194f7f6878e68bc.jpg\" _src=\"http://yanxuan.nosdn.127.net/27aa5bc8460115ccb194f7f6878e68bc.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/765f188e5a348b9309fb6925c7b21aea.jpg\" _src=\"http://yanxuan.nosdn.127.net/765f188e5a348b9309fb6925c7b21aea.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/43945809af824c2be9ee6fa77ffa7789.jpg\" _src=\"http://yanxuan.nosdn.127.net/43945809af824c2be9ee6fa77ffa7789.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2a95d653097cb9349a4a4c994dbec535.jpg\" _src=\"http://yanxuan.nosdn.127.net/2a95d653097cb9349a4a4c994dbec535.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/38e7c1373521ff55c3c976b2c7bfe149.jpg\" _src=\"http://yanxuan.nosdn.127.net/38e7c1373521ff55c3c976b2c7bfe149.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4407d34700a2c1fe874280344ba538ae.jpg\" _src=\"http://yanxuan.nosdn.127.net/4407d34700a2c1fe874280344ba538ae.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/461cdf2416cea7981df8043dc5ef0f0c.jpg\" _src=\"http://yanxuan.nosdn.127.net/461cdf2416cea7981df8043dc5ef0f0c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/eb17feeda18a8852a0a9e52631ae8194.jpg\" _src=\"http://yanxuan.nosdn.127.net/eb17feeda18a8852a0a9e52631ae8194.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0f4e1a21b84a69bf745b11d331cdfa0d.jpg\" _src=\"http://yanxuan.nosdn.127.net/0f4e1a21b84a69bf745b11d331cdfa0d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a12d561d7d8901f714a6e7748e1c5615.jpg\" _src=\"http://yanxuan.nosdn.127.net/a12d561d7d8901f714a6e7748e1c5615.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/99bf6cdd7bb5518e60dcd6f5e7621f6f.jpg\" _src=\"http://yanxuan.nosdn.127.net/99bf6cdd7bb5518e60dcd6f5e7621f6f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/66acc9ba0870f0bbfac7daf0f247ca8b.jpg\" _src=\"http://yanxuan.nosdn.127.net/66acc9ba0870f0bbfac7daf0f247ca8b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7de61864c4f3e580efe49bea1677b2f9.jpg\" _src=\"http://yanxuan.nosdn.127.net/7de61864c4f3e580efe49bea1677b2f9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a0e3cb8406e04b802324deb5994f7bb8.jpg\" _src=\"http://yanxuan.nosdn.127.net/a0e3cb8406e04b802324deb5994f7bb8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cfcbc803bcd22c52179af79458e6ab74.jpg\" _src=\"http://yanxuan.nosdn.127.net/cfcbc803bcd22c52179af79458e6ab74.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c6378dfc799bf4348bdf591878b8874b.jpg\" _src=\"http://yanxuan.nosdn.127.net/c6378dfc799bf4348bdf591878b8874b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/79dfe0e605da000837104ca59bcacd70.jpg\" _src=\"http://yanxuan.nosdn.127.net/79dfe0e605da000837104ca59bcacd70.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e5cddd147a17cd8e0ca3f1c344799150.jpg\" _src=\"http://yanxuan.nosdn.127.net/e5cddd147a17cd8e0ca3f1c344799150.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/75c4dd15612240676e8745947ba919b4.jpg\" _src=\"http://yanxuan.nosdn.127.net/75c4dd15612240676e8745947ba919b4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7da0b604d50d515c9cca36882ac14f1a.jpg\" _src=\"http://yanxuan.nosdn.127.net/7da0b604d50d515c9cca36882ac14f1a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cf904edee30b5146bdaa9702e10220fe.jpg\" _src=\"http://yanxuan.nosdn.127.net/cf904edee30b5146bdaa9702e10220fe.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/01aefba507ae7eec7227c4198a66403b.jpg\" _src=\"http://yanxuan.nosdn.127.net/01aefba507ae7eec7227c4198a66403b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/df6e40b4b102add68cf411c5813662ed.jpg\" _src=\"http://yanxuan.nosdn.127.net/df6e40b4b102add68cf411c5813662ed.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d62ed698a238fc51141e4814e4aa36f6.jpg\" _src=\"http://yanxuan.nosdn.127.net/d62ed698a238fc51141e4814e4aa36f6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3c76b521fd6adde54dbb435245f6870d.jpg\" _src=\"http://yanxuan.nosdn.127.net/3c76b521fd6adde54dbb435245f6870d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ca3f82155bca6258a3e8ce11f6057b78.jpg\" _src=\"http://yanxuan.nosdn.127.net/ca3f82155bca6258a3e8ce11f6057b78.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/436c43a0feedb51240f9c88bc0816733.jpg\" _src=\"http://yanxuan.nosdn.127.net/436c43a0feedb51240f9c88bc0816733.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/41481ad182555bdf6b9c2091278414f7.jpg\" _src=\"http://yanxuan.nosdn.127.net/41481ad182555bdf6b9c2091278414f7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d7546a5f6ef3158ff9b339252ff78696.jpg\" _src=\"http://yanxuan.nosdn.127.net/d7546a5f6ef3158ff9b339252ff78696.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7ecb09d1c8ced8b066dce901e51ee8cf.jpg\" _src=\"http://yanxuan.nosdn.127.net/7ecb09d1c8ced8b066dce901e51ee8cf.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e403b8fb0f2bb6064412a1980c723d3e.jpg\" _src=\"http://yanxuan.nosdn.127.net/e403b8fb0f2bb6064412a1980c723d3e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/54953bd9dd44742c5ad576b17582a703.jpg\" _src=\"http://yanxuan.nosdn.127.net/54953bd9dd44742c5ad576b17582a703.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cccb1ab3d945b7e24aed1dfbf42b9676.jpg\" _src=\"http://yanxuan.nosdn.127.net/cccb1ab3d945b7e24aed1dfbf42b9676.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fe819702b2250071f0a0071687c7389a.jpg\" _src=\"http://yanxuan.nosdn.127.net/fe819702b2250071f0a0071687c7389a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/eae0f463b127c7309bfdc13a45e48ff2.jpg\" _src=\"http://yanxuan.nosdn.127.net/eae0f463b127c7309bfdc13a45e48ff2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/82e69da4363fc4404bf76b4f409343e8.jpg\" _src=\"http://yanxuan.nosdn.127.net/82e69da4363fc4404bf76b4f409343e8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/22d0e5472c227bdc30f0ad0d9b35e8af.jpg\" _src=\"http://yanxuan.nosdn.127.net/22d0e5472c227bdc30f0ad0d9b35e8af.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/99957f03aa9251a8e59a7ae667dc479c.jpg\" _src=\"http://yanxuan.nosdn.127.net/99957f03aa9251a8e59a7ae667dc479c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0433876cad19a06ea91bbc7608d47fee.jpg\" _src=\"http://yanxuan.nosdn.127.net/0433876cad19a06ea91bbc7608d47fee.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a965570bf77472bfcec5f14680edd55d.jpg\" _src=\"http://yanxuan.nosdn.127.net/a965570bf77472bfcec5f14680edd55d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/99d89cbd0b23b522e5070039889e7a28.jpg\" _src=\"http://yanxuan.nosdn.127.net/99d89cbd0b23b522e5070039889e7a28.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fb81ad0b1fc1cec89cc2c28bfde6d46d.jpg\" _src=\"http://yanxuan.nosdn.127.net/fb81ad0b1fc1cec89cc2c28bfde6d46d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cd2acab71c610d144464defb9e009af8.jpg\" _src=\"http://yanxuan.nosdn.127.net/cd2acab71c610d144464defb9e009af8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/669cda2c9c42fdb0a72c74ea2da71d0c.jpg\" _src=\"http://yanxuan.nosdn.127.net/669cda2c9c42fdb0a72c74ea2da71d0c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/18090d25c37e360ac4b1410daf14fb2a.jpg\" _src=\"http://yanxuan.nosdn.127.net/18090d25c37e360ac4b1410daf14fb2a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6eee9afdba088f358eb96e8901ef6ad3.jpg\" _src=\"http://yanxuan.nosdn.127.net/6eee9afdba088f358eb96e8901ef6ad3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ace611f1dcb46256611b3485f820cf51.jpg\" _src=\"http://yanxuan.nosdn.127.net/ace611f1dcb46256611b3485f820cf51.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/eacee782799659dcab997fedfb9ef286.jpg\" _src=\"http://yanxuan.nosdn.127.net/eacee782799659dcab997fedfb9ef286.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4f26fa1d434ecc7eef863e9708828b79.jpg\" _src=\"http://yanxuan.nosdn.127.net/4f26fa1d434ecc7eef863e9708828b79.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2f5772eb4931b6d74b3147716f008dd0.jpg\" _src=\"http://yanxuan.nosdn.127.net/2f5772eb4931b6d74b3147716f008dd0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f6d176dad0dccbe141aad82a7014eb0e.jpg\" _src=\"http://yanxuan.nosdn.127.net/f6d176dad0dccbe141aad82a7014eb0e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/edb8b0859327503c7df8b24a544bc2b8.jpg\" _src=\"http://yanxuan.nosdn.127.net/edb8b0859327503c7df8b24a544bc2b8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3efc7698b3ebc19aabb61ab061a1e80e.jpg\" _src=\"http://yanxuan.nosdn.127.net/3efc7698b3ebc19aabb61ab061a1e80e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/52735272d754f74beb3965970cc76b32.jpg\" _src=\"http://yanxuan.nosdn.127.net/52735272d754f74beb3965970cc76b32.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8904e0e64dea985fbd99cbeff1a83db3.jpg\" _src=\"http://yanxuan.nosdn.127.net/8904e0e64dea985fbd99cbeff1a83db3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/29b1a16a684be99b30e3f99a5985f681.jpg\" _src=\"http://yanxuan.nosdn.127.net/29b1a16a684be99b30e3f99a5985f681.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ef9f6230b76bef57703fac85f69efa0c.jpg\" _src=\"http://yanxuan.nosdn.127.net/ef9f6230b76bef57703fac85f69efa0c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0f5bdb37e1abaabb8c2234a631b04aed.jpg\" _src=\"http://yanxuan.nosdn.127.net/0f5bdb37e1abaabb8c2234a631b04aed.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/31a47d47d24d219a24bdac55eda9b466.jpg\" _src=\"http://yanxuan.nosdn.127.net/31a47d47d24d219a24bdac55eda9b466.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/057140b9ba1541ee97775cfdf5f418db.jpg\" _src=\"http://yanxuan.nosdn.127.net/057140b9ba1541ee97775cfdf5f418db.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8329134fe549244755fe13aba2571712.jpg\" _src=\"http://yanxuan.nosdn.127.net/8329134fe549244755fe13aba2571712.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '28', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/6fa3863e4482668ed76afa9839e1032e.jpg', 'http://yanxuan.nosdn.127.net/513d08057c69fdb7d19cc810e976118d.png', '109.00', '983', '1035048', '0.00', '限时购', '', '0.00', '0', '0', '0', '119.90', null, null, null, null);
  603. INSERT INTO `nideshop_goods` VALUES ('1037011', '1008008', '1037011', '安睡慢回弹记忆绵床垫', '0', '100', '', '5cm记忆绵的亲密包裹', '<p><img src=\"http://yanxuan.nosdn.127.net/0de1b826d70069e199b1a7bb0a9dcf20.jpg\" _src=\"http://yanxuan.nosdn.127.net/0de1b826d70069e199b1a7bb0a9dcf20.jpg\"/><br/></p><p><img src=\"http://yanxuan.nosdn.127.net/cc1f1a0ad96a8ace2bcdf52e660e59a6.jpg\" _src=\"http://yanxuan.nosdn.127.net/cc1f1a0ad96a8ace2bcdf52e660e59a6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/39beecbe6b2f7565cc42f50ab9e9bd06.jpg\" _src=\"http://yanxuan.nosdn.127.net/39beecbe6b2f7565cc42f50ab9e9bd06.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/aa64cb95f94066a4de15083fe741bae4.jpg\" _src=\"http://yanxuan.nosdn.127.net/aa64cb95f94066a4de15083fe741bae4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4fc7bbf24ca3aa7c7991dcdc27f64f26.jpg\" _src=\"http://yanxuan.nosdn.127.net/4fc7bbf24ca3aa7c7991dcdc27f64f26.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b1f254d67dff28081aa22e9c386c7022.jpg\" _src=\"http://yanxuan.nosdn.127.net/b1f254d67dff28081aa22e9c386c7022.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1f1827ad687130c3d1b345b3e8c3e8e6.jpg\" _src=\"http://yanxuan.nosdn.127.net/1f1827ad687130c3d1b345b3e8c3e8e6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b76807d7bc32a4b71e68a71094a9a934.jpg\" _src=\"http://yanxuan.nosdn.127.net/b76807d7bc32a4b71e68a71094a9a934.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ec78cb8ba4a08e58093b81d85cac54f4.jpg\" _src=\"http://yanxuan.nosdn.127.net/ec78cb8ba4a08e58093b81d85cac54f4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8b2ed3ac4084c4608ea951311dfa14e5.jpg\" _src=\"http://yanxuan.nosdn.127.net/8b2ed3ac4084c4608ea951311dfa14e5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b9bf6fd8849795c9f3c5912898aa6493.jpg\" _src=\"http://yanxuan.nosdn.127.net/b9bf6fd8849795c9f3c5912898aa6493.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ed0c57dfb615842011fc5b175dfe1059.jpg\" _src=\"http://yanxuan.nosdn.127.net/ed0c57dfb615842011fc5b175dfe1059.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ae2662ce9e409ef7f3adda13e5516d77.jpg\" _src=\"http://yanxuan.nosdn.127.net/ae2662ce9e409ef7f3adda13e5516d77.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ede81499ac87a2692e25f1942bdc9580.jpg\" _src=\"http://yanxuan.nosdn.127.net/ede81499ac87a2692e25f1942bdc9580.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d471b9a35f873531627c1dd165de3709.jpg\" _src=\"http://yanxuan.nosdn.127.net/d471b9a35f873531627c1dd165de3709.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b19d147f0edf0bcfd270c0aca6f138db.jpg\" _src=\"http://yanxuan.nosdn.127.net/b19d147f0edf0bcfd270c0aca6f138db.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/24dcb664f1f38694a5432378255aa36a.jpg\" _src=\"http://yanxuan.nosdn.127.net/24dcb664f1f38694a5432378255aa36a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/42502a8806348e62676f5d5778cfe063.jpg\" _src=\"http://yanxuan.nosdn.127.net/42502a8806348e62676f5d5778cfe063.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0fe544ba36341e6a4f4d233ce7e713eb.jpg\" _src=\"http://yanxuan.nosdn.127.net/0fe544ba36341e6a4f4d233ce7e713eb.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/61ff53f6e9f3d9e93524caaf90bfcb85.jpg\" _src=\"http://yanxuan.nosdn.127.net/61ff53f6e9f3d9e93524caaf90bfcb85.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8d8bb21d91874cd56829ccf205923897.jpg\" _src=\"http://yanxuan.nosdn.127.net/8d8bb21d91874cd56829ccf205923897.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/daffb6e380594223f793e944c3f4b077.jpg\" _src=\"http://yanxuan.nosdn.127.net/daffb6e380594223f793e944c3f4b077.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/99b0f7110b67307ab02f18673a460cd4.jpg\" _src=\"http://yanxuan.nosdn.127.net/99b0f7110b67307ab02f18673a460cd4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/643a55a8bb471698f6b69ce253501fc8.jpg\" _src=\"http://yanxuan.nosdn.127.net/643a55a8bb471698f6b69ce253501fc8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6041d02391c93451d84601d82ed4dbe3.jpg\" _src=\"http://yanxuan.nosdn.127.net/6041d02391c93451d84601d82ed4dbe3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f0b528dbea6de5f0169dda6564f7055b.jpg\" _src=\"http://yanxuan.nosdn.127.net/f0b528dbea6de5f0169dda6564f7055b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8ecbd17e370b03446b93dc9c61a32fab.jpg\" _src=\"http://yanxuan.nosdn.127.net/8ecbd17e370b03446b93dc9c61a32fab.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/17150b49d688da488535d894f5182ab3.jpg\" _src=\"http://yanxuan.nosdn.127.net/17150b49d688da488535d894f5182ab3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/22b05dc005df61f5c9363b54b1b7edea.jpg\" _src=\"http://yanxuan.nosdn.127.net/22b05dc005df61f5c9363b54b1b7edea.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/896a68ff3ae8ae686421e09a58e815e0.jpg\" _src=\"http://yanxuan.nosdn.127.net/896a68ff3ae8ae686421e09a58e815e0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8560c3a42081a5c125ab49038665a29a.jpg\" _src=\"http://yanxuan.nosdn.127.net/8560c3a42081a5c125ab49038665a29a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/08a377dba39be4540864fb049a580ea3.jpg\" _src=\"http://yanxuan.nosdn.127.net/08a377dba39be4540864fb049a580ea3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bb70fc1822b9e08875bd11c183395589.jpg\" _src=\"http://yanxuan.nosdn.127.net/bb70fc1822b9e08875bd11c183395589.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/88d0f503ea6c5e17bb71448846aa258b.jpg\" _src=\"http://yanxuan.nosdn.127.net/88d0f503ea6c5e17bb71448846aa258b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/221dad708312cb8ff54306df88e6d976.jpg\" _src=\"http://yanxuan.nosdn.127.net/221dad708312cb8ff54306df88e6d976.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/535b321ee2a870683fc37f5ff3a5893f.jpg\" _src=\"http://yanxuan.nosdn.127.net/535b321ee2a870683fc37f5ff3a5893f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/090125c757d1290c257ab28f285d3e41.jpg\" _src=\"http://yanxuan.nosdn.127.net/090125c757d1290c257ab28f285d3e41.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/db6e6c73b22e27c06b685de83f8ce4d1.jpg\" _src=\"http://yanxuan.nosdn.127.net/db6e6c73b22e27c06b685de83f8ce4d1.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '22', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/05645050f7c8df7b4a87994c3fd72475.jpg', 'http://yanxuan.nosdn.127.net/a03ea6f4509439acdafcb7ceba1debe0.png', '599.00', '1179', '1059046', '0.00', '限时购', '', '0.00', '0', '0', '1', '658.90', null, null, null, null);
  604. INSERT INTO `nideshop_goods` VALUES ('1037012', '1008008', '1037012', '圆形护颈苦荞麦枕', '0', '100', '', '高山苦荞填充,放松颈椎', '<p><img src=\"http://yanxuan.nosdn.127.net/92e065fd564833df8d30ee998a6309cb.jpg\" _src=\"http://yanxuan.nosdn.127.net/92e065fd564833df8d30ee998a6309cb.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2f94db52407c73ef4c3c2ed4ab8c87e7.jpg\" _src=\"http://yanxuan.nosdn.127.net/2f94db52407c73ef4c3c2ed4ab8c87e7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4dddb8eedae26269e0ae1cc114eeee50.jpg\" _src=\"http://yanxuan.nosdn.127.net/4dddb8eedae26269e0ae1cc114eeee50.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d67592cccde77ce175b196fb51534880.jpg\" _src=\"http://yanxuan.nosdn.127.net/d67592cccde77ce175b196fb51534880.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/812a929e1e7db26c1902a5fefa25a7b8.jpg\" _src=\"http://yanxuan.nosdn.127.net/812a929e1e7db26c1902a5fefa25a7b8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3c1e00a872c146ebcffd1aa42d758496.jpg\" _src=\"http://yanxuan.nosdn.127.net/3c1e00a872c146ebcffd1aa42d758496.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5441c3860c5ff8b3766ba2b0e014213f.jpg\" _src=\"http://yanxuan.nosdn.127.net/5441c3860c5ff8b3766ba2b0e014213f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d0a02aee1dc5f8a280eee678ab2d7a45.jpg\" _src=\"http://yanxuan.nosdn.127.net/d0a02aee1dc5f8a280eee678ab2d7a45.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e2a21d3a75d4ec50431ddddd3298ae0b.jpg\" _src=\"http://yanxuan.nosdn.127.net/e2a21d3a75d4ec50431ddddd3298ae0b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5404f9d679b0d2ca0fd7aafffec1d3c0.jpg\" _src=\"http://yanxuan.nosdn.127.net/5404f9d679b0d2ca0fd7aafffec1d3c0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b471c9b0bfcfa0c451eab494ff0278c3.jpg\" _src=\"http://yanxuan.nosdn.127.net/b471c9b0bfcfa0c451eab494ff0278c3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/33c95fe74862820264e02ff290a78272.jpg\" _src=\"http://yanxuan.nosdn.127.net/33c95fe74862820264e02ff290a78272.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5f31eb1f1b684de70bc70e8a86a4bc11.jpg\" _src=\"http://yanxuan.nosdn.127.net/5f31eb1f1b684de70bc70e8a86a4bc11.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/75c423d78d9c56af60958833afeb4452.jpg\" _src=\"http://yanxuan.nosdn.127.net/75c423d78d9c56af60958833afeb4452.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b402caf41e160e62b61237c0a10abe8e.jpg\" _src=\"http://yanxuan.nosdn.127.net/b402caf41e160e62b61237c0a10abe8e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5c83d40738f5a03623bd0f8a24949bb4.jpg\" _src=\"http://yanxuan.nosdn.127.net/5c83d40738f5a03623bd0f8a24949bb4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/dbdff4265463c930fb06b28767261926.jpg\" _src=\"http://yanxuan.nosdn.127.net/dbdff4265463c930fb06b28767261926.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/43355138eb32b8cb6b950d51ba38db5c.jpg\" _src=\"http://yanxuan.nosdn.127.net/43355138eb32b8cb6b950d51ba38db5c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1fe3c46e76126d6dc9872c9f0d561e9f.jpg\" _src=\"http://yanxuan.nosdn.127.net/1fe3c46e76126d6dc9872c9f0d561e9f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fea1a7969b68ce647e655398e2beef09.jpg\" _src=\"http://yanxuan.nosdn.127.net/fea1a7969b68ce647e655398e2beef09.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e48409e525be320f98fc14aa40ed3a9b.jpg\" _src=\"http://yanxuan.nosdn.127.net/e48409e525be320f98fc14aa40ed3a9b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8512ad8f5d680271651dbc69d7d8a16a.jpg\" _src=\"http://yanxuan.nosdn.127.net/8512ad8f5d680271651dbc69d7d8a16a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8b3e54a7360dd849f3c098fc2cc5ae12.jpg\" _src=\"http://yanxuan.nosdn.127.net/8b3e54a7360dd849f3c098fc2cc5ae12.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3b7c8648d1cf1c68bfb75293af7fd0c3.jpg\" _src=\"http://yanxuan.nosdn.127.net/3b7c8648d1cf1c68bfb75293af7fd0c3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2db0d7c0f0151662e5a06078efec21c1.jpg\" _src=\"http://yanxuan.nosdn.127.net/2db0d7c0f0151662e5a06078efec21c1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7fd50666a97d4cd2cf9c6f32a053b8ae.jpg\" _src=\"http://yanxuan.nosdn.127.net/7fd50666a97d4cd2cf9c6f32a053b8ae.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/806a975d21c93917a1e406cd3de8e7f0.jpg\" _src=\"http://yanxuan.nosdn.127.net/806a975d21c93917a1e406cd3de8e7f0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/32ec426227e7208f93d47c844684e69d.jpg\" _src=\"http://yanxuan.nosdn.127.net/32ec426227e7208f93d47c844684e69d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8c472f321af2b527593aa96259944780.jpg\" _src=\"http://yanxuan.nosdn.127.net/8c472f321af2b527593aa96259944780.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/86f9773e41872a4398f4118fe0869a3a.jpg\" _src=\"http://yanxuan.nosdn.127.net/86f9773e41872a4398f4118fe0869a3a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c629d3761a71fdfca80dfe125b4783cb.jpg\" _src=\"http://yanxuan.nosdn.127.net/c629d3761a71fdfca80dfe125b4783cb.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/69c8d2d299468bf485e1b62c3121be6b.jpg\" _src=\"http://yanxuan.nosdn.127.net/69c8d2d299468bf485e1b62c3121be6b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/038b59945443c481b96936c7a3ca3f81.jpg\" _src=\"http://yanxuan.nosdn.127.net/038b59945443c481b96936c7a3ca3f81.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2802906b8b2c3ff849b1b9ed1469d37e.jpg\" _src=\"http://yanxuan.nosdn.127.net/2802906b8b2c3ff849b1b9ed1469d37e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/de2b9357eed35a554f3fe3de1fe2d3dd.jpg\" _src=\"http://yanxuan.nosdn.127.net/de2b9357eed35a554f3fe3de1fe2d3dd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fc35132c0b41f1ee8c9ec5277ef55024.jpg\" _src=\"http://yanxuan.nosdn.127.net/fc35132c0b41f1ee8c9ec5277ef55024.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/56869d9a1d818d4836bc8e41a03359d1.jpg\" _src=\"http://yanxuan.nosdn.127.net/56869d9a1d818d4836bc8e41a03359d1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/89fc80f8e57ec8c7eb89657eb7febcdb.jpg\" _src=\"http://yanxuan.nosdn.127.net/89fc80f8e57ec8c7eb89657eb7febcdb.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '6', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/72a0c599c112ee262c2be735ba0eb756.jpg', 'http://yanxuan.nosdn.127.net/ffd2c91c7cf9c6e0f630595f7679b95d.png', '69.00', '3942', '1036028', '0.00', '限时购', '', '0.00', '0', '0', '0', '75.90', null, null, null, null);
  605. INSERT INTO `nideshop_goods` VALUES ('1038004', '1005007', '1038004', '100年传世珐琅锅 马卡龙系列', '0', '100', '', '均匀导热,释放美味', '', '1', '2017-08-30 11:40:11', '2', '0', '0', '0.00', '0.00', '0', '只', 'http://yanxuan.nosdn.127.net/293018c87f7a9e8cfe2b3e62ff7f4216.jpg', 'http://yanxuan.nosdn.127.net/4d3d3eaeb872860539d7faa59f9f84e9.png', '359.00', '3852', '1037022', '0.00', '限时购', '', '0.00', '0', '0', '0', '394.90', null, null, null, null);
  606. INSERT INTO `nideshop_goods` VALUES ('1039051', '1008002', '1039051', '多功能午睡枕', '1001000', '100', '', '放松自在的午后时光', '<p><img src=\"http://yanxuan.nosdn.127.net/aba5fac220a511eb859ad4834fd7c0e1.jpg\" _src=\"http://yanxuan.nosdn.127.net/aba5fac220a511eb859ad4834fd7c0e1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/37c7411fe03ac22b8b924190a5c6f483.jpg\" _src=\"http://yanxuan.nosdn.127.net/37c7411fe03ac22b8b924190a5c6f483.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/88e313d81b848936d673edebc823f617.jpg\" _src=\"http://yanxuan.nosdn.127.net/88e313d81b848936d673edebc823f617.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/efddbb9e7105a72fb40f168813764297.jpg\" _src=\"http://yanxuan.nosdn.127.net/efddbb9e7105a72fb40f168813764297.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4830e1927e472f45940a92acf3e04331.jpg\" _src=\"http://yanxuan.nosdn.127.net/4830e1927e472f45940a92acf3e04331.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/10b2f2989c7239bcea42be91d1826fc7.jpg\" _src=\"http://yanxuan.nosdn.127.net/10b2f2989c7239bcea42be91d1826fc7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d3d19a5320eb179b3752458f15f1a068.jpg\" _src=\"http://yanxuan.nosdn.127.net/d3d19a5320eb179b3752458f15f1a068.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/97a9d81d01cbc6c8bf57e8b308de1537.jpg\" _src=\"http://yanxuan.nosdn.127.net/97a9d81d01cbc6c8bf57e8b308de1537.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/500497dcf877fbf29548ef7eae7766fa.jpg\" _src=\"http://yanxuan.nosdn.127.net/500497dcf877fbf29548ef7eae7766fa.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/92f6105f284bdd94aa4b6495a7d43994.jpg\" _src=\"http://yanxuan.nosdn.127.net/92f6105f284bdd94aa4b6495a7d43994.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/60161ebc38b0b8c8ca9de8a0165843bb.jpg\" _src=\"http://yanxuan.nosdn.127.net/60161ebc38b0b8c8ca9de8a0165843bb.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1ce9817e2d4415c5789028c57c593450.jpg\" _src=\"http://yanxuan.nosdn.127.net/1ce9817e2d4415c5789028c57c593450.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4e3dc4f7c9dcd228a94cc4ffa6cea1be.jpg\" _src=\"http://yanxuan.nosdn.127.net/4e3dc4f7c9dcd228a94cc4ffa6cea1be.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/89360198abf4bbb4c108bfe1068d83b3.jpg\" _src=\"http://yanxuan.nosdn.127.net/89360198abf4bbb4c108bfe1068d83b3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9f40b5ba3618e61e80ad8f175b3da866.jpg\" _src=\"http://yanxuan.nosdn.127.net/9f40b5ba3618e61e80ad8f175b3da866.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ad590b8d9cb20c046d0d8e68ea3b0dc4.jpg\" _src=\"http://yanxuan.nosdn.127.net/ad590b8d9cb20c046d0d8e68ea3b0dc4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c606522a6032f1a2268a0ee0d8d01dff.jpg\" _src=\"http://yanxuan.nosdn.127.net/c606522a6032f1a2268a0ee0d8d01dff.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f226b9e158f2cf451e925a606d1b5ecd.jpg\" _src=\"http://yanxuan.nosdn.127.net/f226b9e158f2cf451e925a606d1b5ecd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0b169357e50d02d557c468588939c7f4.jpg\" _src=\"http://yanxuan.nosdn.127.net/0b169357e50d02d557c468588939c7f4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f5e676b79ffc838a2c496134c8c3f55f.jpg\" _src=\"http://yanxuan.nosdn.127.net/f5e676b79ffc838a2c496134c8c3f55f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e934b380901ffa4b035825b82246634e.jpg\" _src=\"http://yanxuan.nosdn.127.net/e934b380901ffa4b035825b82246634e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c8decfed210a7ada28bd71496a8ef51a.jpg\" _src=\"http://yanxuan.nosdn.127.net/c8decfed210a7ada28bd71496a8ef51a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0fcc94c2ee6ea13ef7cd7d21f1c63b79.jpg\" _src=\"http://yanxuan.nosdn.127.net/0fcc94c2ee6ea13ef7cd7d21f1c63b79.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8bae5453415f2fd519b5cf836e9baddc.jpg\" _src=\"http://yanxuan.nosdn.127.net/8bae5453415f2fd519b5cf836e9baddc.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5833f7b80c040d8bdf23e514d430e045.jpg\" _src=\"http://yanxuan.nosdn.127.net/5833f7b80c040d8bdf23e514d430e045.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/15df0095ff692e8d67185c93c44680c0.jpg\" _src=\"http://yanxuan.nosdn.127.net/15df0095ff692e8d67185c93c44680c0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/32fdd19de26dee3281e76dc33059b1f4.jpg\" _src=\"http://yanxuan.nosdn.127.net/32fdd19de26dee3281e76dc33059b1f4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/290d679b2fe2154ef36b777525d988bc.jpg\" _src=\"http://yanxuan.nosdn.127.net/290d679b2fe2154ef36b777525d988bc.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/99233a211060d951818a729d43bb6533.jpg\" _src=\"http://yanxuan.nosdn.127.net/99233a211060d951818a729d43bb6533.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/76fcb532c1aa2f631c0e439f5986654f.jpg\" _src=\"http://yanxuan.nosdn.127.net/76fcb532c1aa2f631c0e439f5986654f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a2e90d2089e907d605e1eee0e6fcb1d1.jpg\" _src=\"http://yanxuan.nosdn.127.net/a2e90d2089e907d605e1eee0e6fcb1d1.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '14', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/20e7e05935a347b36adac369efc490c3.jpg', 'http://yanxuan.nosdn.127.net/c8ca0600fa7ba11ca8be6a3173dd38c9.png', '79.00', '8202', '1038068', '0.00', '限时购', '', '0.00', '0', '0', '0', '86.90', null, null, null, null);
  607. INSERT INTO `nideshop_goods` VALUES ('1039056', '1012003', '1039056', '金属亚光钢笔', '0', '100', '', '铱金暗尖,超顺书写', '', '1', '2017-08-30 11:40:11', '6', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/9a98c755c0a5d2a13557eaeddf64930d.png', 'http://yanxuan.nosdn.127.net/3e14e82a44c3a250af63df4c29c572d0.png', '79.00', '27565', '1038077', '0.00', '限时购', '', '0.00', '0', '0', '0', '86.90', null, null, null, null);
  608. INSERT INTO `nideshop_goods` VALUES ('1043005', '1008002', '1043005', '日式记忆绵坐垫', '1001000', '100', '', '活性炭记忆绵,缓解压力', '<p><img src=\"http://yanxuan.nosdn.127.net/7239e35762ea2937549f53f4482124fa.jpg\" _src=\"http://yanxuan.nosdn.127.net/7239e35762ea2937549f53f4482124fa.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c23c022ad6737aa351140d7ce97a4a43.jpg\" _src=\"http://yanxuan.nosdn.127.net/c23c022ad6737aa351140d7ce97a4a43.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b6fe3f499101077e6ee595a9145172c0.jpg\" _src=\"http://yanxuan.nosdn.127.net/b6fe3f499101077e6ee595a9145172c0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0fdc843045b99838abd8ce3fcbec2890.jpg\" _src=\"http://yanxuan.nosdn.127.net/0fdc843045b99838abd8ce3fcbec2890.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/14d3e1c384f5bc66e85b4dfff61f49ab.jpg\" _src=\"http://yanxuan.nosdn.127.net/14d3e1c384f5bc66e85b4dfff61f49ab.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/14eed3d4524fe441a54b604f37cfd299.jpg\" _src=\"http://yanxuan.nosdn.127.net/14eed3d4524fe441a54b604f37cfd299.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b1b3a30c34e6fecf8105bf430e6d547f.jpg\" _src=\"http://yanxuan.nosdn.127.net/b1b3a30c34e6fecf8105bf430e6d547f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cb5411b150ce5a69c0f88ef3af918061.jpg\" _src=\"http://yanxuan.nosdn.127.net/cb5411b150ce5a69c0f88ef3af918061.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/aebe8243acfa28a42d300d985c6e7036.jpg\" _src=\"http://yanxuan.nosdn.127.net/aebe8243acfa28a42d300d985c6e7036.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1371f124f86fc38c195f49e4bf26ddc5.jpg\" _src=\"http://yanxuan.nosdn.127.net/1371f124f86fc38c195f49e4bf26ddc5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bd05471ebf5529464c85eace3e7c5c7a.jpg\" _src=\"http://yanxuan.nosdn.127.net/bd05471ebf5529464c85eace3e7c5c7a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9c607e963758e4ad3f3bc749098fdcec.jpg\" _src=\"http://yanxuan.nosdn.127.net/9c607e963758e4ad3f3bc749098fdcec.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/dd472e779f1748937d269b87464722b5.jpg\" _src=\"http://yanxuan.nosdn.127.net/dd472e779f1748937d269b87464722b5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d19ec3e68922cdae4da8c0ab174bf5eb.jpg\" _src=\"http://yanxuan.nosdn.127.net/d19ec3e68922cdae4da8c0ab174bf5eb.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/44003fe38ab817003cb441ed5e518c41.jpg\" _src=\"http://yanxuan.nosdn.127.net/44003fe38ab817003cb441ed5e518c41.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5f3a7c45c70930950e60ddac979953d5.jpg\" _src=\"http://yanxuan.nosdn.127.net/5f3a7c45c70930950e60ddac979953d5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/77fc74a83c328dddf610a045277f094e.jpg\" _src=\"http://yanxuan.nosdn.127.net/77fc74a83c328dddf610a045277f094e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/14056056c8e8cf3f77a479de696d18ea.jpg\" _src=\"http://yanxuan.nosdn.127.net/14056056c8e8cf3f77a479de696d18ea.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3ec2764b8b29c67af332cc1fde825b70.jpg\" _src=\"http://yanxuan.nosdn.127.net/3ec2764b8b29c67af332cc1fde825b70.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/494504fdb2d59d924de16cf79629dee9.jpg\" _src=\"http://yanxuan.nosdn.127.net/494504fdb2d59d924de16cf79629dee9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ddf59afdada25b6b7aad72aaf8f0af20.jpg\" _src=\"http://yanxuan.nosdn.127.net/ddf59afdada25b6b7aad72aaf8f0af20.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1b8ad80c319aac920f3409bcd4376e17.jpg\" _src=\"http://yanxuan.nosdn.127.net/1b8ad80c319aac920f3409bcd4376e17.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8571525a4f280d09926a1b388d06fe8d.jpg\" _src=\"http://yanxuan.nosdn.127.net/8571525a4f280d09926a1b388d06fe8d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/23c8bb2834f9ec05adb69e4df8354224.jpg\" _src=\"http://yanxuan.nosdn.127.net/23c8bb2834f9ec05adb69e4df8354224.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b9c44aea67b0392547fdb3ba7f24c5fc.jpg\" _src=\"http://yanxuan.nosdn.127.net/b9c44aea67b0392547fdb3ba7f24c5fc.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f5045464902396b85ea12724ed962d7a.jpg\" _src=\"http://yanxuan.nosdn.127.net/f5045464902396b85ea12724ed962d7a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f484b21d07738839d1e199d8ba1031f1.jpg\" _src=\"http://yanxuan.nosdn.127.net/f484b21d07738839d1e199d8ba1031f1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/21718c637256576c66876aa30653e29d.jpg\" _src=\"http://yanxuan.nosdn.127.net/21718c637256576c66876aa30653e29d.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '11', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/aedfe3b7d76361d104a425ff551ade77.jpg', 'http://yanxuan.nosdn.127.net/2a95b16f5b147cab4845641bee738a2e.png', '59.00', '7482', '1041015', '0.00', '限时购', '', '0.00', '0', '0', '0', '64.90', null, null, null, null);
  609. INSERT INTO `nideshop_goods` VALUES ('1044012', '1008009', '1044012', '澳洲羊羔毛华夫格盖毯', '0', '100', '', '美利奴全新羊羔毛的细腻触感', '<p><img src=\"http://yanxuan.nosdn.127.net/3f743d4b4f30ddffdfee6339d83701c9.jpg\" _src=\"http://yanxuan.nosdn.127.net/3f743d4b4f30ddffdfee6339d83701c9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bf2c4b3d138da32aae6b3ffcdaedeb73.jpg\" _src=\"http://yanxuan.nosdn.127.net/bf2c4b3d138da32aae6b3ffcdaedeb73.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3536d6deabba614dd9a8730875a37d36.jpg\" _src=\"http://yanxuan.nosdn.127.net/3536d6deabba614dd9a8730875a37d36.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b8d889753ccee9174a5449041aba57db.jpg\" _src=\"http://yanxuan.nosdn.127.net/b8d889753ccee9174a5449041aba57db.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0785a14712f2d585fea3776a8775f1e4.jpg\" _src=\"http://yanxuan.nosdn.127.net/0785a14712f2d585fea3776a8775f1e4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b0c3756c5f4e96c0f37167dce9628a8b.jpg\" _src=\"http://yanxuan.nosdn.127.net/b0c3756c5f4e96c0f37167dce9628a8b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4a196080fd7b76bf9e4b2c97afc1028d.jpg\" _src=\"http://yanxuan.nosdn.127.net/4a196080fd7b76bf9e4b2c97afc1028d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e0d6859834701a093327e3710b52b5b0.jpg\" _src=\"http://yanxuan.nosdn.127.net/e0d6859834701a093327e3710b52b5b0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/db0116b70973635ca8ff7be78bf5f541.jpg\" _src=\"http://yanxuan.nosdn.127.net/db0116b70973635ca8ff7be78bf5f541.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f066780f86264b0bc037b945b81b1406.jpg\" _src=\"http://yanxuan.nosdn.127.net/f066780f86264b0bc037b945b81b1406.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f0d87991c9a1874693cfecc52c6e1197.jpg\" _src=\"http://yanxuan.nosdn.127.net/f0d87991c9a1874693cfecc52c6e1197.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0a450d55776a981ac9aa87af0a7c418f.jpg\" _src=\"http://yanxuan.nosdn.127.net/0a450d55776a981ac9aa87af0a7c418f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b450e5950181bf464baff2b7e79188d6.jpg\" _src=\"http://yanxuan.nosdn.127.net/b450e5950181bf464baff2b7e79188d6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bebe0b8259c7fdd88509947ef0a8037a.jpg\" _src=\"http://yanxuan.nosdn.127.net/bebe0b8259c7fdd88509947ef0a8037a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/10be9b68827caaa1b67077c7c5bdf05b.jpg\" _src=\"http://yanxuan.nosdn.127.net/10be9b68827caaa1b67077c7c5bdf05b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/56c0dd020ab4aceeb696520df5c8780c.jpg\" _src=\"http://yanxuan.nosdn.127.net/56c0dd020ab4aceeb696520df5c8780c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d2176b1f79b255d89206f044e42c3812.jpg\" _src=\"http://yanxuan.nosdn.127.net/d2176b1f79b255d89206f044e42c3812.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/389af26a26c1ac3ebae82afeca4850f2.jpg\" _src=\"http://yanxuan.nosdn.127.net/389af26a26c1ac3ebae82afeca4850f2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0897b52523d43efaa5b66449d97a2e5c.jpg\" _src=\"http://yanxuan.nosdn.127.net/0897b52523d43efaa5b66449d97a2e5c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3fbbb2da0b5019ddacc6761ebc691902.jpg\" _src=\"http://yanxuan.nosdn.127.net/3fbbb2da0b5019ddacc6761ebc691902.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1d8576b1472852a8ab96a30d4d8536c6.jpg\" _src=\"http://yanxuan.nosdn.127.net/1d8576b1472852a8ab96a30d4d8536c6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4df95e96ca354efec574e01297fd9e2b.jpg\" _src=\"http://yanxuan.nosdn.127.net/4df95e96ca354efec574e01297fd9e2b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d98a831ff4adeccd093c3fd8ddbc026b.jpg\" _src=\"http://yanxuan.nosdn.127.net/d98a831ff4adeccd093c3fd8ddbc026b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f6050089684ca291a045ab0eea483aab.jpg\" _src=\"http://yanxuan.nosdn.127.net/f6050089684ca291a045ab0eea483aab.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/96b0c33ae3b402863bde7b830b817866.jpg\" _src=\"http://yanxuan.nosdn.127.net/96b0c33ae3b402863bde7b830b817866.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6d7d595ae0df9e126dca6926b17c3afe.jpg\" _src=\"http://yanxuan.nosdn.127.net/6d7d595ae0df9e126dca6926b17c3afe.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a4230ca0e414599c38b22c677eac8a2f.jpg\" _src=\"http://yanxuan.nosdn.127.net/a4230ca0e414599c38b22c677eac8a2f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/aad253305dcdb44bdbfb519a503823da.jpg\" _src=\"http://yanxuan.nosdn.127.net/aad253305dcdb44bdbfb519a503823da.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b512ead08406712b5d98abf20ebe7691.jpg\" _src=\"http://yanxuan.nosdn.127.net/b512ead08406712b5d98abf20ebe7691.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '35', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/80b71f53947bc918cd2a9f0f75168128.jpg', 'http://yanxuan.nosdn.127.net/a803c68ea88e3116023b45ac9ea99510.png', '349.00', '316', '1042084', '0.00', '限时购', '', '0.00', '0', '0', '0', '383.90', null, null, null, null);
  610. INSERT INTO `nideshop_goods` VALUES ('1045000', '1008015', '1045000', '绿茶蛋黄酥 200克/4枚入', '0', '100', '', '香甜茶食,果腹优选', '', '1', '2017-08-30 11:40:11', '7', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/c3f1f4ac04ace757bdd4985d933d54c5.jpg', 'http://yanxuan.nosdn.127.net/b2adc3fd9b84a289a1be03e8ee400e61.png', '28.00', '3271', '1077026', '0.00', '限时购', '', '0.00', '0', '0', '0', '30.80', null, null, null, null);
  611. INSERT INTO `nideshop_goods` VALUES ('1046001', '1012003', '1046001', '按动式三角中油笔', '0', '100', '', '进口笔尖,无毒油墨', '', '1', '2017-08-30 11:40:11', '8', '0', '0', '0.00', '0.00', '0', '支', 'http://yanxuan.nosdn.127.net/d43304129d1d77039689b9c116dd2218.png', 'http://yanxuan.nosdn.127.net/74583e585825ecacb11f7c53d2021e00.png', '8.90', '2982', '1044001', '0.00', '限时购', '', '0.00', '0', '0', '0', '9.79', null, null, null, null);
  612. INSERT INTO `nideshop_goods` VALUES ('1046002', '1012003', '1046002', '直杆三角中性笔', '0', '100', '', '合金笔尖,高强度笔身', '', '1', '2017-08-30 11:40:11', '9', '0', '0', '0.00', '0.00', '0', '支', 'http://yanxuan.nosdn.127.net/c63cfb6cfda3959cb09e3dcfc1eef399.png', 'http://yanxuan.nosdn.127.net/eb486cfe807c4fe5696aa59cbcf1f96a.png', '9.90', '38061', '1044002', '0.00', '限时购', '', '0.00', '0', '0', '0', '10.89', null, null, null, null);
  613. INSERT INTO `nideshop_goods` VALUES ('1046044', '1008009', '1046044', '美利奴羊毛盖毯设计师款', '1001020', '100', '', '欧洲知名品牌设计师联合打造', '<p><img src=\"http://yanxuan.nosdn.127.net/1e6a7d46666cf41f62ae68b5fce159ef.jpg\" _src=\"http://yanxuan.nosdn.127.net/1e6a7d46666cf41f62ae68b5fce159ef.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/da60db9b1d6fdbd138ffd639ea5a7d96.jpg\" _src=\"http://yanxuan.nosdn.127.net/da60db9b1d6fdbd138ffd639ea5a7d96.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e10d5826f500d3921accdbcde3654ed4.jpg\" _src=\"http://yanxuan.nosdn.127.net/e10d5826f500d3921accdbcde3654ed4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7a0384e8fbb30e4f28a4eb63db3b570f.jpg\" _src=\"http://yanxuan.nosdn.127.net/7a0384e8fbb30e4f28a4eb63db3b570f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c105726991117504fafe0bfbd45b281e.jpg\" _src=\"http://yanxuan.nosdn.127.net/c105726991117504fafe0bfbd45b281e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/03e2b1bc1e51731ec5fc4077f3930c90.jpg\" _src=\"http://yanxuan.nosdn.127.net/03e2b1bc1e51731ec5fc4077f3930c90.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cf095cc9dcd2e502cf189d8de3f19608.jpg\" _src=\"http://yanxuan.nosdn.127.net/cf095cc9dcd2e502cf189d8de3f19608.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/884911b2fc49d0d40b05479f06513f2a.jpg\" _src=\"http://yanxuan.nosdn.127.net/884911b2fc49d0d40b05479f06513f2a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a1f27e9690b91ab8b1a9eb14173d1258.jpg\" _src=\"http://yanxuan.nosdn.127.net/a1f27e9690b91ab8b1a9eb14173d1258.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4b8e25163aec2f41954112dc8a25c236.jpg\" _src=\"http://yanxuan.nosdn.127.net/4b8e25163aec2f41954112dc8a25c236.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6d1efb833b2c8d60d1f78d28f43bdbc6.jpg\" _src=\"http://yanxuan.nosdn.127.net/6d1efb833b2c8d60d1f78d28f43bdbc6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/97d487110e5ba4f06c5200f92afb5d2e.jpg\" _src=\"http://yanxuan.nosdn.127.net/97d487110e5ba4f06c5200f92afb5d2e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f791e35b8d26af8843b3ec85ee5b1ea2.jpg\" _src=\"http://yanxuan.nosdn.127.net/f791e35b8d26af8843b3ec85ee5b1ea2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5a3877e74b20978c91a78422710eda61.jpg\" _src=\"http://yanxuan.nosdn.127.net/5a3877e74b20978c91a78422710eda61.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c47c9ccf32a82847317332654cffefbe.jpg\" _src=\"http://yanxuan.nosdn.127.net/c47c9ccf32a82847317332654cffefbe.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/660735bf422574c20d5e1de9a8412b68.jpg\" _src=\"http://yanxuan.nosdn.127.net/660735bf422574c20d5e1de9a8412b68.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/aa0073b73e133fddd218cd873eb4704c.jpg\" _src=\"http://yanxuan.nosdn.127.net/aa0073b73e133fddd218cd873eb4704c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2e08a269b051e91d3fcf3f5e1a819587.jpg\" _src=\"http://yanxuan.nosdn.127.net/2e08a269b051e91d3fcf3f5e1a819587.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1e6bef09f54ebcf9dfc739bed06ee884.jpg\" _src=\"http://yanxuan.nosdn.127.net/1e6bef09f54ebcf9dfc739bed06ee884.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1e91b06b37290a422433531a3c448fc9.jpg\" _src=\"http://yanxuan.nosdn.127.net/1e91b06b37290a422433531a3c448fc9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3a860ec70f982f50981bec2e00e2c195.jpg\" _src=\"http://yanxuan.nosdn.127.net/3a860ec70f982f50981bec2e00e2c195.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8c9123297e0e183ee00a592430756e4b.jpg\" _src=\"http://yanxuan.nosdn.127.net/8c9123297e0e183ee00a592430756e4b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/745d0978c9fa4a5a4ceb0244f55f2456.jpg\" _src=\"http://yanxuan.nosdn.127.net/745d0978c9fa4a5a4ceb0244f55f2456.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9b56578bc472ea3fd1e5ac46fca6189b.jpg\" _src=\"http://yanxuan.nosdn.127.net/9b56578bc472ea3fd1e5ac46fca6189b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9c606fa0c3704aacb37d6ddc10017337.jpg\" _src=\"http://yanxuan.nosdn.127.net/9c606fa0c3704aacb37d6ddc10017337.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3c9f3b7d40f4277a078a774bfb9d8e07.jpg\" _src=\"http://yanxuan.nosdn.127.net/3c9f3b7d40f4277a078a774bfb9d8e07.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/628544b6dc30cd67c41dc9506df845a2.jpg\" _src=\"http://yanxuan.nosdn.127.net/628544b6dc30cd67c41dc9506df845a2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fef518af8f1e7b38a0eb1b28f4bb51a7.jpg\" _src=\"http://yanxuan.nosdn.127.net/fef518af8f1e7b38a0eb1b28f4bb51a7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cda4010f9df50cf85c1f6b2c66739a1d.jpg\" _src=\"http://yanxuan.nosdn.127.net/cda4010f9df50cf85c1f6b2c66739a1d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3081818ab418d732c80598a6528ed53b.jpg\" _src=\"http://yanxuan.nosdn.127.net/3081818ab418d732c80598a6528ed53b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f47a15c1b0d754e3fb2e45db373ccc08.jpg\" _src=\"http://yanxuan.nosdn.127.net/f47a15c1b0d754e3fb2e45db373ccc08.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fc890fd700609bcb80d4162573cc2b5c.jpg\" _src=\"http://yanxuan.nosdn.127.net/fc890fd700609bcb80d4162573cc2b5c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cfa435b515b0ab8cd99b6eb63ca5092f.jpg\" _src=\"http://yanxuan.nosdn.127.net/cfa435b515b0ab8cd99b6eb63ca5092f.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '34', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/66255722e60ae8bb0f61295d642847b6.jpg', 'http://yanxuan.nosdn.127.net/2bfecfe58ea3ee0d554f2ed58e9ba30a.png', '349.00', '1372', '1044116', '0.00', '限时购', '', '0.00', '0', '0', '0', '383.90', null, null, null, null);
  614. INSERT INTO `nideshop_goods` VALUES ('1048005', '1008002', '1048005', '日式色织水洗条纹抱枕', '1001000', '100', '', '色织面料,水洗工艺,柔软亲肤', '<p><img src=\"http://yanxuan.nosdn.127.net/39afc6f165cf752e16c199b65ab61ee8.jpg\" _src=\"http://yanxuan.nosdn.127.net/39afc6f165cf752e16c199b65ab61ee8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f2635f2eb08e98687a132a97642d87de.jpg\" _src=\"http://yanxuan.nosdn.127.net/f2635f2eb08e98687a132a97642d87de.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/08b6bca750a85d833740e1f12e5a6216.jpg\" _src=\"http://yanxuan.nosdn.127.net/08b6bca750a85d833740e1f12e5a6216.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f61f9587dc8aec8330335da87dbb60ed.jpg\" _src=\"http://yanxuan.nosdn.127.net/f61f9587dc8aec8330335da87dbb60ed.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f22282ebbbeb664ba706e4f088c9db2b.jpg\" _src=\"http://yanxuan.nosdn.127.net/f22282ebbbeb664ba706e4f088c9db2b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ad7819c5597db9fce742cbc61aa53c72.jpg\" _src=\"http://yanxuan.nosdn.127.net/ad7819c5597db9fce742cbc61aa53c72.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ee4a43824784e660f44e16274c4717ed.jpg\" _src=\"http://yanxuan.nosdn.127.net/ee4a43824784e660f44e16274c4717ed.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f0eb752fd857fa1af74602afadabb0fd.jpg\" _src=\"http://yanxuan.nosdn.127.net/f0eb752fd857fa1af74602afadabb0fd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/46290c0b824babab46ce73feb23a554d.jpg\" _src=\"http://yanxuan.nosdn.127.net/46290c0b824babab46ce73feb23a554d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1c34134e19df505b4b1b2277880bba2f.jpg\" _src=\"http://yanxuan.nosdn.127.net/1c34134e19df505b4b1b2277880bba2f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0bce553f09f5146ba9209264c46e38ce.jpg\" _src=\"http://yanxuan.nosdn.127.net/0bce553f09f5146ba9209264c46e38ce.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/732ed69a0539f4d972213ed64e5bcff0.jpg\" _src=\"http://yanxuan.nosdn.127.net/732ed69a0539f4d972213ed64e5bcff0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/147fcd503618a36a76ed792c6a2254b1.jpg\" _src=\"http://yanxuan.nosdn.127.net/147fcd503618a36a76ed792c6a2254b1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1f68cea7d1e7dd23349f7c36e366cb6f.jpg\" _src=\"http://yanxuan.nosdn.127.net/1f68cea7d1e7dd23349f7c36e366cb6f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/852711207b87360d29289be16a76e5ba.jpg\" _src=\"http://yanxuan.nosdn.127.net/852711207b87360d29289be16a76e5ba.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6f46c1d0edb91be4fa7c2747b423c494.jpg\" _src=\"http://yanxuan.nosdn.127.net/6f46c1d0edb91be4fa7c2747b423c494.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2f2bc29d55899694b917c9991d0b1333.jpg\" _src=\"http://yanxuan.nosdn.127.net/2f2bc29d55899694b917c9991d0b1333.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/63d4fa2caa8bbd1d7e205e90fe176633.jpg\" _src=\"http://yanxuan.nosdn.127.net/63d4fa2caa8bbd1d7e205e90fe176633.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f885db84f7911c3c4abc9695f55f19f9.jpg\" _src=\"http://yanxuan.nosdn.127.net/f885db84f7911c3c4abc9695f55f19f9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bd0c5be6c986a60a577ab7fd4fa9796e.jpg\" _src=\"http://yanxuan.nosdn.127.net/bd0c5be6c986a60a577ab7fd4fa9796e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fb0f814679347c4876f2ca30acd57f88.jpg\" _src=\"http://yanxuan.nosdn.127.net/fb0f814679347c4876f2ca30acd57f88.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/64b5936ea7e076885a7c1611d492aa57.jpg\" _src=\"http://yanxuan.nosdn.127.net/64b5936ea7e076885a7c1611d492aa57.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b503dd5b259a049dc3fffcabe6264c10.jpg\" _src=\"http://yanxuan.nosdn.127.net/b503dd5b259a049dc3fffcabe6264c10.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3fb47a70640f6c252518a80a803bd362.jpg\" _src=\"http://yanxuan.nosdn.127.net/3fb47a70640f6c252518a80a803bd362.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1837c9a132b1ca0ed52f76f935563b7a.jpg\" _src=\"http://yanxuan.nosdn.127.net/1837c9a132b1ca0ed52f76f935563b7a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/09e9cc037e909c934aba0b87c48914ad.jpg\" _src=\"http://yanxuan.nosdn.127.net/09e9cc037e909c934aba0b87c48914ad.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e5c3a85ee4217386a8161016aa7727b9.jpg\" _src=\"http://yanxuan.nosdn.127.net/e5c3a85ee4217386a8161016aa7727b9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e666622ecebc8fc733a49c5ad7d16c3e.jpg\" _src=\"http://yanxuan.nosdn.127.net/e666622ecebc8fc733a49c5ad7d16c3e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/48f87049ad7e2492ae75da78b97cd6fa.jpg\" _src=\"http://yanxuan.nosdn.127.net/48f87049ad7e2492ae75da78b97cd6fa.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/21cc4790d10496f2e73531c420fbb394.jpg\" _src=\"http://yanxuan.nosdn.127.net/21cc4790d10496f2e73531c420fbb394.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9510a74920b5589cba7af910774f8c0c.jpg\" _src=\"http://yanxuan.nosdn.127.net/9510a74920b5589cba7af910774f8c0c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0c69b713c98187890316668d10aa55c6.jpg\" _src=\"http://yanxuan.nosdn.127.net/0c69b713c98187890316668d10aa55c6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/dcafde6d38fd075c4ba6d0cc1e816314.jpg\" _src=\"http://yanxuan.nosdn.127.net/dcafde6d38fd075c4ba6d0cc1e816314.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ccdf51824645c27ab06e78faa85db7d9.jpg\" _src=\"http://yanxuan.nosdn.127.net/ccdf51824645c27ab06e78faa85db7d9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8096a502cac9f926d288cbbe8b8534fa.jpg\" _src=\"http://yanxuan.nosdn.127.net/8096a502cac9f926d288cbbe8b8534fa.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0b2b9a1f8a1422e3975cbee85685672c.jpg\" _src=\"http://yanxuan.nosdn.127.net/0b2b9a1f8a1422e3975cbee85685672c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fd6779619cc7ed6f2a4057526f0c579d.jpg\" _src=\"http://yanxuan.nosdn.127.net/fd6779619cc7ed6f2a4057526f0c579d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bdef4d1620407043511daf2e97746f07.jpg\" _src=\"http://yanxuan.nosdn.127.net/bdef4d1620407043511daf2e97746f07.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4f30d798c772ea1599723c427c1d643b.jpg\" _src=\"http://yanxuan.nosdn.127.net/4f30d798c772ea1599723c427c1d643b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0cfc9aae9304010e24d92b29220dc0b5.jpg\" _src=\"http://yanxuan.nosdn.127.net/0cfc9aae9304010e24d92b29220dc0b5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7e20e47f1eaf643bc569ccb148781529.jpg\" _src=\"http://yanxuan.nosdn.127.net/7e20e47f1eaf643bc569ccb148781529.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d9beb4226eb47be1c16e872dd9281634.jpg\" _src=\"http://yanxuan.nosdn.127.net/d9beb4226eb47be1c16e872dd9281634.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/70d2d737fbf7fc5980604ea294942b41.jpg\" _src=\"http://yanxuan.nosdn.127.net/70d2d737fbf7fc5980604ea294942b41.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/496224b05a3054625b065de6aa769959.jpg\" _src=\"http://yanxuan.nosdn.127.net/496224b05a3054625b065de6aa769959.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d0671941e0dfb696d5392f174a949a13.jpg\" _src=\"http://yanxuan.nosdn.127.net/d0671941e0dfb696d5392f174a949a13.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2df72e131e86e433d939776783a44db7.jpg\" _src=\"http://yanxuan.nosdn.127.net/2df72e131e86e433d939776783a44db7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3bea99ca3040befe69d4811e0ef9b226.jpg\" _src=\"http://yanxuan.nosdn.127.net/3bea99ca3040befe69d4811e0ef9b226.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fbc003f18889ab46a5a3a7e8698df351.jpg\" _src=\"http://yanxuan.nosdn.127.net/fbc003f18889ab46a5a3a7e8698df351.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ee0df8d583844e734273d73eb582a4a9.jpg\" _src=\"http://yanxuan.nosdn.127.net/ee0df8d583844e734273d73eb582a4a9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9ea9467e6f4ef5c8f0812c1595704840.jpg\" _src=\"http://yanxuan.nosdn.127.net/9ea9467e6f4ef5c8f0812c1595704840.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '5', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/2167445c1b3df028d660bb992f321396.jpg', 'http://yanxuan.nosdn.127.net/ce980c16810a471dffff6aa8d7bac754.png', '59.00', '5846', '1047014', '0.00', '限时购', '', '0.00', '0', '0', '0', '64.90', null, null, null, null);
  615. INSERT INTO `nideshop_goods` VALUES ('1051000', '1005007', '1051000', 'Carat钻石炒锅30cm', '0', '100', '', '安全涂层,轻便无烟', '', '1', '2017-08-30 11:40:11', '7', '0', '0', '0.00', '0.00', '0', '只', 'http://yanxuan.nosdn.127.net/fd939503a33960aea571c9f29d76053b.png', 'http://yanxuan.nosdn.127.net/e564410546a11ddceb5a82bfce8da43d.png', '180.00', '1553', '1052001', '0.00', '限时购', '', '0.00', '0', '0', '0', '198.00', null, null, null, null);
  616. INSERT INTO `nideshop_goods` VALUES ('1051001', '1005007', '1051001', 'Carat钻石煎锅28cm', '0', '100', '', '耐磨涂层,导热迅速', '', '1', '2017-08-30 11:40:11', '8', '0', '0', '0.00', '0.00', '0', '只', 'http://yanxuan.nosdn.127.net/f0c000ef41a6c5d6bffa7cc8cbaf6e95.png', 'http://yanxuan.nosdn.127.net/f53ed57d9e23fda7e24dfd0e0a50c5d1.png', '159.00', '901', '1052004', '0.00', '限时购', '', '0.00', '0', '0', '0', '174.90', null, null, null, null);
  617. INSERT INTO `nideshop_goods` VALUES ('1051002', '1005007', '1051002', 'Carat钻石汤锅24cm', '0', '100', '', '安全涂层,锁热保温', '', '1', '2017-08-30 11:40:11', '6', '0', '0', '0.00', '0.00', '0', '只', 'http://yanxuan.nosdn.127.net/39ca3e8d764d73e63a3c6592574bec79.png', 'http://yanxuan.nosdn.127.net/56f4b4753392d27c0c2ccceeb579ed6f.png', '228.00', '1501', '1052006', '0.00', '限时购', '', '0.00', '0', '0', '0', '250.80', null, null, null, null);
  618. INSERT INTO `nideshop_goods` VALUES ('1051003', '1005007', '1051003', 'Carat钻石奶锅18cm', '0', '100', '', '轻便节能,易于清洗', '', '1', '2017-08-30 11:40:11', '9', '0', '0', '0.00', '0.00', '0', '只', 'http://yanxuan.nosdn.127.net/1ae5526c8ef9c1be5decb41986827d60.png', 'http://yanxuan.nosdn.127.net/6a54ccc389afb2459b163245bbb2c978.png', '148.00', '4474', '1052008', '0.00', '限时购', '', '0.00', '0', '0', '0', '162.80', null, null, null, null);
  619. INSERT INTO `nideshop_goods` VALUES ('1055012', '1008002', '1055012', '300根全棉羽丝绒抱枕芯', '0', '100', '', '仪征3D填充,充实的满足感', '<p><img src=\"http://yanxuan.nosdn.127.net/07f2717762df73a6a697bb5399da6376.jpg\" _src=\"http://yanxuan.nosdn.127.net/07f2717762df73a6a697bb5399da6376.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e202bdb4be8f36bda118cf7265d00f65.jpg\" _src=\"http://yanxuan.nosdn.127.net/e202bdb4be8f36bda118cf7265d00f65.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4b5766cf268d327a3518ee5429c4c4e7.jpg\" _src=\"http://yanxuan.nosdn.127.net/4b5766cf268d327a3518ee5429c4c4e7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4f4e4356d070dbca22cf19a60a2447ed.jpg\" _src=\"http://yanxuan.nosdn.127.net/4f4e4356d070dbca22cf19a60a2447ed.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/da3a3e22d355ccf82235603507f3a083.jpg\" _src=\"http://yanxuan.nosdn.127.net/da3a3e22d355ccf82235603507f3a083.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/be789777e5e1381bb7b62d26fcfb619e.jpg\" _src=\"http://yanxuan.nosdn.127.net/be789777e5e1381bb7b62d26fcfb619e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c48e78aa87b8e81eab6a60de74d1c19c.jpg\" _src=\"http://yanxuan.nosdn.127.net/c48e78aa87b8e81eab6a60de74d1c19c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4f772f4990d8ae0acac660acf25be2d7.jpg\" _src=\"http://yanxuan.nosdn.127.net/4f772f4990d8ae0acac660acf25be2d7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9f1bd930fcb57e79a4ce2a1c4a0f2f4c.jpg\" _src=\"http://yanxuan.nosdn.127.net/9f1bd930fcb57e79a4ce2a1c4a0f2f4c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f481e1e9b8c4e728f4f7225af52a335e.jpg\" _src=\"http://yanxuan.nosdn.127.net/f481e1e9b8c4e728f4f7225af52a335e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4fca69439b053b510724cf6834856a2c.jpg\" _src=\"http://yanxuan.nosdn.127.net/4fca69439b053b510724cf6834856a2c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a285ec5ac9c84a6616feca7301f515c3.jpg\" _src=\"http://yanxuan.nosdn.127.net/a285ec5ac9c84a6616feca7301f515c3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/52435458ac1c48fb45f4a9888052b5b6.jpg\" _src=\"http://yanxuan.nosdn.127.net/52435458ac1c48fb45f4a9888052b5b6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/01301675d00e13d21588d0bbb72e1745.jpg\" _src=\"http://yanxuan.nosdn.127.net/01301675d00e13d21588d0bbb72e1745.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/63627106753f764733cf47047e887d1e.jpg\" _src=\"http://yanxuan.nosdn.127.net/63627106753f764733cf47047e887d1e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/15ecf40c8045513fe6a1303fe7d4383f.jpg\" _src=\"http://yanxuan.nosdn.127.net/15ecf40c8045513fe6a1303fe7d4383f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e8ef113464ff066662e639868e6eda28.jpg\" _src=\"http://yanxuan.nosdn.127.net/e8ef113464ff066662e639868e6eda28.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0de1977400dfda99d0601e1c12fdbf1e.jpg\" _src=\"http://yanxuan.nosdn.127.net/0de1977400dfda99d0601e1c12fdbf1e.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '10', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/06930cbd3bcd7c98d7740c18a7986137.jpg', 'http://yanxuan.nosdn.127.net/3d437c8d68e2ec3f3dd61001bf98f16e.png', '39.00', '6669', '1056022', '0.00', '限时购', '', '0.00', '0', '0', '0', '42.90', null, null, null, null);
  620. INSERT INTO `nideshop_goods` VALUES ('1055016', '1008002', '1055016', '日式纯棉针织条纹抱枕', '1001000', '100', '', '亲肤舒适,宛如妈妈的怀抱', '<p><img src=\"http://yanxuan.nosdn.127.net/4060bcde249c2501e5d95cfa0888a6c3.jpg\" _src=\"http://yanxuan.nosdn.127.net/4060bcde249c2501e5d95cfa0888a6c3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/afebd965217cfdbc238de9252c7d6e37.jpg\" _src=\"http://yanxuan.nosdn.127.net/afebd965217cfdbc238de9252c7d6e37.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b017649229c04dad59c312b3fe0cf7be.jpg\" _src=\"http://yanxuan.nosdn.127.net/b017649229c04dad59c312b3fe0cf7be.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e02d923a92d5bef4b264381cffd5d813.jpg\" _src=\"http://yanxuan.nosdn.127.net/e02d923a92d5bef4b264381cffd5d813.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0447366651e06dde345c907e12315c73.jpg\" _src=\"http://yanxuan.nosdn.127.net/0447366651e06dde345c907e12315c73.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b5fdb8a54a2bc2285d1136bf9a2a674f.jpg\" _src=\"http://yanxuan.nosdn.127.net/b5fdb8a54a2bc2285d1136bf9a2a674f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f1836dd3b75444a3ce42dc49fa5ee513.jpg\" _src=\"http://yanxuan.nosdn.127.net/f1836dd3b75444a3ce42dc49fa5ee513.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2f4740ae47c3ca8465e1ea6ec0a43563.jpg\" _src=\"http://yanxuan.nosdn.127.net/2f4740ae47c3ca8465e1ea6ec0a43563.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5f9f33a85933788209e6195468044387.jpg\" _src=\"http://yanxuan.nosdn.127.net/5f9f33a85933788209e6195468044387.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b6ceab4330e0dd218db3c16582465be1.jpg\" _src=\"http://yanxuan.nosdn.127.net/b6ceab4330e0dd218db3c16582465be1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1dea7df197ba1e5ce5e9646aea43f798.jpg\" _src=\"http://yanxuan.nosdn.127.net/1dea7df197ba1e5ce5e9646aea43f798.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/022e305413c9aa8e8db30a46a2a65286.jpg\" _src=\"http://yanxuan.nosdn.127.net/022e305413c9aa8e8db30a46a2a65286.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cce2571a59a0bc39784d61c4134f9458.jpg\" _src=\"http://yanxuan.nosdn.127.net/cce2571a59a0bc39784d61c4134f9458.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b1f287dab80d1b11450051de6c119611.jpg\" _src=\"http://yanxuan.nosdn.127.net/b1f287dab80d1b11450051de6c119611.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f7b6318cb7623349542ba971cf1887da.jpg\" _src=\"http://yanxuan.nosdn.127.net/f7b6318cb7623349542ba971cf1887da.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cf56a8ae91e07c91d70cf7b88cb59676.jpg\" _src=\"http://yanxuan.nosdn.127.net/cf56a8ae91e07c91d70cf7b88cb59676.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/76aebdbc4a150837b2dcaa2293c85cc4.jpg\" _src=\"http://yanxuan.nosdn.127.net/76aebdbc4a150837b2dcaa2293c85cc4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/902fb302066a65488ed1f6da3a16ed66.jpg\" _src=\"http://yanxuan.nosdn.127.net/902fb302066a65488ed1f6da3a16ed66.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/dd9df2852e760940b0ab9e599320ed35.jpg\" _src=\"http://yanxuan.nosdn.127.net/dd9df2852e760940b0ab9e599320ed35.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7ad1c6c9e619df09685cf9596339d714.jpg\" _src=\"http://yanxuan.nosdn.127.net/7ad1c6c9e619df09685cf9596339d714.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/83e54a3b9d13dc3c67e880c02e63167c.jpg\" _src=\"http://yanxuan.nosdn.127.net/83e54a3b9d13dc3c67e880c02e63167c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9f6b75fe4ff9ae0b976c8c85bbf0a719.jpg\" _src=\"http://yanxuan.nosdn.127.net/9f6b75fe4ff9ae0b976c8c85bbf0a719.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/82f850ea52ca3e7048283b3f8a65c616.jpg\" _src=\"http://yanxuan.nosdn.127.net/82f850ea52ca3e7048283b3f8a65c616.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5bd4faa4898d9ea3c56fba9c5749cc62.jpg\" _src=\"http://yanxuan.nosdn.127.net/5bd4faa4898d9ea3c56fba9c5749cc62.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6488dedf51c6e5a90fc5f156a4e8416b.jpg\" _src=\"http://yanxuan.nosdn.127.net/6488dedf51c6e5a90fc5f156a4e8416b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bc667ddb5116ceaf329f55982da36bb1.jpg\" _src=\"http://yanxuan.nosdn.127.net/bc667ddb5116ceaf329f55982da36bb1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/dfbfde943773a0258fa81b84d710d36e.jpg\" _src=\"http://yanxuan.nosdn.127.net/dfbfde943773a0258fa81b84d710d36e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/60d64bb0ac51346dc39d266beacdb846.jpg\" _src=\"http://yanxuan.nosdn.127.net/60d64bb0ac51346dc39d266beacdb846.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6c50c0fd364d6b9a8646d0da75ce48f6.jpg\" _src=\"http://yanxuan.nosdn.127.net/6c50c0fd364d6b9a8646d0da75ce48f6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b24da9df819efdf9e110bb2228eadf0d.jpg\" _src=\"http://yanxuan.nosdn.127.net/b24da9df819efdf9e110bb2228eadf0d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3cbbd9ec8dd41be2b35bf49842b67d86.jpg\" _src=\"http://yanxuan.nosdn.127.net/3cbbd9ec8dd41be2b35bf49842b67d86.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4d5bb53b92ed48f3f81980e41b51c0fc.jpg\" _src=\"http://yanxuan.nosdn.127.net/4d5bb53b92ed48f3f81980e41b51c0fc.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d75a8fd77357f9a74a36fd7bfa7cebed.jpg\" _src=\"http://yanxuan.nosdn.127.net/d75a8fd77357f9a74a36fd7bfa7cebed.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2dd8069e6739d732a53c25c74c0b2a89.jpg\" _src=\"http://yanxuan.nosdn.127.net/2dd8069e6739d732a53c25c74c0b2a89.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d7b4e172f8fd168e28854c3d8d04c56f.jpg\" _src=\"http://yanxuan.nosdn.127.net/d7b4e172f8fd168e28854c3d8d04c56f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c8b981b58ffb3e0a75916def11e45493.jpg\" _src=\"http://yanxuan.nosdn.127.net/c8b981b58ffb3e0a75916def11e45493.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0fb12dd3d12c8828a5cf2e16f17a8f27.jpg\" _src=\"http://yanxuan.nosdn.127.net/0fb12dd3d12c8828a5cf2e16f17a8f27.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8df57201eb9f5e7b576a6ccc31286e8f.jpg\" _src=\"http://yanxuan.nosdn.127.net/8df57201eb9f5e7b576a6ccc31286e8f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5f86f20ab83206abfdd682418e3cd3ed.jpg\" _src=\"http://yanxuan.nosdn.127.net/5f86f20ab83206abfdd682418e3cd3ed.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4c64ea783c9bd6dd2cb51b9978769edb.jpg\" _src=\"http://yanxuan.nosdn.127.net/4c64ea783c9bd6dd2cb51b9978769edb.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/104dca8bdfb6413fed5379a5b04eec10.jpg\" _src=\"http://yanxuan.nosdn.127.net/104dca8bdfb6413fed5379a5b04eec10.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2cfb7760b81f0a82bdbae5079bfcd5ec.jpg\" _src=\"http://yanxuan.nosdn.127.net/2cfb7760b81f0a82bdbae5079bfcd5ec.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1c6e09984c0599b5205f4d099cd5cfcb.jpg\" _src=\"http://yanxuan.nosdn.127.net/1c6e09984c0599b5205f4d099cd5cfcb.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e32f3a0bbc7ba3ec49b69fa89ba7da39.jpg\" _src=\"http://yanxuan.nosdn.127.net/e32f3a0bbc7ba3ec49b69fa89ba7da39.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/408bf6b2815efea1020278ff57204667.jpg\" _src=\"http://yanxuan.nosdn.127.net/408bf6b2815efea1020278ff57204667.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6707b10b7a14f7d2e7487f30a687cfb2.jpg\" _src=\"http://yanxuan.nosdn.127.net/6707b10b7a14f7d2e7487f30a687cfb2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0c4977d2ce8691f85575698990c13c3a.jpg\" _src=\"http://yanxuan.nosdn.127.net/0c4977d2ce8691f85575698990c13c3a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/22213164e3ce12c23260519cc5f2dd7f.jpg\" _src=\"http://yanxuan.nosdn.127.net/22213164e3ce12c23260519cc5f2dd7f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a9c8f7fda81f79cec8e75404386677c0.jpg\" _src=\"http://yanxuan.nosdn.127.net/a9c8f7fda81f79cec8e75404386677c0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b1e5093b54f817ed1906fc58e7494790.jpg\" _src=\"http://yanxuan.nosdn.127.net/b1e5093b54f817ed1906fc58e7494790.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/162452d2cb5ad3348862d5b1da7348c5.jpg\" _src=\"http://yanxuan.nosdn.127.net/162452d2cb5ad3348862d5b1da7348c5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f8f6de9bc947bed7d5cebfe1f49a786d.jpg\" _src=\"http://yanxuan.nosdn.127.net/f8f6de9bc947bed7d5cebfe1f49a786d.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '8', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/8132003a8940c7056960c3c5fce59903.jpg', 'http://yanxuan.nosdn.127.net/23e0203f1512f33e605f61c28fa03d2d.png', '59.00', '948', '1056032', '0.00', '限时购', '', '0.00', '0', '0', '0', '64.90', null, null, null, null);
  621. INSERT INTO `nideshop_goods` VALUES ('1055022', '1012003', '1055022', '磨砂杆直杆中性笔', '0', '100', '', '高韧笔杆,书写不疲惫', '', '1', '2017-08-30 11:40:11', '7', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/57c9250bdc9876a1c4878f9256632d48.png', 'http://yanxuan.nosdn.127.net/c7c74a96eacb29455dbf557b840eaaf5.png', '4.90', '19759', '1056048', '0.00', '限时购', '', '0.00', '0', '0', '0', '5.39', null, null, null, null);
  622. INSERT INTO `nideshop_goods` VALUES ('1056002', '1010002', '1056002', '男式玩色内裤', '0', '100', '', '德国工艺,多色随搭', '', '1', '2017-08-30 11:40:11', '7', '0', '0', '0.00', '0.00', '0', '条', 'http://yanxuan.nosdn.127.net/fee5c31b4010b91ecc88e971b31f85e0.png', 'http://yanxuan.nosdn.127.net/922fdbe007033f7a88f7ebc57c3d1e75.png', '59.00', '14859', '1057029', '0.00', '限时购', '', '0.00', '0', '0', '0', '64.90', null, null, null, null);
  623. INSERT INTO `nideshop_goods` VALUES ('1057036', '1008002', '1057036', '日式纯色水洗亚麻抱枕', '1001000', '100', '', '水洗亚麻,透气亲肤', '<p><img src=\"http://yanxuan.nosdn.127.net/6b69f7597ccffd27d77467d9d04eb294.jpg\" _src=\"http://yanxuan.nosdn.127.net/6b69f7597ccffd27d77467d9d04eb294.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a89ca371ef07355c1feb293db961bd30.jpg\" _src=\"http://yanxuan.nosdn.127.net/a89ca371ef07355c1feb293db961bd30.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2076e89c5f8fde4f44f918bd02d18eb7.jpg\" _src=\"http://yanxuan.nosdn.127.net/2076e89c5f8fde4f44f918bd02d18eb7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5c9111e4dcc13cb41db98f68086cc620.jpg\" _src=\"http://yanxuan.nosdn.127.net/5c9111e4dcc13cb41db98f68086cc620.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8f0645abcf883e7a863f32ce95f3c26b.jpg\" _src=\"http://yanxuan.nosdn.127.net/8f0645abcf883e7a863f32ce95f3c26b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/76a2b12f2d0f48f268d18b0ca0d1d6bb.jpg\" _src=\"http://yanxuan.nosdn.127.net/76a2b12f2d0f48f268d18b0ca0d1d6bb.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a91f75159867f33a91f4e9992e00afa1.jpg\" _src=\"http://yanxuan.nosdn.127.net/a91f75159867f33a91f4e9992e00afa1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/93de61256a8ff3a8aa4bb90847ff454e.jpg\" _src=\"http://yanxuan.nosdn.127.net/93de61256a8ff3a8aa4bb90847ff454e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f611f99bea2920881e1421c110970234.jpg\" _src=\"http://yanxuan.nosdn.127.net/f611f99bea2920881e1421c110970234.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a292339423f141ad5d7a4011ea316956.jpg\" _src=\"http://yanxuan.nosdn.127.net/a292339423f141ad5d7a4011ea316956.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2045ae4f861d9eae6af351b9d82c9239.jpg\" _src=\"http://yanxuan.nosdn.127.net/2045ae4f861d9eae6af351b9d82c9239.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/398718a6d579c4af5f255909283e44a2.jpg\" _src=\"http://yanxuan.nosdn.127.net/398718a6d579c4af5f255909283e44a2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5be95e2db627908d23605fe042af2937.jpg\" _src=\"http://yanxuan.nosdn.127.net/5be95e2db627908d23605fe042af2937.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/50a4fa0f67aa85dfaad36695225fe2f8.jpg\" _src=\"http://yanxuan.nosdn.127.net/50a4fa0f67aa85dfaad36695225fe2f8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7c825e297cfbaaae632146a55c61dc3c.jpg\" _src=\"http://yanxuan.nosdn.127.net/7c825e297cfbaaae632146a55c61dc3c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/261c7819e7e9ac165e64cae88a59f70c.jpg\" _src=\"http://yanxuan.nosdn.127.net/261c7819e7e9ac165e64cae88a59f70c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ec83f40d91fcc79f59a2479dffeb4565.jpg\" _src=\"http://yanxuan.nosdn.127.net/ec83f40d91fcc79f59a2479dffeb4565.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/26f3e85402086b7d261a650e244dc676.jpg\" _src=\"http://yanxuan.nosdn.127.net/26f3e85402086b7d261a650e244dc676.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/dccb68f0d97112d245ab1924744b94b8.jpg\" _src=\"http://yanxuan.nosdn.127.net/dccb68f0d97112d245ab1924744b94b8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/aaba69949efd7ed85e72071f4ade4945.jpg\" _src=\"http://yanxuan.nosdn.127.net/aaba69949efd7ed85e72071f4ade4945.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3f23300061e5cf871e86a51f0012e885.jpg\" _src=\"http://yanxuan.nosdn.127.net/3f23300061e5cf871e86a51f0012e885.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a55eedca057e0c973549ac8f13b47800.jpg\" _src=\"http://yanxuan.nosdn.127.net/a55eedca057e0c973549ac8f13b47800.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/abf16e831285e3d97dbb60a3162e7968.jpg\" _src=\"http://yanxuan.nosdn.127.net/abf16e831285e3d97dbb60a3162e7968.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a9390c8dab9fc7d8c27ac9410eb0340c.jpg\" _src=\"http://yanxuan.nosdn.127.net/a9390c8dab9fc7d8c27ac9410eb0340c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8feb2be5afec5abe439cf1b42683373f.jpg\" _src=\"http://yanxuan.nosdn.127.net/8feb2be5afec5abe439cf1b42683373f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/beb7620d0f685ab9c3af7ed18284b29e.jpg\" _src=\"http://yanxuan.nosdn.127.net/beb7620d0f685ab9c3af7ed18284b29e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7f70ceed2078d44d747a9ce369feee9e.jpg\" _src=\"http://yanxuan.nosdn.127.net/7f70ceed2078d44d747a9ce369feee9e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5469e219bd5347568337746b257f094e.jpg\" _src=\"http://yanxuan.nosdn.127.net/5469e219bd5347568337746b257f094e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a177a6b6e58580809330895ebdbaff6b.jpg\" _src=\"http://yanxuan.nosdn.127.net/a177a6b6e58580809330895ebdbaff6b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9db0090d56ab757babb2ba661726cbe3.jpg\" _src=\"http://yanxuan.nosdn.127.net/9db0090d56ab757babb2ba661726cbe3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6363637e0dd2fc670745c217b2a5cbfc.jpg\" _src=\"http://yanxuan.nosdn.127.net/6363637e0dd2fc670745c217b2a5cbfc.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1af1bde98f1497f591f62bff99ccca54.jpg\" _src=\"http://yanxuan.nosdn.127.net/1af1bde98f1497f591f62bff99ccca54.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/69d034b353ae2e6e30afb6c21483690f.jpg\" _src=\"http://yanxuan.nosdn.127.net/69d034b353ae2e6e30afb6c21483690f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4e29d6ac5ed040d63847ca456a179d43.jpg\" _src=\"http://yanxuan.nosdn.127.net/4e29d6ac5ed040d63847ca456a179d43.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/29e460fba57f67cd83121f6cb917cfbd.jpg\" _src=\"http://yanxuan.nosdn.127.net/29e460fba57f67cd83121f6cb917cfbd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/16090c02f4d4b76c6be82d98e489586e.jpg\" _src=\"http://yanxuan.nosdn.127.net/16090c02f4d4b76c6be82d98e489586e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c840eb66cf002227c52a13fbe55f657b.jpg\" _src=\"http://yanxuan.nosdn.127.net/c840eb66cf002227c52a13fbe55f657b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/16f65265b0942a60f3241704dc29be13.jpg\" _src=\"http://yanxuan.nosdn.127.net/16f65265b0942a60f3241704dc29be13.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/54a63da54b4e80867d8cd92d1ea9576e.jpg\" _src=\"http://yanxuan.nosdn.127.net/54a63da54b4e80867d8cd92d1ea9576e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ebd0b906076850983e5a2aae9f667ce7.jpg\" _src=\"http://yanxuan.nosdn.127.net/ebd0b906076850983e5a2aae9f667ce7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bbf32cdc82643a85c12ff05ea88088ad.jpg\" _src=\"http://yanxuan.nosdn.127.net/bbf32cdc82643a85c12ff05ea88088ad.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ca6e3ccc3725c3f58338b62a5a0655d3.jpg\" _src=\"http://yanxuan.nosdn.127.net/ca6e3ccc3725c3f58338b62a5a0655d3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6ef02962e6155f811566aad168dabbec.jpg\" _src=\"http://yanxuan.nosdn.127.net/6ef02962e6155f811566aad168dabbec.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/832735166071f05288ffd347dff58ee6.jpg\" _src=\"http://yanxuan.nosdn.127.net/832735166071f05288ffd347dff58ee6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4fc490c4e9a0a0fa0affd317b8526f4e.jpg\" _src=\"http://yanxuan.nosdn.127.net/4fc490c4e9a0a0fa0affd317b8526f4e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1b05f975f16c09f106c81533c1a249b0.jpg\" _src=\"http://yanxuan.nosdn.127.net/1b05f975f16c09f106c81533c1a249b0.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '6', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/f40fffd36cc85d5e0cf69417f4192ac1.jpg', 'http://yanxuan.nosdn.127.net/8a9ee5ba08929cc9e40b973607d2f633.png', '79.00', '1727', '1058097', '0.00', '限时购', '', '0.00', '0', '0', '0', '86.90', null, null, null, null);
  624. INSERT INTO `nideshop_goods` VALUES ('1064000', '1017000', '1064000', '清新条纹开放式宠物窝', '1015000', '100', '', '清凉触感,耐抓耐磨', '<p><img src=\"http://yanxuan.nosdn.127.net/8c548cb27c126404efe2450f2d27b499.jpg\" _src=\"http://yanxuan.nosdn.127.net/8c548cb27c126404efe2450f2d27b499.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/67c38eb5939bfe33d13b4b336633df66.jpg\" _src=\"http://yanxuan.nosdn.127.net/67c38eb5939bfe33d13b4b336633df66.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1593939bfdc309df4faeda6cc13795ce.jpg\" _src=\"http://yanxuan.nosdn.127.net/1593939bfdc309df4faeda6cc13795ce.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/19adc7cd503aa53cadbcb5719cfee8e6.jpg\" _src=\"http://yanxuan.nosdn.127.net/19adc7cd503aa53cadbcb5719cfee8e6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bb5ca4e6f1cd024a10b9bc37b2db396b.jpg\" _src=\"http://yanxuan.nosdn.127.net/bb5ca4e6f1cd024a10b9bc37b2db396b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a5329ce259b9749db939845280eb2443.jpg\" _src=\"http://yanxuan.nosdn.127.net/a5329ce259b9749db939845280eb2443.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/dcbd4101079f3e86ace47f581c52d12d.jpg\" _src=\"http://yanxuan.nosdn.127.net/dcbd4101079f3e86ace47f581c52d12d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4cd95e21492d1197182ceeacdb3a9973.jpg\" _src=\"http://yanxuan.nosdn.127.net/4cd95e21492d1197182ceeacdb3a9973.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/681b12dba20b3ec4cc8220907453411b.jpg\" _src=\"http://yanxuan.nosdn.127.net/681b12dba20b3ec4cc8220907453411b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d2d4d84fd984e16caf44b2a0418f8427.jpg\" _src=\"http://yanxuan.nosdn.127.net/d2d4d84fd984e16caf44b2a0418f8427.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '5', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/db1c3f9146192d3ef43b26dd6381deba.jpg', 'http://yanxuan.nosdn.127.net/ebe118f94ddafe82c4a8cd51da6ff183.png', '79.00', '392', '1066000', '0.00', '限时购', '', '0.00', '0', '0', '0', '86.90', null, null, null, null);
  625. INSERT INTO `nideshop_goods` VALUES ('1064002', '1017000', '1064002', '秋冬加厚条纹宠物窝', '1015000', '100', '', '时尚牛仔,加厚温暖', '<p><img src=\"http://yanxuan.nosdn.127.net/86c5f5a3459ef9c80005b8aa166978d3.jpg\" _src=\"http://yanxuan.nosdn.127.net/86c5f5a3459ef9c80005b8aa166978d3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/75523f35d5f7241e050e947327dcf505.jpg\" _src=\"http://yanxuan.nosdn.127.net/75523f35d5f7241e050e947327dcf505.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c8806274559067d9068029a13170201b.jpg\" _src=\"http://yanxuan.nosdn.127.net/c8806274559067d9068029a13170201b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c3e9ab7fd7b25f737fb36eabf5e12a7a.jpg\" _src=\"http://yanxuan.nosdn.127.net/c3e9ab7fd7b25f737fb36eabf5e12a7a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/36f48ab394369b521d10d4a88234673c.jpg\" _src=\"http://yanxuan.nosdn.127.net/36f48ab394369b521d10d4a88234673c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5166fb4e87f789e975216805a7b7adaa.jpg\" _src=\"http://yanxuan.nosdn.127.net/5166fb4e87f789e975216805a7b7adaa.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/052e9fc4b166d8721274d28d61d4e126.jpg\" _src=\"http://yanxuan.nosdn.127.net/052e9fc4b166d8721274d28d61d4e126.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/173830764375470fc8f29d97fbe3da72.jpg\" _src=\"http://yanxuan.nosdn.127.net/173830764375470fc8f29d97fbe3da72.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3ec75067b43329566a21963dc53e448d.jpg\" _src=\"http://yanxuan.nosdn.127.net/3ec75067b43329566a21963dc53e448d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1e497b21b1e274a3bff78099cbb934eb.jpg\" _src=\"http://yanxuan.nosdn.127.net/1e497b21b1e274a3bff78099cbb934eb.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e7bda641422377741f5384f006fd52a4.jpg\" _src=\"http://yanxuan.nosdn.127.net/e7bda641422377741f5384f006fd52a4.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '6', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/5e80c410c68ac2663cb886c0434a278d.jpg', 'http://yanxuan.nosdn.127.net/48dbfe207b2203ef45055dcc9cedbe60.png', '69.00', '3385', '1066002', '0.00', '限时购', '', '0.00', '0', '0', '0', '75.90', null, null, null, null);
  626. INSERT INTO `nideshop_goods` VALUES ('1064003', '1017000', '1064003', '六边形南瓜式宠物窝', '1015000', '100', '', '给萌宠柔软包裹的归家感', '<p><img src=\"http://yanxuan.nosdn.127.net/44f4fe5b43365884131b07c25b3c54ca.jpg\" _src=\"http://yanxuan.nosdn.127.net/44f4fe5b43365884131b07c25b3c54ca.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/beabfe6fd0717daa3544ac7c2d82b430.jpg\" _src=\"http://yanxuan.nosdn.127.net/beabfe6fd0717daa3544ac7c2d82b430.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/25467804bf2eed0d07f171c10f798d2e.jpg\" _src=\"http://yanxuan.nosdn.127.net/25467804bf2eed0d07f171c10f798d2e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7fced8c058df228bed15bc8822fa871c.jpg\" _src=\"http://yanxuan.nosdn.127.net/7fced8c058df228bed15bc8822fa871c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a3eea3bd19f75f01a7ed424be3aa9d42.jpg\" _src=\"http://yanxuan.nosdn.127.net/a3eea3bd19f75f01a7ed424be3aa9d42.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e30076799805a678af405dce6ccf6d62.jpg\" _src=\"http://yanxuan.nosdn.127.net/e30076799805a678af405dce6ccf6d62.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ac4cdbb579512a23287b4a43639b5e34.jpg\" _src=\"http://yanxuan.nosdn.127.net/ac4cdbb579512a23287b4a43639b5e34.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2cf8b27e7c89f0a46cbd330bb81ab1a5.jpg\" _src=\"http://yanxuan.nosdn.127.net/2cf8b27e7c89f0a46cbd330bb81ab1a5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3021babd417d3b3791db8b9684c9a07e.jpg\" _src=\"http://yanxuan.nosdn.127.net/3021babd417d3b3791db8b9684c9a07e.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a72b172bf0e8ad6d0d6735750e1d375c.jpg\" _src=\"http://yanxuan.nosdn.127.net/a72b172bf0e8ad6d0d6735750e1d375c.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '4', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/16acbbf7885d63e56c71a7eb7ef75a02.jpg', 'http://yanxuan.nosdn.127.net/58ed94b63b39339e7814f1339013793c.png', '89.00', '1037', '1066004', '0.00', '限时购', '', '0.00', '0', '0', '0', '97.90', null, null, null, null);
  627. INSERT INTO `nideshop_goods` VALUES ('1064004', '1017000', '1064004', '方形封闭式宠物窝', '1015000', '100', '', '封闭式设计猫咪独享', '<p><img src=\"http://yanxuan.nosdn.127.net/09f022af55341d80d5d3ad620ce6d779.jpg\" _src=\"http://yanxuan.nosdn.127.net/09f022af55341d80d5d3ad620ce6d779.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d75ea4c580effd435ed00f652c01a778.jpg\" _src=\"http://yanxuan.nosdn.127.net/d75ea4c580effd435ed00f652c01a778.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8fad82d53a0494c625608786f5931950.jpg\" _src=\"http://yanxuan.nosdn.127.net/8fad82d53a0494c625608786f5931950.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0a1d8a1cb8a57ae7921f34a9d761f3aa.jpg\" _src=\"http://yanxuan.nosdn.127.net/0a1d8a1cb8a57ae7921f34a9d761f3aa.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/261670eea6a48c7e307393ce295e2ce5.jpg\" _src=\"http://yanxuan.nosdn.127.net/261670eea6a48c7e307393ce295e2ce5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/11bfc68005a0ce9b80e01f614a259af7.jpg\" _src=\"http://yanxuan.nosdn.127.net/11bfc68005a0ce9b80e01f614a259af7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/688f822cf34c656367cccfb0d9f72151.jpg\" _src=\"http://yanxuan.nosdn.127.net/688f822cf34c656367cccfb0d9f72151.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f3721906d7c6c0c30193d4778eff9e4e.jpg\" _src=\"http://yanxuan.nosdn.127.net/f3721906d7c6c0c30193d4778eff9e4e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/090e9c28dc2736a1246ef914e35634c4.jpg\" _src=\"http://yanxuan.nosdn.127.net/090e9c28dc2736a1246ef914e35634c4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f31d497ae028ff2c2e933d712ccc055d.jpg\" _src=\"http://yanxuan.nosdn.127.net/f31d497ae028ff2c2e933d712ccc055d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a424b9e51b854c4abf61b8c1c1cdf1aa.jpg\" _src=\"http://yanxuan.nosdn.127.net/a424b9e51b854c4abf61b8c1c1cdf1aa.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7660d03152dea988256eac3be92541b3.jpg\" _src=\"http://yanxuan.nosdn.127.net/7660d03152dea988256eac3be92541b3.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '7', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/09bcb1482b8b51920bda67638e7249e8.jpg', 'http://yanxuan.nosdn.127.net/337da7094c1df295ca0f0b8baa55b2d5.png', '99.00', '618', '1066005', '0.00', '限时购', '', '0.00', '0', '0', '0', '108.90', null, null, null, null);
  628. INSERT INTO `nideshop_goods` VALUES ('1064006', '1008008', '1064006', '3D纯棉护颈加翼记忆枕', '0', '100', '', '深色面料,安睡护颈', '<p><img src=\"http://yanxuan.nosdn.127.net/5ea4edcd9cbd70f9d347a0191f5ac1e2.jpg\" _src=\"http://yanxuan.nosdn.127.net/5ea4edcd9cbd70f9d347a0191f5ac1e2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5ffee41deb5a0b0017d5ac3f7feda520.jpg\" _src=\"http://yanxuan.nosdn.127.net/5ffee41deb5a0b0017d5ac3f7feda520.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4fa38f7a466b792826d03a7fc094b205.jpg\" _src=\"http://yanxuan.nosdn.127.net/4fa38f7a466b792826d03a7fc094b205.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4dc78b172a7818190aee72bf7c5a55c9.jpg\" _src=\"http://yanxuan.nosdn.127.net/4dc78b172a7818190aee72bf7c5a55c9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/086e2994f14897353fa9413f886e88f9.jpg\" _src=\"http://yanxuan.nosdn.127.net/086e2994f14897353fa9413f886e88f9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e46cdebba21e08125e9317c32679ff9f.jpg\" _src=\"http://yanxuan.nosdn.127.net/e46cdebba21e08125e9317c32679ff9f.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/86ebedb440da6e2af676554c39bfd653.jpg\" _src=\"http://yanxuan.nosdn.127.net/86ebedb440da6e2af676554c39bfd653.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5b6728641afdc97f2fbb50c2b886c355.jpg\" _src=\"http://yanxuan.nosdn.127.net/5b6728641afdc97f2fbb50c2b886c355.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a20cb1abd9e46768d63c0a03e780b921.jpg\" _src=\"http://yanxuan.nosdn.127.net/a20cb1abd9e46768d63c0a03e780b921.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/974d424a27d3502b203e66ad5b708e62.jpg\" _src=\"http://yanxuan.nosdn.127.net/974d424a27d3502b203e66ad5b708e62.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2c2df5c9e231ed917745ab770afe668d.jpg\" _src=\"http://yanxuan.nosdn.127.net/2c2df5c9e231ed917745ab770afe668d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/dc6ac3894803fe0030141852bd639558.jpg\" _src=\"http://yanxuan.nosdn.127.net/dc6ac3894803fe0030141852bd639558.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/aaedff798dfbe28754bad944434ef654.jpg\" _src=\"http://yanxuan.nosdn.127.net/aaedff798dfbe28754bad944434ef654.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d68bb36c8d47486b64e1551540887da7.jpg\" _src=\"http://yanxuan.nosdn.127.net/d68bb36c8d47486b64e1551540887da7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/35a5871cbc972b340191c6f558f4eb5d.jpg\" _src=\"http://yanxuan.nosdn.127.net/35a5871cbc972b340191c6f558f4eb5d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7256ce7e7549fa545d8088e88cb9a200.jpg\" _src=\"http://yanxuan.nosdn.127.net/7256ce7e7549fa545d8088e88cb9a200.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/843e2e7ffd5d80ee3a714df546e5d76b.jpg\" _src=\"http://yanxuan.nosdn.127.net/843e2e7ffd5d80ee3a714df546e5d76b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cc7115f361220617b7d66be8a76346cc.jpg\" _src=\"http://yanxuan.nosdn.127.net/cc7115f361220617b7d66be8a76346cc.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/876075252dfc043c15a86e6d2415b4c9.jpg\" _src=\"http://yanxuan.nosdn.127.net/876075252dfc043c15a86e6d2415b4c9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0cf1cdc2efd85cb5934515ad68975300.jpg\" _src=\"http://yanxuan.nosdn.127.net/0cf1cdc2efd85cb5934515ad68975300.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/df538abb58fb3ff667f919f9688e68c0.jpg\" _src=\"http://yanxuan.nosdn.127.net/df538abb58fb3ff667f919f9688e68c0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e85c449ea1794d6925af9187e1dde6d0.jpg\" _src=\"http://yanxuan.nosdn.127.net/e85c449ea1794d6925af9187e1dde6d0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7c628d454aba737cd8fbd5bb52bb41a0.jpg\" _src=\"http://yanxuan.nosdn.127.net/7c628d454aba737cd8fbd5bb52bb41a0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1e3b34066432dd830d7dea59f5172622.jpg\" _src=\"http://yanxuan.nosdn.127.net/1e3b34066432dd830d7dea59f5172622.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8edc3903956456e4fbbd6844d1843079.jpg\" _src=\"http://yanxuan.nosdn.127.net/8edc3903956456e4fbbd6844d1843079.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8ae7b238aa8be68f915b27c064fc1234.jpg\" _src=\"http://yanxuan.nosdn.127.net/8ae7b238aa8be68f915b27c064fc1234.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a7d59a45d54cbeb7fd3d4e3a9f6f20de.jpg\" _src=\"http://yanxuan.nosdn.127.net/a7d59a45d54cbeb7fd3d4e3a9f6f20de.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/060287eacf5855100691a931615753a6.jpg\" _src=\"http://yanxuan.nosdn.127.net/060287eacf5855100691a931615753a6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/154e9d3945f092141030f9e0ffe00d75.jpg\" _src=\"http://yanxuan.nosdn.127.net/154e9d3945f092141030f9e0ffe00d75.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/538caa5366b10fce92532c4094be7b41.jpg\" _src=\"http://yanxuan.nosdn.127.net/538caa5366b10fce92532c4094be7b41.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e08d88f1f11877e188f63d9abe319e50.jpg\" _src=\"http://yanxuan.nosdn.127.net/e08d88f1f11877e188f63d9abe319e50.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a8b31045cb0c2627f7f31bd6b0900482.jpg\" _src=\"http://yanxuan.nosdn.127.net/a8b31045cb0c2627f7f31bd6b0900482.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/33e654f6e06a9b39982f73ce9fbffecd.jpg\" _src=\"http://yanxuan.nosdn.127.net/33e654f6e06a9b39982f73ce9fbffecd.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '11', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/fc7ac414d4c0931b52013f70d8f8cc66.jpg', 'http://yanxuan.nosdn.127.net/35306b8e65932dd28a5628d0bb44a044.png', '129.00', '230', '1066007', '0.00', '限时购', '', '0.00', '0', '0', '0', '141.90', null, null, null, null);
  629. INSERT INTO `nideshop_goods` VALUES ('1064007', '1008008', '1064007', '3D纯棉护颈双人记忆枕', '0', '100', '', '纯棉呵护,属于你我的记忆', '<p><img src=\"http://yanxuan.nosdn.127.net/412aea28b2b2a73c2c72d6727cf393a1.jpg\" _src=\"http://yanxuan.nosdn.127.net/412aea28b2b2a73c2c72d6727cf393a1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a4a0702b3c4f283600ba6d0cf789f7de.jpg\" _src=\"http://yanxuan.nosdn.127.net/a4a0702b3c4f283600ba6d0cf789f7de.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/730b0efa8afa256d23501ec96a5e2ddd.jpg\" _src=\"http://yanxuan.nosdn.127.net/730b0efa8afa256d23501ec96a5e2ddd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/81642b7941c7b8bdbdc4dc77ffcc5578.jpg\" _src=\"http://yanxuan.nosdn.127.net/81642b7941c7b8bdbdc4dc77ffcc5578.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/593d154ce6d6f420331932e6794e991b.jpg\" _src=\"http://yanxuan.nosdn.127.net/593d154ce6d6f420331932e6794e991b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f1c2516ab2aef32792a69942c292e813.jpg\" _src=\"http://yanxuan.nosdn.127.net/f1c2516ab2aef32792a69942c292e813.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c3c8f152cc56156cd8f4a5a98acf43b5.jpg\" _src=\"http://yanxuan.nosdn.127.net/c3c8f152cc56156cd8f4a5a98acf43b5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9665043bbe3711d5d3ea3cab77eddd2b.jpg\" _src=\"http://yanxuan.nosdn.127.net/9665043bbe3711d5d3ea3cab77eddd2b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a9096c64c682e547fbdaf1b289196ed5.jpg\" _src=\"http://yanxuan.nosdn.127.net/a9096c64c682e547fbdaf1b289196ed5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4beee3ba8d300d83e2c6480773c5a972.jpg\" _src=\"http://yanxuan.nosdn.127.net/4beee3ba8d300d83e2c6480773c5a972.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9cbff77e1a0e2db87e173257cd99e8e1.jpg\" _src=\"http://yanxuan.nosdn.127.net/9cbff77e1a0e2db87e173257cd99e8e1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b35b8cbd427cf60ebba8dcce0c28b539.jpg\" _src=\"http://yanxuan.nosdn.127.net/b35b8cbd427cf60ebba8dcce0c28b539.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a4c24df5c03097c024198509c61d13c5.jpg\" _src=\"http://yanxuan.nosdn.127.net/a4c24df5c03097c024198509c61d13c5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/46d41a03a6e247db80941864feb08d10.jpg\" _src=\"http://yanxuan.nosdn.127.net/46d41a03a6e247db80941864feb08d10.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f0949c665b92f97cd784c1f987be48f2.jpg\" _src=\"http://yanxuan.nosdn.127.net/f0949c665b92f97cd784c1f987be48f2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fd0857dbfa145f284871ea82b0ce5bdf.jpg\" _src=\"http://yanxuan.nosdn.127.net/fd0857dbfa145f284871ea82b0ce5bdf.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ce93e3abde3c15477d40295b53608327.jpg\" _src=\"http://yanxuan.nosdn.127.net/ce93e3abde3c15477d40295b53608327.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/330c817b824269d069e49545ab001861.jpg\" _src=\"http://yanxuan.nosdn.127.net/330c817b824269d069e49545ab001861.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6cc67bcfe20910e921b5125282f8f781.jpg\" _src=\"http://yanxuan.nosdn.127.net/6cc67bcfe20910e921b5125282f8f781.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/06167a2aa51379b28bd2a3b74f7c6e3a.jpg\" _src=\"http://yanxuan.nosdn.127.net/06167a2aa51379b28bd2a3b74f7c6e3a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/50f9908d4e3cbbafd98608dda4546f4c.jpg\" _src=\"http://yanxuan.nosdn.127.net/50f9908d4e3cbbafd98608dda4546f4c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3d11343ac19faac774685171bbe16968.jpg\" _src=\"http://yanxuan.nosdn.127.net/3d11343ac19faac774685171bbe16968.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/068b8d329e8199f4e8b1a9690c3bc14c.jpg\" _src=\"http://yanxuan.nosdn.127.net/068b8d329e8199f4e8b1a9690c3bc14c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4e21f0029ccbbd476c03fd1a019b422a.jpg\" _src=\"http://yanxuan.nosdn.127.net/4e21f0029ccbbd476c03fd1a019b422a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/20ca6208612904cbc2991878940a116d.jpg\" _src=\"http://yanxuan.nosdn.127.net/20ca6208612904cbc2991878940a116d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/593d99720e59b5833d5a7b0628cdf808.jpg\" _src=\"http://yanxuan.nosdn.127.net/593d99720e59b5833d5a7b0628cdf808.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/444772cbd5f5d7345161d7ec0f2dd15a.jpg\" _src=\"http://yanxuan.nosdn.127.net/444772cbd5f5d7345161d7ec0f2dd15a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c5028a4c384c1f978b2823511711ac74.jpg\" _src=\"http://yanxuan.nosdn.127.net/c5028a4c384c1f978b2823511711ac74.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/70b25a0d4f606bea16d24faabac5dc58.jpg\" _src=\"http://yanxuan.nosdn.127.net/70b25a0d4f606bea16d24faabac5dc58.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0d8acaaea02d7bd40b3b61db2481356f.jpg\" _src=\"http://yanxuan.nosdn.127.net/0d8acaaea02d7bd40b3b61db2481356f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ddbc782913dc6fb3cc1b08899995edc8.jpg\" _src=\"http://yanxuan.nosdn.127.net/ddbc782913dc6fb3cc1b08899995edc8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/81a914fb23780ee53e722d570352d4e2.jpg\" _src=\"http://yanxuan.nosdn.127.net/81a914fb23780ee53e722d570352d4e2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c45103aa5110765ad12a8e6343f161f3.jpg\" _src=\"http://yanxuan.nosdn.127.net/c45103aa5110765ad12a8e6343f161f3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/71f0b88b4ed59f6d3bb6093270b2047e.jpg\" _src=\"http://yanxuan.nosdn.127.net/71f0b88b4ed59f6d3bb6093270b2047e.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '12', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/e1b306965757f9ebf849b2ab80e688ef.jpg', 'http://yanxuan.nosdn.127.net/d7bd87f8cc1965b25be33a8aad53812b.png', '249.00', '29', '1066008', '0.00', '限时购', '', '0.00', '0', '0', '0', '273.90', null, null, null, null);
  630. INSERT INTO `nideshop_goods` VALUES ('1064021', '1008016', '1064021', '清欢日式可调节台灯', '0', '100', '', '木铁结合,全体可调节', '<p><img src=\"http://yanxuan.nosdn.127.net/15e1d839714a67bff57259d61d7ca2e5.jpg\" _src=\"http://yanxuan.nosdn.127.net/15e1d839714a67bff57259d61d7ca2e5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/43ba9bbc931f954e0aaeb90631a179ac.jpg\" _src=\"http://yanxuan.nosdn.127.net/43ba9bbc931f954e0aaeb90631a179ac.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ac5ca160c90c1a700160d5d024ad611b.jpg\" _src=\"http://yanxuan.nosdn.127.net/ac5ca160c90c1a700160d5d024ad611b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0f2d157d83955d5c616dc3d647da6f66.jpg\" _src=\"http://yanxuan.nosdn.127.net/0f2d157d83955d5c616dc3d647da6f66.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a2ee5af100a5432f0614e9717196787e.jpg\" _src=\"http://yanxuan.nosdn.127.net/a2ee5af100a5432f0614e9717196787e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/91fb28c19d495e47797ef250940ab618.jpg\" _src=\"http://yanxuan.nosdn.127.net/91fb28c19d495e47797ef250940ab618.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6f37742eed13ea12d8c341e1e3b988e9.jpg\" _src=\"http://yanxuan.nosdn.127.net/6f37742eed13ea12d8c341e1e3b988e9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5ff15b419a0248b7b53bd60286067766.jpg\" _src=\"http://yanxuan.nosdn.127.net/5ff15b419a0248b7b53bd60286067766.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/21c4dacdc844da911e43eaac0975908a.jpg\" _src=\"http://yanxuan.nosdn.127.net/21c4dacdc844da911e43eaac0975908a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3f8741dd387c51378f78bdbf65856a41.jpg\" _src=\"http://yanxuan.nosdn.127.net/3f8741dd387c51378f78bdbf65856a41.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/dbe9726936999c62ac8bce3b620cd045.jpg\" _src=\"http://yanxuan.nosdn.127.net/dbe9726936999c62ac8bce3b620cd045.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d12ad2de3cb646e76380c064ccfe038f.jpg\" _src=\"http://yanxuan.nosdn.127.net/d12ad2de3cb646e76380c064ccfe038f.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '3', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/0804833605816d03e57705a77f1b8aed.jpg', 'http://yanxuan.nosdn.127.net/c83a3881704094ddd3970099ca77d115.png', '199.00', '0', '1066050', '0.00', '限时购', '', '0.00', '0', '0', '0', '218.90', null, null, null, null);
  631. INSERT INTO `nideshop_goods` VALUES ('1064022', '1008016', '1064022', '清欢日式可调节落地灯', '0', '100', '', '便易调节,风格百搭', '<p><img src=\"http://yanxuan.nosdn.127.net/4fa5176b8bbfd702b44357c95f8a044b.jpg\" _src=\"http://yanxuan.nosdn.127.net/4fa5176b8bbfd702b44357c95f8a044b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bd236663c583e2e1ae6cb94d12a8af00.jpg\" _src=\"http://yanxuan.nosdn.127.net/bd236663c583e2e1ae6cb94d12a8af00.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/494586609ad676174c98218cc96e061b.jpg\" _src=\"http://yanxuan.nosdn.127.net/494586609ad676174c98218cc96e061b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e57043896c48d2b71796d375a2b30b08.jpg\" _src=\"http://yanxuan.nosdn.127.net/e57043896c48d2b71796d375a2b30b08.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f041fa43b81139eaa3034cc67e782980.jpg\" _src=\"http://yanxuan.nosdn.127.net/f041fa43b81139eaa3034cc67e782980.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/791780fa3b258fb5a9a708fb9e372ab7.jpg\" _src=\"http://yanxuan.nosdn.127.net/791780fa3b258fb5a9a708fb9e372ab7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2c17e21c47b053843da3dd5a9c7c8d23.jpg\" _src=\"http://yanxuan.nosdn.127.net/2c17e21c47b053843da3dd5a9c7c8d23.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4fc69c1432555238f08d0501fe0f0326.jpg\" _src=\"http://yanxuan.nosdn.127.net/4fc69c1432555238f08d0501fe0f0326.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a3c503643ce94cf565405714d7ebf1dd.jpg\" _src=\"http://yanxuan.nosdn.127.net/a3c503643ce94cf565405714d7ebf1dd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3a4c5f3c5dcfccd2891d70c005adceb3.jpg\" _src=\"http://yanxuan.nosdn.127.net/3a4c5f3c5dcfccd2891d70c005adceb3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/23a01690993a30f54ce5f0e28335dfaa.jpg\" _src=\"http://yanxuan.nosdn.127.net/23a01690993a30f54ce5f0e28335dfaa.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/44fc7b7c874bca097c9b29c362de9195.jpg\" _src=\"http://yanxuan.nosdn.127.net/44fc7b7c874bca097c9b29c362de9195.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/036b10c6d08a1d58708e5cd0bb2adb30.jpg\" _src=\"http://yanxuan.nosdn.127.net/036b10c6d08a1d58708e5cd0bb2adb30.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '2', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/4c892b7febf7cc94e335b749d3520fae.jpg', 'http://yanxuan.nosdn.127.net/a9c155e26d09e3c92b623f0472ed674a.png', '299.00', '24', '1066051', '0.00', '限时购', '', '0.00', '0', '0', '0', '328.90', null, null, null, null);
  632. INSERT INTO `nideshop_goods` VALUES ('1065004', '1011004', '1065004', '悦己日式木质落地镜', '0', '100', '', '流畅线条,日式简约', '<p><img src=\"http://yanxuan.nosdn.127.net/071505a555d7af3302888633ecf1a333.jpg\" _src=\"http://yanxuan.nosdn.127.net/071505a555d7af3302888633ecf1a333.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/63af8dab1db0b12a52eb57c7cdd13907.jpg\" _src=\"http://yanxuan.nosdn.127.net/63af8dab1db0b12a52eb57c7cdd13907.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e12daa804d477c788dc3fde7cbbbcf9c.jpg\" _src=\"http://yanxuan.nosdn.127.net/e12daa804d477c788dc3fde7cbbbcf9c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e1774e70b84d5649c3f59160366a8be2.jpg\" _src=\"http://yanxuan.nosdn.127.net/e1774e70b84d5649c3f59160366a8be2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6bc88b8ff219bbbb9c314a60a539ab76.jpg\" _src=\"http://yanxuan.nosdn.127.net/6bc88b8ff219bbbb9c314a60a539ab76.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/528a4a9baf15d763365769999e787564.jpg\" _src=\"http://yanxuan.nosdn.127.net/528a4a9baf15d763365769999e787564.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/afdc632bcb0604fb9a2dc692c6834c4e.jpg\" _src=\"http://yanxuan.nosdn.127.net/afdc632bcb0604fb9a2dc692c6834c4e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/38c34f66c7ec5ca66addf09ae943a613.jpg\" _src=\"http://yanxuan.nosdn.127.net/38c34f66c7ec5ca66addf09ae943a613.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/982421fefa534064491077cfb8386113.jpg\" _src=\"http://yanxuan.nosdn.127.net/982421fefa534064491077cfb8386113.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/de1abde1a9677876e9c376d931ec588a.jpg\" _src=\"http://yanxuan.nosdn.127.net/de1abde1a9677876e9c376d931ec588a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/272fc358498057cdd10f8f9dd99a86bd.jpg\" _src=\"http://yanxuan.nosdn.127.net/272fc358498057cdd10f8f9dd99a86bd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e997339dee9e99bf077d51dc1a3bec44.jpg\" _src=\"http://yanxuan.nosdn.127.net/e997339dee9e99bf077d51dc1a3bec44.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a58d59b86dfcaaa50c9a09d8395ed4a0.jpg\" _src=\"http://yanxuan.nosdn.127.net/a58d59b86dfcaaa50c9a09d8395ed4a0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d2f4cb3d00ebf750197e66eee3526c11.jpg\" _src=\"http://yanxuan.nosdn.127.net/d2f4cb3d00ebf750197e66eee3526c11.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/20618b212b6346536b1ee5bf41cf5dad.jpg\" _src=\"http://yanxuan.nosdn.127.net/20618b212b6346536b1ee5bf41cf5dad.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e7d06fa872740ca7da95fc4776dce3ec.jpg\" _src=\"http://yanxuan.nosdn.127.net/e7d06fa872740ca7da95fc4776dce3ec.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7a5f32728136b480c2c111ff1044ce83.jpg\" _src=\"http://yanxuan.nosdn.127.net/7a5f32728136b480c2c111ff1044ce83.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c13b162992646bdfa930f2700512d958.jpg\" _src=\"http://yanxuan.nosdn.127.net/c13b162992646bdfa930f2700512d958.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ed01c9ed90b3f7e612431513f0b9c208.jpg\" _src=\"http://yanxuan.nosdn.127.net/ed01c9ed90b3f7e612431513f0b9c208.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/06c384ef3116265888d3603b0174f5d7.jpg\" _src=\"http://yanxuan.nosdn.127.net/06c384ef3116265888d3603b0174f5d7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c830d6d5d40ddf9781a864b4c3bec83c.jpg\" _src=\"http://yanxuan.nosdn.127.net/c830d6d5d40ddf9781a864b4c3bec83c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/05a0002f0886f4376790d00c03112ed6.jpg\" _src=\"http://yanxuan.nosdn.127.net/05a0002f0886f4376790d00c03112ed6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bb2e6937b3cd8c8680f775801f7b26ca.jpg\" _src=\"http://yanxuan.nosdn.127.net/bb2e6937b3cd8c8680f775801f7b26ca.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/56debcbe3a03f1417952e4ac7c89c808.jpg\" _src=\"http://yanxuan.nosdn.127.net/56debcbe3a03f1417952e4ac7c89c808.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b356769c6bb5ddebd99edd7792c76aff.jpg\" _src=\"http://yanxuan.nosdn.127.net/b356769c6bb5ddebd99edd7792c76aff.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6b539c78b905f02ef2be70518d3ac0a1.jpg\" _src=\"http://yanxuan.nosdn.127.net/6b539c78b905f02ef2be70518d3ac0a1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/20d39e45843e2ee11507debc6ba7cd23.jpg\" _src=\"http://yanxuan.nosdn.127.net/20d39e45843e2ee11507debc6ba7cd23.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '5', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/78ca7abb8bfef0b770f012b713f2d8fc.png', 'http://yanxuan.nosdn.127.net/05977cf923857db0c44b405bd87b096b.png', '199.00', '118', '1068062', '0.00', '限时购', '', '0.00', '0', '0', '0', '218.90', null, null, null, null);
  633. INSERT INTO `nideshop_goods` VALUES ('1065005', '1011004', '1065005', '古风圆角木质落地镜', '0', '100', '', '简约设计,日式和风', '<p><img src=\"http://yanxuan.nosdn.127.net/ad4d677ba4fdc24389cf860f8743d9c0.jpg\" _src=\"http://yanxuan.nosdn.127.net/ad4d677ba4fdc24389cf860f8743d9c0.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/55efe9c6c03836106384240169988ced.jpg\" _src=\"http://yanxuan.nosdn.127.net/55efe9c6c03836106384240169988ced.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6ea288c48bee26165ec87685d750021f.jpg\" _src=\"http://yanxuan.nosdn.127.net/6ea288c48bee26165ec87685d750021f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1c37cd04324fd588756c967c86dd7411.jpg\" _src=\"http://yanxuan.nosdn.127.net/1c37cd04324fd588756c967c86dd7411.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ef1a1759bece97e234e6a77bae769da9.jpg\" _src=\"http://yanxuan.nosdn.127.net/ef1a1759bece97e234e6a77bae769da9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8f4872bc1e867dfd402a2294c020b1ff.jpg\" _src=\"http://yanxuan.nosdn.127.net/8f4872bc1e867dfd402a2294c020b1ff.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e079f0074555ce7277dcad6a979761b7.jpg\" _src=\"http://yanxuan.nosdn.127.net/e079f0074555ce7277dcad6a979761b7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/84e158a79a9866f94a571f05db594432.jpg\" _src=\"http://yanxuan.nosdn.127.net/84e158a79a9866f94a571f05db594432.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/44f454dd9f5381290758cb8206114625.jpg\" _src=\"http://yanxuan.nosdn.127.net/44f454dd9f5381290758cb8206114625.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ddaba7e0ddfc98f3c5b6a618eaa39561.jpg\" _src=\"http://yanxuan.nosdn.127.net/ddaba7e0ddfc98f3c5b6a618eaa39561.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9e38fef39f59f8c2e9fef58803927686.jpg\" _src=\"http://yanxuan.nosdn.127.net/9e38fef39f59f8c2e9fef58803927686.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/04cbc58190e01cd802d966aa784e5ba2.jpg\" _src=\"http://yanxuan.nosdn.127.net/04cbc58190e01cd802d966aa784e5ba2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e0680a0d1bc619337cc71e74674bb474.jpg\" _src=\"http://yanxuan.nosdn.127.net/e0680a0d1bc619337cc71e74674bb474.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9cbaa63130f7f1f1316824ef91aec45f.jpg\" _src=\"http://yanxuan.nosdn.127.net/9cbaa63130f7f1f1316824ef91aec45f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b9f63dae4b1138ee5eedeb591055fcdc.jpg\" _src=\"http://yanxuan.nosdn.127.net/b9f63dae4b1138ee5eedeb591055fcdc.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a4e03dcf4a426395943a7e426e1537cf.jpg\" _src=\"http://yanxuan.nosdn.127.net/a4e03dcf4a426395943a7e426e1537cf.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/535b1678f1193020ebdf857cc0714605.jpg\" _src=\"http://yanxuan.nosdn.127.net/535b1678f1193020ebdf857cc0714605.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b086b038327b4f4749f01f20edc51759.jpg\" _src=\"http://yanxuan.nosdn.127.net/b086b038327b4f4749f01f20edc51759.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/600cd143741752e1ddec0726203158ab.jpg\" _src=\"http://yanxuan.nosdn.127.net/600cd143741752e1ddec0726203158ab.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f92e38e1e47d83dbd687cb3a99d42cf6.jpg\" _src=\"http://yanxuan.nosdn.127.net/f92e38e1e47d83dbd687cb3a99d42cf6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/808e61b5efb9caf9619d1ea104cd0c8f.jpg\" _src=\"http://yanxuan.nosdn.127.net/808e61b5efb9caf9619d1ea104cd0c8f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/76b6a500d227dfe044e7e89d2b1fc90b.jpg\" _src=\"http://yanxuan.nosdn.127.net/76b6a500d227dfe044e7e89d2b1fc90b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2b504d58141383196993a05cac20b5c9.jpg\" _src=\"http://yanxuan.nosdn.127.net/2b504d58141383196993a05cac20b5c9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/86a53c9649767b375e7b7954b1ef8dda.jpg\" _src=\"http://yanxuan.nosdn.127.net/86a53c9649767b375e7b7954b1ef8dda.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/094601496343ee6c7bd27f889d0c671a.jpg\" _src=\"http://yanxuan.nosdn.127.net/094601496343ee6c7bd27f889d0c671a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1cdfbaab3dc8a228ec830cf66c1455e2.jpg\" _src=\"http://yanxuan.nosdn.127.net/1cdfbaab3dc8a228ec830cf66c1455e2.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4a081b94d90c5c79f9e6c4729cf77b63.jpg\" _src=\"http://yanxuan.nosdn.127.net/4a081b94d90c5c79f9e6c4729cf77b63.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/39db72c177156f3fed68510b28d5c8dc.jpg\" _src=\"http://yanxuan.nosdn.127.net/39db72c177156f3fed68510b28d5c8dc.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ee0a390f0b6619aecb84518b31e4d467.jpg\" _src=\"http://yanxuan.nosdn.127.net/ee0a390f0b6619aecb84518b31e4d467.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '6', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/e54479c150ddec7a13aca5bfd0c2ae1c.jpg', 'http://yanxuan.nosdn.127.net/18b7be03bba9d01e4285fc443ea65bb1.png', '249.00', '366', '1068063', '0.00', '限时购', '', '0.00', '0', '0', '0', '273.90', null, null, null, null);
  634. INSERT INTO `nideshop_goods` VALUES ('1068010', '1008008', '1068010', '全棉澳毛床褥床垫 床笠款', '0', '100', '', '精选优质澳毛,柔软保暖', '<p><img src=\"http://yanxuan.nosdn.127.net/95a63d6da753734c1ef2943e33a8bb3b.jpg\" _src=\"http://yanxuan.nosdn.127.net/95a63d6da753734c1ef2943e33a8bb3b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d9d333d9669d0524e57d0c3df85c32c0.jpg\" _src=\"http://yanxuan.nosdn.127.net/d9d333d9669d0524e57d0c3df85c32c0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d07d8f04991d6277ffbe8f2e9c1f269e.jpg\" _src=\"http://yanxuan.nosdn.127.net/d07d8f04991d6277ffbe8f2e9c1f269e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4514788afc9687cff4382d6b10b65484.jpg\" _src=\"http://yanxuan.nosdn.127.net/4514788afc9687cff4382d6b10b65484.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/85004c0d8c353a371e74b12c7043b7c8.jpg\" _src=\"http://yanxuan.nosdn.127.net/85004c0d8c353a371e74b12c7043b7c8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9c2f84e148ab9dc37fca2ba9b14b1d91.jpg\" _src=\"http://yanxuan.nosdn.127.net/9c2f84e148ab9dc37fca2ba9b14b1d91.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7891ebca110196561a0b89f594dcb901.jpg\" _src=\"http://yanxuan.nosdn.127.net/7891ebca110196561a0b89f594dcb901.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/aab95836c91dd19b558ef7af6be87932.jpg\" _src=\"http://yanxuan.nosdn.127.net/aab95836c91dd19b558ef7af6be87932.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f95c06896c52e1818b068c6caccbd3b5.jpg\" _src=\"http://yanxuan.nosdn.127.net/f95c06896c52e1818b068c6caccbd3b5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/92f0ddd32ef8721a57398dc850c69db8.jpg\" _src=\"http://yanxuan.nosdn.127.net/92f0ddd32ef8721a57398dc850c69db8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/13fbf8e8abc527424bec76f5cb5d9362.jpg\" _src=\"http://yanxuan.nosdn.127.net/13fbf8e8abc527424bec76f5cb5d9362.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a96f28cfdfc2902126b6543f8a41f713.jpg\" _src=\"http://yanxuan.nosdn.127.net/a96f28cfdfc2902126b6543f8a41f713.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '21', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/2669a0d813a0285158bb85444ba255fa.jpg', 'http://yanxuan.nosdn.127.net/9ed4ff9642ea9cb776a20560647cd72b.png', '329.00', '907', '1071014', '0.00', '限时购', '', '0.00', '0', '0', '0', '361.90', null, null, null, null);
  635. INSERT INTO `nideshop_goods` VALUES ('1068011', '1008008', '1068011', '全棉丝光骆驼绒秋冬被', '0', '100', '', '精细驼绒填充,加厚温暖', '<p><img src=\"http://yanxuan.nosdn.127.net/513bb53138abc91136a185451db84124.jpg\" _src=\"http://yanxuan.nosdn.127.net/513bb53138abc91136a185451db84124.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/892c546f668cda7061312c927d6b8706.jpg\" _src=\"http://yanxuan.nosdn.127.net/892c546f668cda7061312c927d6b8706.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a47d06b195c64a165b82e797ac6d0f74.jpg\" _src=\"http://yanxuan.nosdn.127.net/a47d06b195c64a165b82e797ac6d0f74.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2518d05fed8e33f2b61fd06a2711f7bc.jpg\" _src=\"http://yanxuan.nosdn.127.net/2518d05fed8e33f2b61fd06a2711f7bc.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/104bfe84e2f4625c4cdf66c3e511b9cd.jpg\" _src=\"http://yanxuan.nosdn.127.net/104bfe84e2f4625c4cdf66c3e511b9cd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1c69525ee67d15f619a4c33d5570e732.jpg\" _src=\"http://yanxuan.nosdn.127.net/1c69525ee67d15f619a4c33d5570e732.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/79b82500961b6385b852633961ce5c6c.jpg\" _src=\"http://yanxuan.nosdn.127.net/79b82500961b6385b852633961ce5c6c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ea190f56ac369eaef45159412675bb49.jpg\" _src=\"http://yanxuan.nosdn.127.net/ea190f56ac369eaef45159412675bb49.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ae33c22489785820a608a6508dda713b.jpg\" _src=\"http://yanxuan.nosdn.127.net/ae33c22489785820a608a6508dda713b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/dcd357ecf585630bf3e11364e7beef51.jpg\" _src=\"http://yanxuan.nosdn.127.net/dcd357ecf585630bf3e11364e7beef51.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c77e5ed4dbd4ca1834cc1d65fb6fb978.jpg\" _src=\"http://yanxuan.nosdn.127.net/c77e5ed4dbd4ca1834cc1d65fb6fb978.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '18', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/0c512323f69705f49147bf9bc4409386.jpg', 'http://yanxuan.nosdn.127.net/0e4ba6ed44fef8803c243e585b621ab7.png', '399.00', '941', '1071016', '0.00', '限时购', '', '0.00', '0', '0', '0', '438.90', null, null, null, null);
  636. INSERT INTO `nideshop_goods` VALUES ('1068012', '1036000', '1068012', '全棉色织绗缝夏凉件套', '1001020', '100', '', '夏季凉被,冬季暖套,四季可用', '<p><img src=\"http://yanxuan.nosdn.127.net/f2c8da50d92baec4dd3cf9efd031c609.jpg\" _src=\"http://yanxuan.nosdn.127.net/f2c8da50d92baec4dd3cf9efd031c609.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c942345abc7f4ccb968922399bf7f9d2.jpg\" _src=\"http://yanxuan.nosdn.127.net/c942345abc7f4ccb968922399bf7f9d2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9356de74f5f05ffa1f2193eea6c5bdc3.jpg\" _src=\"http://yanxuan.nosdn.127.net/9356de74f5f05ffa1f2193eea6c5bdc3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3a665cfb96c9941e5b8dff8d90853bc5.jpg\" _src=\"http://yanxuan.nosdn.127.net/3a665cfb96c9941e5b8dff8d90853bc5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1a046b731093bec9b8959e2474cfa4a3.jpg\" _src=\"http://yanxuan.nosdn.127.net/1a046b731093bec9b8959e2474cfa4a3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/559719ac8d4e3f71905299b9177a4ce0.jpg\" _src=\"http://yanxuan.nosdn.127.net/559719ac8d4e3f71905299b9177a4ce0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/df69b9248e172d145a2a19344e42cc95.jpg\" _src=\"http://yanxuan.nosdn.127.net/df69b9248e172d145a2a19344e42cc95.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/aa820a8ae627c519739d3ce12c2c6518.jpg\" _src=\"http://yanxuan.nosdn.127.net/aa820a8ae627c519739d3ce12c2c6518.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fd486a7f6146271c0541539be673f58c.jpg\" _src=\"http://yanxuan.nosdn.127.net/fd486a7f6146271c0541539be673f58c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ee9211f783669f8b81b268e1a63752cd.jpg\" _src=\"http://yanxuan.nosdn.127.net/ee9211f783669f8b81b268e1a63752cd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/35e57db1fd86be37d669d355061fd6b2.jpg\" _src=\"http://yanxuan.nosdn.127.net/35e57db1fd86be37d669d355061fd6b2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/921d514a1b6e33f4a2f5799f2dbc9a0f.jpg\" _src=\"http://yanxuan.nosdn.127.net/921d514a1b6e33f4a2f5799f2dbc9a0f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9dd1dae09dbade1b4128648cc34b1bc4.jpg\" _src=\"http://yanxuan.nosdn.127.net/9dd1dae09dbade1b4128648cc34b1bc4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2fdb3e737194ddf41c6d807f072a3da9.jpg\" _src=\"http://yanxuan.nosdn.127.net/2fdb3e737194ddf41c6d807f072a3da9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e69d648b43e8a251ece334534302e368.jpg\" _src=\"http://yanxuan.nosdn.127.net/e69d648b43e8a251ece334534302e368.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7c105ac189899e85677e746af9cf14b8.jpg\" _src=\"http://yanxuan.nosdn.127.net/7c105ac189899e85677e746af9cf14b8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3dfe534d6109aeb1d6efec2c69064654.jpg\" _src=\"http://yanxuan.nosdn.127.net/3dfe534d6109aeb1d6efec2c69064654.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4e38db6341ce3864d00b67ed920deee3.jpg\" _src=\"http://yanxuan.nosdn.127.net/4e38db6341ce3864d00b67ed920deee3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9d6fd87dd1e350771e0414eef4a00f2a.jpg\" _src=\"http://yanxuan.nosdn.127.net/9d6fd87dd1e350771e0414eef4a00f2a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/18d8a013e03ad654f2e4f8817801168c.jpg\" _src=\"http://yanxuan.nosdn.127.net/18d8a013e03ad654f2e4f8817801168c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4891ddcdde1628465490e970fb0cdd4e.jpg\" _src=\"http://yanxuan.nosdn.127.net/4891ddcdde1628465490e970fb0cdd4e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c5fa31df63a81e665df490c9d7f42a98.jpg\" _src=\"http://yanxuan.nosdn.127.net/c5fa31df63a81e665df490c9d7f42a98.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/dd10bc9fdd09b964ef38e6e6ab481805.jpg\" _src=\"http://yanxuan.nosdn.127.net/dd10bc9fdd09b964ef38e6e6ab481805.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/598ada2dd1db82e54bcbda20d493f471.jpg\" _src=\"http://yanxuan.nosdn.127.net/598ada2dd1db82e54bcbda20d493f471.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cbb8921d833c3dcb89962f8d3f77d254.jpg\" _src=\"http://yanxuan.nosdn.127.net/cbb8921d833c3dcb89962f8d3f77d254.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d1bd69c32e8228bfcc72ea580e530b66.jpg\" _src=\"http://yanxuan.nosdn.127.net/d1bd69c32e8228bfcc72ea580e530b66.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6259e545bc7631c00391156e2f66f690.jpg\" _src=\"http://yanxuan.nosdn.127.net/6259e545bc7631c00391156e2f66f690.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7d8b5c26dd3141e4c2939cade0eb3f25.jpg\" _src=\"http://yanxuan.nosdn.127.net/7d8b5c26dd3141e4c2939cade0eb3f25.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f8892a18d128d00d19daf3a0c5f7601c.jpg\" _src=\"http://yanxuan.nosdn.127.net/f8892a18d128d00d19daf3a0c5f7601c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4c513d36bd6f8be0b44ffd321d821419.jpg\" _src=\"http://yanxuan.nosdn.127.net/4c513d36bd6f8be0b44ffd321d821419.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/547fa7c92b2a1beb018c6326630f0d52.jpg\" _src=\"http://yanxuan.nosdn.127.net/547fa7c92b2a1beb018c6326630f0d52.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0d755722133aea49aa0ff53a345977b3.jpg\" _src=\"http://yanxuan.nosdn.127.net/0d755722133aea49aa0ff53a345977b3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f7ce2a9b6b8a5ade671bb0f1c0c14b6d.jpg\" _src=\"http://yanxuan.nosdn.127.net/f7ce2a9b6b8a5ade671bb0f1c0c14b6d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fd6d960441bd4bd208cca0e0d85e98b8.jpg\" _src=\"http://yanxuan.nosdn.127.net/fd6d960441bd4bd208cca0e0d85e98b8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/98eea2b147f2a6db9c409aa004ef6d1c.jpg\" _src=\"http://yanxuan.nosdn.127.net/98eea2b147f2a6db9c409aa004ef6d1c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5d95786dc2a8ea1bf0f2974c536c96ae.jpg\" _src=\"http://yanxuan.nosdn.127.net/5d95786dc2a8ea1bf0f2974c536c96ae.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/db9ebe54b716d0e728e76d9cfe578638.jpg\" _src=\"http://yanxuan.nosdn.127.net/db9ebe54b716d0e728e76d9cfe578638.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4884a54269e320eb5eaeb281ce44972a.jpg\" _src=\"http://yanxuan.nosdn.127.net/4884a54269e320eb5eaeb281ce44972a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4f7039e7cc12f77edbc0c05a4b5cabe0.jpg\" _src=\"http://yanxuan.nosdn.127.net/4f7039e7cc12f77edbc0c05a4b5cabe0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/78218e4c3089b11eaf51dcb128f9458a.jpg\" _src=\"http://yanxuan.nosdn.127.net/78218e4c3089b11eaf51dcb128f9458a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/25ac7c99eb8032df971d5c59c5b7c5d7.jpg\" _src=\"http://yanxuan.nosdn.127.net/25ac7c99eb8032df971d5c59c5b7c5d7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2322fcab99f29c5e3041fb03608c5af9.jpg\" _src=\"http://yanxuan.nosdn.127.net/2322fcab99f29c5e3041fb03608c5af9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/49fbd5127b6c785cab0a7b0511d010fc.jpg\" _src=\"http://yanxuan.nosdn.127.net/49fbd5127b6c785cab0a7b0511d010fc.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/337ac8db46d718d2e76217aeab913757.jpg\" _src=\"http://yanxuan.nosdn.127.net/337ac8db46d718d2e76217aeab913757.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9fa6cd8ddc515ed4bbf2428b326df941.jpg\" _src=\"http://yanxuan.nosdn.127.net/9fa6cd8ddc515ed4bbf2428b326df941.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '8', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/bd08afcc8efb69545a10028a132658c5.jpg', 'http://yanxuan.nosdn.127.net/69145abddddd31ae8878ea7ca7297b4b.png', '599.00', '4274', '1071018', '0.00', '限时购', '', '0.00', '0', '0', '1', '658.90', null, null, null, null);
  637. INSERT INTO `nideshop_goods` VALUES ('1070000', '1008015', '1070000', '星云酥 180克/3颗', '0', '100', '', '酥饼界的小仙女', '', '1', '2017-08-30 11:40:11', '8', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/fec3fedc5dc8eb4c0f9ad8035061cebe.jpg', 'http://yanxuan.nosdn.127.net/8392725765cdd57fdae3f173877f4bda.png', '26.00', '867', '1124049', '0.00', '限时购', '', '0.00', '0', '0', '0', '28.60', null, null, null, null);
  638. INSERT INTO `nideshop_goods` VALUES ('1071004', '1017000', '1071004', '日式圆形宠物盆猫砂盆', '0', '100', '', '日式配色,圆滑细腻', '<p><img src=\"http://yanxuan.nosdn.127.net/8fcac09d7577060c0a512ea6739c97ab.jpg\" _src=\"http://yanxuan.nosdn.127.net/8fcac09d7577060c0a512ea6739c97ab.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b69b19b139cd26bf6dab5d5a648937b7.jpg\" _src=\"http://yanxuan.nosdn.127.net/b69b19b139cd26bf6dab5d5a648937b7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/272be92e722c0336aa8ea5dfea9c8160.jpg\" _src=\"http://yanxuan.nosdn.127.net/272be92e722c0336aa8ea5dfea9c8160.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b0585ea90000fff3a6cd8ef3d0f311e7.jpg\" _src=\"http://yanxuan.nosdn.127.net/b0585ea90000fff3a6cd8ef3d0f311e7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f0e6f8bff79c8fb501ad2e27e578e62d.jpg\" _src=\"http://yanxuan.nosdn.127.net/f0e6f8bff79c8fb501ad2e27e578e62d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2447c2a4d60144b25e9f103175531ac7.jpg\" _src=\"http://yanxuan.nosdn.127.net/2447c2a4d60144b25e9f103175531ac7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8557a4772478e932fcc516df28ff8b26.jpg\" _src=\"http://yanxuan.nosdn.127.net/8557a4772478e932fcc516df28ff8b26.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5bcebc60f77b9dc0ec98beef7685710e.jpg\" _src=\"http://yanxuan.nosdn.127.net/5bcebc60f77b9dc0ec98beef7685710e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a125c5c2835777fb86e806b4f91c95a7.jpg\" _src=\"http://yanxuan.nosdn.127.net/a125c5c2835777fb86e806b4f91c95a7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/71cd7a9c5ff13033878477c72bd8bcf4.jpg\" _src=\"http://yanxuan.nosdn.127.net/71cd7a9c5ff13033878477c72bd8bcf4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9cd3a745cafb0ade80fef30282f33c39.jpg\" _src=\"http://yanxuan.nosdn.127.net/9cd3a745cafb0ade80fef30282f33c39.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3d604b2a4e400c5de3ae6d8fac2b0a89.jpg\" _src=\"http://yanxuan.nosdn.127.net/3d604b2a4e400c5de3ae6d8fac2b0a89.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c2a0a3a2c8e45bba29aa51b7b5f08308.jpg\" _src=\"http://yanxuan.nosdn.127.net/c2a0a3a2c8e45bba29aa51b7b5f08308.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1a65be28f7c1b9e4a1043cac8a415089.jpg\" _src=\"http://yanxuan.nosdn.127.net/1a65be28f7c1b9e4a1043cac8a415089.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7bde1458f209cd046378455838c6c89c.jpg\" _src=\"http://yanxuan.nosdn.127.net/7bde1458f209cd046378455838c6c89c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c7a561a6b7461d45ffc6ed90e7f48c9a.jpg\" _src=\"http://yanxuan.nosdn.127.net/c7a561a6b7461d45ffc6ed90e7f48c9a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d6c2b53acdb9e4a8bc95609bf97f4513.jpg\" _src=\"http://yanxuan.nosdn.127.net/d6c2b53acdb9e4a8bc95609bf97f4513.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ececb765899660140651e29ab4526eca.jpg\" _src=\"http://yanxuan.nosdn.127.net/ececb765899660140651e29ab4526eca.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/83ad2165ee9891683052f26c928068b0.jpg\" _src=\"http://yanxuan.nosdn.127.net/83ad2165ee9891683052f26c928068b0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/786bdedae9e0d2d7ab4de3697d3642b9.jpg\" _src=\"http://yanxuan.nosdn.127.net/786bdedae9e0d2d7ab4de3697d3642b9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/33eeab8794cadfb86498a366b56d8b57.jpg\" _src=\"http://yanxuan.nosdn.127.net/33eeab8794cadfb86498a366b56d8b57.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8b4b835a0268eed92c845b851be3be71.jpg\" _src=\"http://yanxuan.nosdn.127.net/8b4b835a0268eed92c845b851be3be71.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/dde1d2f1d7d8a19f162fcd7f0535a7dd.jpg\" _src=\"http://yanxuan.nosdn.127.net/dde1d2f1d7d8a19f162fcd7f0535a7dd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/885792079ae57ba6de8507fab565c586.jpg\" _src=\"http://yanxuan.nosdn.127.net/885792079ae57ba6de8507fab565c586.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c9110f49c6a9f29f0b03855582af0d88.jpg\" _src=\"http://yanxuan.nosdn.127.net/c9110f49c6a9f29f0b03855582af0d88.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b7fee119279d42ba0fb697cf9e8f53d2.jpg\" _src=\"http://yanxuan.nosdn.127.net/b7fee119279d42ba0fb697cf9e8f53d2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b44824d6ab6387b9cc37f9d6aecb9d43.jpg\" _src=\"http://yanxuan.nosdn.127.net/b44824d6ab6387b9cc37f9d6aecb9d43.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/34620b3bf872306803dfe9560acdcff4.jpg\" _src=\"http://yanxuan.nosdn.127.net/34620b3bf872306803dfe9560acdcff4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c2c60c4177b50725cd3d2a11eb54714b.jpg\" _src=\"http://yanxuan.nosdn.127.net/c2c60c4177b50725cd3d2a11eb54714b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5f74507842ac9dd42103de38cc878a34.jpg\" _src=\"http://yanxuan.nosdn.127.net/5f74507842ac9dd42103de38cc878a34.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/63c1f83a1a5d1ba546ac7d875dabfeed.jpg\" _src=\"http://yanxuan.nosdn.127.net/63c1f83a1a5d1ba546ac7d875dabfeed.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/acc33719f9810f8a69be93903a0b64f4.jpg\" _src=\"http://yanxuan.nosdn.127.net/acc33719f9810f8a69be93903a0b64f4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/108405824c2b2590655f75638dd41c06.jpg\" _src=\"http://yanxuan.nosdn.127.net/108405824c2b2590655f75638dd41c06.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bd1a84cf1e70f02541dfd546bdb0d563.jpg\" _src=\"http://yanxuan.nosdn.127.net/bd1a84cf1e70f02541dfd546bdb0d563.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/901ab7dcd0a1e5c4339dbadf93889233.jpg\" _src=\"http://yanxuan.nosdn.127.net/901ab7dcd0a1e5c4339dbadf93889233.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fb98fc4e92fb69f27eb95a13c267e165.jpg\" _src=\"http://yanxuan.nosdn.127.net/fb98fc4e92fb69f27eb95a13c267e165.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/50e017498ac9caf6a0679dd26bbec392.jpg\" _src=\"http://yanxuan.nosdn.127.net/50e017498ac9caf6a0679dd26bbec392.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/79469391cecf19b30111fa4385e89d6e.jpg\" _src=\"http://yanxuan.nosdn.127.net/79469391cecf19b30111fa4385e89d6e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ef40b078efaa06acd1487f07b7dfb213.jpg\" _src=\"http://yanxuan.nosdn.127.net/ef40b078efaa06acd1487f07b7dfb213.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0f42673dcf2d61d5c695ffb7705c53f7.jpg\" _src=\"http://yanxuan.nosdn.127.net/0f42673dcf2d61d5c695ffb7705c53f7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0aecfd282d652b7451143ae42aa0f3bf.jpg\" _src=\"http://yanxuan.nosdn.127.net/0aecfd282d652b7451143ae42aa0f3bf.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c80632b60bb7191671adb473e04111c5.jpg\" _src=\"http://yanxuan.nosdn.127.net/c80632b60bb7191671adb473e04111c5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2414ed9c34593c5a12f57d73099795b3.jpg\" _src=\"http://yanxuan.nosdn.127.net/2414ed9c34593c5a12f57d73099795b3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b1e849da7d5e442717c2ceb64e8de762.jpg\" _src=\"http://yanxuan.nosdn.127.net/b1e849da7d5e442717c2ceb64e8de762.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/32ab9b54417e5f571aad635625a1fd97.jpg\" _src=\"http://yanxuan.nosdn.127.net/32ab9b54417e5f571aad635625a1fd97.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f06afbd180cd2eb34e181df8bbba5098.jpg\" _src=\"http://yanxuan.nosdn.127.net/f06afbd180cd2eb34e181df8bbba5098.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0ffce5e44238942d4cfcb2300376cbda.jpg\" _src=\"http://yanxuan.nosdn.127.net/0ffce5e44238942d4cfcb2300376cbda.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6014bf19a6d49285681a1c05250709f1.jpg\" _src=\"http://yanxuan.nosdn.127.net/6014bf19a6d49285681a1c05250709f1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b3a51faae51f1a03cc44f36b1850037c.jpg\" _src=\"http://yanxuan.nosdn.127.net/b3a51faae51f1a03cc44f36b1850037c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/846b1d0320958c8b5451f3b217e7e8f2.jpg\" _src=\"http://yanxuan.nosdn.127.net/846b1d0320958c8b5451f3b217e7e8f2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/99789d189daa1e63f292ca9d8d950c03.jpg\" _src=\"http://yanxuan.nosdn.127.net/99789d189daa1e63f292ca9d8d950c03.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/29a06ebfaaded39141e85496b5e3af84.jpg\" _src=\"http://yanxuan.nosdn.127.net/29a06ebfaaded39141e85496b5e3af84.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/15c8def8966137bc5708a4591ec1eff8.jpg\" _src=\"http://yanxuan.nosdn.127.net/15c8def8966137bc5708a4591ec1eff8.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '20', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/05737b5ef321e0780399925caf602403.jpg', 'http://yanxuan.nosdn.127.net/f0abf2bf11c8d303212e4a0c1106bb73.png', '89.00', '248', '1075042', '0.00', '限时购', '', '0.00', '0', '0', '0', '97.90', null, null, null, null);
  639. INSERT INTO `nideshop_goods` VALUES ('1071005', '1017000', '1071005', '便携多功能宠物拾便器', '0', '100', '', '方便携带,环保卫生', '<p><img src=\"http://yanxuan.nosdn.127.net/0439a458150f17b3c54e1898b4ddf71f.jpg\" _src=\"http://yanxuan.nosdn.127.net/0439a458150f17b3c54e1898b4ddf71f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/759a3d2dc0fea138932feb0b03def7ab.jpg\" _src=\"http://yanxuan.nosdn.127.net/759a3d2dc0fea138932feb0b03def7ab.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4fbc1e3aaaec589986fe8c460006b408.jpg\" _src=\"http://yanxuan.nosdn.127.net/4fbc1e3aaaec589986fe8c460006b408.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/29ff62dcfcc7df4e69bdbfb6830d3729.jpg\" _src=\"http://yanxuan.nosdn.127.net/29ff62dcfcc7df4e69bdbfb6830d3729.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8413e338d3d16087645d817aac894bc3.jpg\" _src=\"http://yanxuan.nosdn.127.net/8413e338d3d16087645d817aac894bc3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8746c36ec37fe13c0124c13162a903cd.jpg\" _src=\"http://yanxuan.nosdn.127.net/8746c36ec37fe13c0124c13162a903cd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5ba42ac14b311acbcc1b1ab3f9c0c239.jpg\" _src=\"http://yanxuan.nosdn.127.net/5ba42ac14b311acbcc1b1ab3f9c0c239.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/381576780a6acb18d4b9720caff81d51.jpg\" _src=\"http://yanxuan.nosdn.127.net/381576780a6acb18d4b9720caff81d51.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ec97befffd24b79f095b698d5da500bc.jpg\" _src=\"http://yanxuan.nosdn.127.net/ec97befffd24b79f095b698d5da500bc.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1a95dcc67a1ddd5c653aa38d085ca289.jpg\" _src=\"http://yanxuan.nosdn.127.net/1a95dcc67a1ddd5c653aa38d085ca289.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/148b5c0861ce138fed9ce344be4f3735.jpg\" _src=\"http://yanxuan.nosdn.127.net/148b5c0861ce138fed9ce344be4f3735.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/853b3e416ac990886f252b492a18d765.jpg\" _src=\"http://yanxuan.nosdn.127.net/853b3e416ac990886f252b492a18d765.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bc62219c8eded9aa632bf130fd816844.jpg\" _src=\"http://yanxuan.nosdn.127.net/bc62219c8eded9aa632bf130fd816844.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ad28c490b2c43b7ca1d9da3fc3631465.jpg\" _src=\"http://yanxuan.nosdn.127.net/ad28c490b2c43b7ca1d9da3fc3631465.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d371fd88d9312493cfd3be36a322d92b.jpg\" _src=\"http://yanxuan.nosdn.127.net/d371fd88d9312493cfd3be36a322d92b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f40e9c97a58c8c93335e5374b6e6d70c.jpg\" _src=\"http://yanxuan.nosdn.127.net/f40e9c97a58c8c93335e5374b6e6d70c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/74092ef98970e14ad640949e923a40e3.jpg\" _src=\"http://yanxuan.nosdn.127.net/74092ef98970e14ad640949e923a40e3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ea98fada7b079deb466e5a787d241dae.jpg\" _src=\"http://yanxuan.nosdn.127.net/ea98fada7b079deb466e5a787d241dae.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f69dd49e4d45cc27ccc9e5a6e765fbfd.jpg\" _src=\"http://yanxuan.nosdn.127.net/f69dd49e4d45cc27ccc9e5a6e765fbfd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/77137b44be1a680cae7b1c25e37e386d.jpg\" _src=\"http://yanxuan.nosdn.127.net/77137b44be1a680cae7b1c25e37e386d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ce607d0b53a481683a78520c8ab6ccae.jpg\" _src=\"http://yanxuan.nosdn.127.net/ce607d0b53a481683a78520c8ab6ccae.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/011c0ff03dc6d9c4abbfb717d1757bf4.jpg\" _src=\"http://yanxuan.nosdn.127.net/011c0ff03dc6d9c4abbfb717d1757bf4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2290de54b4dfca00cb57fc879b5bbbab.jpg\" _src=\"http://yanxuan.nosdn.127.net/2290de54b4dfca00cb57fc879b5bbbab.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c08cc448c81b6256db91211579dfb738.jpg\" _src=\"http://yanxuan.nosdn.127.net/c08cc448c81b6256db91211579dfb738.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9ede1bd346840f490cadbb4e2091e236.jpg\" _src=\"http://yanxuan.nosdn.127.net/9ede1bd346840f490cadbb4e2091e236.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0243642fd350cb2b7873817f052c37e6.jpg\" _src=\"http://yanxuan.nosdn.127.net/0243642fd350cb2b7873817f052c37e6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7a4acab695c5596de04e3642ac2bd711.jpg\" _src=\"http://yanxuan.nosdn.127.net/7a4acab695c5596de04e3642ac2bd711.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fd5e8c7e865dcf50b662c6f2224deb05.jpg\" _src=\"http://yanxuan.nosdn.127.net/fd5e8c7e865dcf50b662c6f2224deb05.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b132996c99b3a02443692ececf52f5fd.jpg\" _src=\"http://yanxuan.nosdn.127.net/b132996c99b3a02443692ececf52f5fd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/175b24fab11d1f543e10ccc2f2ac4eb6.jpg\" _src=\"http://yanxuan.nosdn.127.net/175b24fab11d1f543e10ccc2f2ac4eb6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e0a51eb838b01dac5bec6057e1e59428.jpg\" _src=\"http://yanxuan.nosdn.127.net/e0a51eb838b01dac5bec6057e1e59428.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cda60b57d1f0e78cd3921bc4e3d8ccf2.jpg\" _src=\"http://yanxuan.nosdn.127.net/cda60b57d1f0e78cd3921bc4e3d8ccf2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1437057917d6deb2e453e711bcbf40ee.jpg\" _src=\"http://yanxuan.nosdn.127.net/1437057917d6deb2e453e711bcbf40ee.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/121b6dc31268b1a82c632fcb634f9a64.jpg\" _src=\"http://yanxuan.nosdn.127.net/121b6dc31268b1a82c632fcb634f9a64.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0923c11aec66cec291f8a142b8391e01.jpg\" _src=\"http://yanxuan.nosdn.127.net/0923c11aec66cec291f8a142b8391e01.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/736a20d6584ffaacc39bd62c700b68ea.jpg\" _src=\"http://yanxuan.nosdn.127.net/736a20d6584ffaacc39bd62c700b68ea.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7643379507709dba5947571eb18fc7b1.jpg\" _src=\"http://yanxuan.nosdn.127.net/7643379507709dba5947571eb18fc7b1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0217adfd4f3a62963f18f841fa945e5f.jpg\" _src=\"http://yanxuan.nosdn.127.net/0217adfd4f3a62963f18f841fa945e5f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c4055e755e250b2c84a0548e031de7f4.jpg\" _src=\"http://yanxuan.nosdn.127.net/c4055e755e250b2c84a0548e031de7f4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9f3c65c42ffac403bf55ff33454849f7.jpg\" _src=\"http://yanxuan.nosdn.127.net/9f3c65c42ffac403bf55ff33454849f7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/349b23e34055e38d2311b82cc42b9402.jpg\" _src=\"http://yanxuan.nosdn.127.net/349b23e34055e38d2311b82cc42b9402.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2f9a830bb03074182f19931ec6aaf1c0.jpg\" _src=\"http://yanxuan.nosdn.127.net/2f9a830bb03074182f19931ec6aaf1c0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/32bc1a4cb7aa944ac67856fcb6e5c73f.jpg\" _src=\"http://yanxuan.nosdn.127.net/32bc1a4cb7aa944ac67856fcb6e5c73f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/381b80fabf330062ab9ffcde4ea025be.jpg\" _src=\"http://yanxuan.nosdn.127.net/381b80fabf330062ab9ffcde4ea025be.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1f987d33585b22286115fbb684edbbf7.jpg\" _src=\"http://yanxuan.nosdn.127.net/1f987d33585b22286115fbb684edbbf7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/89e8c521f234dfb1c0217e553826b4f9.jpg\" _src=\"http://yanxuan.nosdn.127.net/89e8c521f234dfb1c0217e553826b4f9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/de5822513f7a21e52a23e65709311072.jpg\" _src=\"http://yanxuan.nosdn.127.net/de5822513f7a21e52a23e65709311072.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4437746b0494178f77250f55937d7080.jpg\" _src=\"http://yanxuan.nosdn.127.net/4437746b0494178f77250f55937d7080.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b46621bf43e028b86ae69fb68019318b.jpg\" _src=\"http://yanxuan.nosdn.127.net/b46621bf43e028b86ae69fb68019318b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/208bf739edd3b19c8fba3f2cb47792f5.jpg\" _src=\"http://yanxuan.nosdn.127.net/208bf739edd3b19c8fba3f2cb47792f5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e63ee61d221db9cbe9978da2394ee2b2.jpg\" _src=\"http://yanxuan.nosdn.127.net/e63ee61d221db9cbe9978da2394ee2b2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3719e6b0d3e8cd37b9c9e3f7c84fbc2c.jpg\" _src=\"http://yanxuan.nosdn.127.net/3719e6b0d3e8cd37b9c9e3f7c84fbc2c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1e5613aef6325482b310cb2bbe4a23e8.jpg\" _src=\"http://yanxuan.nosdn.127.net/1e5613aef6325482b310cb2bbe4a23e8.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '17', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/688d686641616760abcfeca0841b81af.jpg', 'http://yanxuan.nosdn.127.net/07a47d73e2eb53b1a7939219a4e63618.png', '39.00', '468', '1075044', '0.00', '限时购', '', '0.00', '0', '0', '0', '42.90', null, null, null, null);
  640. INSERT INTO `nideshop_goods` VALUES ('1071006', '1017000', '1071006', '清新宠物水食钵食盆', '0', '100', '', '含银离子的洁净除菌食盆', '<p><img src=\"http://yanxuan.nosdn.127.net/f6211683724401e87e2458378137f31b.jpg\" _src=\"http://yanxuan.nosdn.127.net/f6211683724401e87e2458378137f31b.jpg\"/></p>', '1', '2017-08-30 11:40:11', '16', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/ada10ec7003741d17e3ea43dff2c073d.jpg', 'http://yanxuan.nosdn.127.net/d206e0d15955b4d76431a752f2c94f9f.png', '9.90', '7021', '1075047', '0.00', '限时购', '', '0.00', '0', '0', '0', '10.89', null, null, null, null);
  641. INSERT INTO `nideshop_goods` VALUES ('1072000', '1008002', '1072000', '手工针织绞花抱枕套', '1001020', '100', '', '纯手工针织,带给你复古的暖', '<p><img src=\"http://yanxuan.nosdn.127.net/74ead5d764e22f8d50dc44a7a61da41a.jpg\" _src=\"http://yanxuan.nosdn.127.net/74ead5d764e22f8d50dc44a7a61da41a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/be7f775d658e40e6ca76e657006053a9.jpg\" _src=\"http://yanxuan.nosdn.127.net/be7f775d658e40e6ca76e657006053a9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7fe9345385034a4d25580072444b349b.jpg\" _src=\"http://yanxuan.nosdn.127.net/7fe9345385034a4d25580072444b349b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bffafbafcf3010c3e5ab454af09cde4f.jpg\" _src=\"http://yanxuan.nosdn.127.net/bffafbafcf3010c3e5ab454af09cde4f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/123a0dcb707c2a178e5f9da395b5b24e.jpg\" _src=\"http://yanxuan.nosdn.127.net/123a0dcb707c2a178e5f9da395b5b24e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bfeba71e7e71a63dee06b079b4c4c4f0.jpg\" _src=\"http://yanxuan.nosdn.127.net/bfeba71e7e71a63dee06b079b4c4c4f0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cdc034602358c7752073a9b4bd6b499f.jpg\" _src=\"http://yanxuan.nosdn.127.net/cdc034602358c7752073a9b4bd6b499f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3050a816fd41ec2b8880d11aafc26177.jpg\" _src=\"http://yanxuan.nosdn.127.net/3050a816fd41ec2b8880d11aafc26177.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/027e8c218edbbf1779cf4b380b2133c2.jpg\" _src=\"http://yanxuan.nosdn.127.net/027e8c218edbbf1779cf4b380b2133c2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cbd1f6dd39bd517c99c7ae07d9b32b0e.jpg\" _src=\"http://yanxuan.nosdn.127.net/cbd1f6dd39bd517c99c7ae07d9b32b0e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/db5baa7586787b7e0f27a5b7a09946a7.jpg\" _src=\"http://yanxuan.nosdn.127.net/db5baa7586787b7e0f27a5b7a09946a7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/66a0ff102559b2d840240d6fa8c37001.jpg\" _src=\"http://yanxuan.nosdn.127.net/66a0ff102559b2d840240d6fa8c37001.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6b17b0772d947612819e4489d9e5a865.jpg\" _src=\"http://yanxuan.nosdn.127.net/6b17b0772d947612819e4489d9e5a865.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/53cc65ea58a7757fca2585b25056cf21.jpg\" _src=\"http://yanxuan.nosdn.127.net/53cc65ea58a7757fca2585b25056cf21.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/86506725ae85f9864c8b70b64b2e37d7.jpg\" _src=\"http://yanxuan.nosdn.127.net/86506725ae85f9864c8b70b64b2e37d7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/671d390a50d363d6ae6ab0c52f06a284.jpg\" _src=\"http://yanxuan.nosdn.127.net/671d390a50d363d6ae6ab0c52f06a284.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/14e864b84a51faebab51912bbfea7b75.jpg\" _src=\"http://yanxuan.nosdn.127.net/14e864b84a51faebab51912bbfea7b75.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e31d1086f08b77298977c2b459be4833.jpg\" _src=\"http://yanxuan.nosdn.127.net/e31d1086f08b77298977c2b459be4833.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/02338b650755a458ca8561f484e618d8.jpg\" _src=\"http://yanxuan.nosdn.127.net/02338b650755a458ca8561f484e618d8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0ffbeafbda15fcfcf98c3b7a62c77e05.jpg\" _src=\"http://yanxuan.nosdn.127.net/0ffbeafbda15fcfcf98c3b7a62c77e05.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2f61f5e704ccf72bfb570842a366f104.jpg\" _src=\"http://yanxuan.nosdn.127.net/2f61f5e704ccf72bfb570842a366f104.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e119daabcfd640441083e17445834954.jpg\" _src=\"http://yanxuan.nosdn.127.net/e119daabcfd640441083e17445834954.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/010ba3b486af23613c04046c5829a7c2.jpg\" _src=\"http://yanxuan.nosdn.127.net/010ba3b486af23613c04046c5829a7c2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/25f470d4479fbb74f9b6e105f8dedfbd.jpg\" _src=\"http://yanxuan.nosdn.127.net/25f470d4479fbb74f9b6e105f8dedfbd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4e7c300089dba380e9f48d49ec964ff9.jpg\" _src=\"http://yanxuan.nosdn.127.net/4e7c300089dba380e9f48d49ec964ff9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3a7ab3c980cf291404489bd137efde6f.jpg\" _src=\"http://yanxuan.nosdn.127.net/3a7ab3c980cf291404489bd137efde6f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2fb08e93fa462fca26680a56737b9f91.jpg\" _src=\"http://yanxuan.nosdn.127.net/2fb08e93fa462fca26680a56737b9f91.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d0ad6f5f75871fa02408723457a8a8ef.jpg\" _src=\"http://yanxuan.nosdn.127.net/d0ad6f5f75871fa02408723457a8a8ef.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c3cecb48c44520393993ce5bc85da7ae.jpg\" _src=\"http://yanxuan.nosdn.127.net/c3cecb48c44520393993ce5bc85da7ae.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cd68c353ca83624fa367f90592649b36.jpg\" _src=\"http://yanxuan.nosdn.127.net/cd68c353ca83624fa367f90592649b36.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9327cc921602b9d5b05147e4266910cb.jpg\" _src=\"http://yanxuan.nosdn.127.net/9327cc921602b9d5b05147e4266910cb.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/37cf3aa662187aa1126a5c41cb41d796.jpg\" _src=\"http://yanxuan.nosdn.127.net/37cf3aa662187aa1126a5c41cb41d796.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bef5ea165cda6dbbb109ea895b3f2fc5.jpg\" _src=\"http://yanxuan.nosdn.127.net/bef5ea165cda6dbbb109ea895b3f2fc5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/78c0d06130500a1247cb2a602264c61c.jpg\" _src=\"http://yanxuan.nosdn.127.net/78c0d06130500a1247cb2a602264c61c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/79fd1cbd0c0d02ac58c2f449dcb6c97f.jpg\" _src=\"http://yanxuan.nosdn.127.net/79fd1cbd0c0d02ac58c2f449dcb6c97f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/61acb2d95e1833aad988c183c94eebe2.jpg\" _src=\"http://yanxuan.nosdn.127.net/61acb2d95e1833aad988c183c94eebe2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7828935cd158c7bb6643186eb25be8bc.jpg\" _src=\"http://yanxuan.nosdn.127.net/7828935cd158c7bb6643186eb25be8bc.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0409cef7649088f345fc64a348b49468.jpg\" _src=\"http://yanxuan.nosdn.127.net/0409cef7649088f345fc64a348b49468.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/54e1beab4c0616b3147270201f978f2d.jpg\" _src=\"http://yanxuan.nosdn.127.net/54e1beab4c0616b3147270201f978f2d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a75d34f45de74f2476f34ce329d57ff6.jpg\" _src=\"http://yanxuan.nosdn.127.net/a75d34f45de74f2476f34ce329d57ff6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/81607103dfd183acf7a364dd58e3cf93.jpg\" _src=\"http://yanxuan.nosdn.127.net/81607103dfd183acf7a364dd58e3cf93.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/03cf20624d36fc793143ba7ba8b5c17f.jpg\" _src=\"http://yanxuan.nosdn.127.net/03cf20624d36fc793143ba7ba8b5c17f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/da92a3b8729effd6f79e9c86b522f6ec.jpg\" _src=\"http://yanxuan.nosdn.127.net/da92a3b8729effd6f79e9c86b522f6ec.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/71aa5c2a762f4bced311f40323980552.jpg\" _src=\"http://yanxuan.nosdn.127.net/71aa5c2a762f4bced311f40323980552.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b81f52020b75b35b2254d327625713d9.jpg\" _src=\"http://yanxuan.nosdn.127.net/b81f52020b75b35b2254d327625713d9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8f4d245eea01d80ce6769f308ccd7152.jpg\" _src=\"http://yanxuan.nosdn.127.net/8f4d245eea01d80ce6769f308ccd7152.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6c74f125472bf12a5b0ece0aaf15ef85.jpg\" _src=\"http://yanxuan.nosdn.127.net/6c74f125472bf12a5b0ece0aaf15ef85.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6139fdd3fb21d66c527520a747a17fe3.jpg\" _src=\"http://yanxuan.nosdn.127.net/6139fdd3fb21d66c527520a747a17fe3.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '9', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/09883bdbd9eec88ed615b99a275c0d54.jpg', 'http://yanxuan.nosdn.127.net/87cf3a17ad40bfdcdc3314ea4591a5e8.png', '89.00', '305', '1076004', '0.00', '限时购', '', '0.00', '0', '0', '0', '97.90', null, null, null, null);
  642. INSERT INTO `nideshop_goods` VALUES ('1072001', '1008002', '1072001', '色织水洗棉绣花抱枕套', '1001020', '100', '', '清素色织,搭配水洗棉旧色的温柔', '<p><img src=\"http://yanxuan.nosdn.127.net/f8a74bd8e87987849bf2505c08ac69e2.jpg\" _src=\"http://yanxuan.nosdn.127.net/f8a74bd8e87987849bf2505c08ac69e2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/be7ae107fc4b5085241507ed711254f8.jpg\" _src=\"http://yanxuan.nosdn.127.net/be7ae107fc4b5085241507ed711254f8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/143c402e82c2d99c3bc7cc51d064a62b.jpg\" _src=\"http://yanxuan.nosdn.127.net/143c402e82c2d99c3bc7cc51d064a62b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/52f5b211f5da083da2bc9b5237c40b3b.jpg\" _src=\"http://yanxuan.nosdn.127.net/52f5b211f5da083da2bc9b5237c40b3b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5af00c6f7dc0d798dffe2cdc2da0f870.jpg\" _src=\"http://yanxuan.nosdn.127.net/5af00c6f7dc0d798dffe2cdc2da0f870.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/750bbc1c2207159b58a6de350060f5c9.jpg\" _src=\"http://yanxuan.nosdn.127.net/750bbc1c2207159b58a6de350060f5c9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d55dd54de50ff03b199261f3e021f388.jpg\" _src=\"http://yanxuan.nosdn.127.net/d55dd54de50ff03b199261f3e021f388.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b659703ddf8e35bb89ee5ff36e84b4f8.jpg\" _src=\"http://yanxuan.nosdn.127.net/b659703ddf8e35bb89ee5ff36e84b4f8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/573f30d45c3eea65f29a6497ac2b9a98.jpg\" _src=\"http://yanxuan.nosdn.127.net/573f30d45c3eea65f29a6497ac2b9a98.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f7d58eb147f2d8bedfc88ba08b544d7c.jpg\" _src=\"http://yanxuan.nosdn.127.net/f7d58eb147f2d8bedfc88ba08b544d7c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ec89200168dd4a703f7b89ec2be0b8a4.jpg\" _src=\"http://yanxuan.nosdn.127.net/ec89200168dd4a703f7b89ec2be0b8a4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3d123c7d7b79ef8cd2703976e8bf1dbc.jpg\" _src=\"http://yanxuan.nosdn.127.net/3d123c7d7b79ef8cd2703976e8bf1dbc.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2797ba305c10b0e5fd6eafb384101402.jpg\" _src=\"http://yanxuan.nosdn.127.net/2797ba305c10b0e5fd6eafb384101402.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/abcfbdafabe855e77598860b426fa5e9.jpg\" _src=\"http://yanxuan.nosdn.127.net/abcfbdafabe855e77598860b426fa5e9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8d6ff672dae187d85d199ee1b1b62f9b.jpg\" _src=\"http://yanxuan.nosdn.127.net/8d6ff672dae187d85d199ee1b1b62f9b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3e4424539e51dca9d000c6b67bea1f8b.jpg\" _src=\"http://yanxuan.nosdn.127.net/3e4424539e51dca9d000c6b67bea1f8b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/942da4a7c05d2a25be7a26decc40f53a.jpg\" _src=\"http://yanxuan.nosdn.127.net/942da4a7c05d2a25be7a26decc40f53a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2c872c106b7da7d7b1167a9554c92aa1.jpg\" _src=\"http://yanxuan.nosdn.127.net/2c872c106b7da7d7b1167a9554c92aa1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/82607c78aedacd534a2e0f1b38e2e3e7.jpg\" _src=\"http://yanxuan.nosdn.127.net/82607c78aedacd534a2e0f1b38e2e3e7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/07e4e5ac1501706c8666eff4a703b5fb.jpg\" _src=\"http://yanxuan.nosdn.127.net/07e4e5ac1501706c8666eff4a703b5fb.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a56805f63dfe98583e6b58eaa9dd595a.jpg\" _src=\"http://yanxuan.nosdn.127.net/a56805f63dfe98583e6b58eaa9dd595a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ecdd28de374db2de0c0c2f0f50d0cd26.jpg\" _src=\"http://yanxuan.nosdn.127.net/ecdd28de374db2de0c0c2f0f50d0cd26.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/69fcb2566dea15f16a182b7e4e05893f.jpg\" _src=\"http://yanxuan.nosdn.127.net/69fcb2566dea15f16a182b7e4e05893f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bc3c5b3a6a14c8307e57842bf737601b.jpg\" _src=\"http://yanxuan.nosdn.127.net/bc3c5b3a6a14c8307e57842bf737601b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/53d9c980cc924790bd7983bd80b0221a.jpg\" _src=\"http://yanxuan.nosdn.127.net/53d9c980cc924790bd7983bd80b0221a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/787bdee826a5112c3e2bd4b9c15717e8.jpg\" _src=\"http://yanxuan.nosdn.127.net/787bdee826a5112c3e2bd4b9c15717e8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/44dc985f99b3a95f255624a4d97857ca.jpg\" _src=\"http://yanxuan.nosdn.127.net/44dc985f99b3a95f255624a4d97857ca.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bf117d9aef1ef7ab10d2ef040d9444c6.jpg\" _src=\"http://yanxuan.nosdn.127.net/bf117d9aef1ef7ab10d2ef040d9444c6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/07044f1a6c11d8d15e410a01482fb39a.jpg\" _src=\"http://yanxuan.nosdn.127.net/07044f1a6c11d8d15e410a01482fb39a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5ca8ea48405cb43c901181a684c623dc.jpg\" _src=\"http://yanxuan.nosdn.127.net/5ca8ea48405cb43c901181a684c623dc.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1b4111628661d4216c8d0fc057e6d81e.jpg\" _src=\"http://yanxuan.nosdn.127.net/1b4111628661d4216c8d0fc057e6d81e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4adb10168dbfcee6f49460b2478de249.jpg\" _src=\"http://yanxuan.nosdn.127.net/4adb10168dbfcee6f49460b2478de249.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e798dd4abe3a833a4d0066453955ec1c.jpg\" _src=\"http://yanxuan.nosdn.127.net/e798dd4abe3a833a4d0066453955ec1c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/528abeae19cf1b5af2f49be4e142a2da.jpg\" _src=\"http://yanxuan.nosdn.127.net/528abeae19cf1b5af2f49be4e142a2da.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2d3d5ae118bcacdfda08eb182a03c15a.jpg\" _src=\"http://yanxuan.nosdn.127.net/2d3d5ae118bcacdfda08eb182a03c15a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3323a393743f839e12586418a0711123.jpg\" _src=\"http://yanxuan.nosdn.127.net/3323a393743f839e12586418a0711123.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8ac29c5a1569d9fb37420f2eae835b91.jpg\" _src=\"http://yanxuan.nosdn.127.net/8ac29c5a1569d9fb37420f2eae835b91.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/89ef4f7ec1c86f13d328c23c0429892a.jpg\" _src=\"http://yanxuan.nosdn.127.net/89ef4f7ec1c86f13d328c23c0429892a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8b005b97dbffa333e49ff484abbcff04.jpg\" _src=\"http://yanxuan.nosdn.127.net/8b005b97dbffa333e49ff484abbcff04.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/afa56b9370cdc27f27f8f951108cea4c.jpg\" _src=\"http://yanxuan.nosdn.127.net/afa56b9370cdc27f27f8f951108cea4c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5daae71eb699e7417e695472e1142678.jpg\" _src=\"http://yanxuan.nosdn.127.net/5daae71eb699e7417e695472e1142678.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3dbb71ba9fff82849a959deb8f5b7946.jpg\" _src=\"http://yanxuan.nosdn.127.net/3dbb71ba9fff82849a959deb8f5b7946.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0e024ba974bad906db9e2a28d42293a7.jpg\" _src=\"http://yanxuan.nosdn.127.net/0e024ba974bad906db9e2a28d42293a7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/87e2d46daab9e1dd3e112c15692c66ba.jpg\" _src=\"http://yanxuan.nosdn.127.net/87e2d46daab9e1dd3e112c15692c66ba.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/342bc9bb1cbf81d1bc7b33f77fa915ff.jpg\" _src=\"http://yanxuan.nosdn.127.net/342bc9bb1cbf81d1bc7b33f77fa915ff.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f54d685cb3c111beff7ef58bb16252d6.jpg\" _src=\"http://yanxuan.nosdn.127.net/f54d685cb3c111beff7ef58bb16252d6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b7c4c896daa0ac2ff5f89d5b738fc007.jpg\" _src=\"http://yanxuan.nosdn.127.net/b7c4c896daa0ac2ff5f89d5b738fc007.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/839da4fb5874271d54f94c60ad4d7387.jpg\" _src=\"http://yanxuan.nosdn.127.net/839da4fb5874271d54f94c60ad4d7387.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7147d5acd91c330479762e51cf4257f6.jpg\" _src=\"http://yanxuan.nosdn.127.net/7147d5acd91c330479762e51cf4257f6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2a9ca13fd9189e60df2f4a21783a3795.jpg\" _src=\"http://yanxuan.nosdn.127.net/2a9ca13fd9189e60df2f4a21783a3795.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/09fa8e6e95cc716138549e6b244a7924.jpg\" _src=\"http://yanxuan.nosdn.127.net/09fa8e6e95cc716138549e6b244a7924.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/772e18352ad2c156ee190f068726cd8c.jpg\" _src=\"http://yanxuan.nosdn.127.net/772e18352ad2c156ee190f068726cd8c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/92c0a1e57d429d19fb7f4e678fa7fae1.jpg\" _src=\"http://yanxuan.nosdn.127.net/92c0a1e57d429d19fb7f4e678fa7fae1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/88ddae38e8b363acdf79bfbe0547cc50.jpg\" _src=\"http://yanxuan.nosdn.127.net/88ddae38e8b363acdf79bfbe0547cc50.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3c4c683112a57543d4e028754be53e0d.jpg\" _src=\"http://yanxuan.nosdn.127.net/3c4c683112a57543d4e028754be53e0d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f476dbaf8a8cae1e8a311edb77d4ea78.jpg\" _src=\"http://yanxuan.nosdn.127.net/f476dbaf8a8cae1e8a311edb77d4ea78.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b7493e6d2980dc116654bdb3b24c1a3d.jpg\" _src=\"http://yanxuan.nosdn.127.net/b7493e6d2980dc116654bdb3b24c1a3d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/57e84b0e4b979782b0c3a4bce908d797.jpg\" _src=\"http://yanxuan.nosdn.127.net/57e84b0e4b979782b0c3a4bce908d797.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a8eb47f38c324fd320c74bf0aa3ebdf1.jpg\" _src=\"http://yanxuan.nosdn.127.net/a8eb47f38c324fd320c74bf0aa3ebdf1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/622949bf7e667ea54eaf0861ac31c842.jpg\" _src=\"http://yanxuan.nosdn.127.net/622949bf7e667ea54eaf0861ac31c842.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '7', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/a45cf27cc07e678cfe21257cb764711a.jpg', 'http://yanxuan.nosdn.127.net/0e9d5954d7dc2477d9c46b730e05ab42.png', '49.00', '121', '1076007', '0.00', '限时购', '', '0.00', '0', '0', '0', '53.90', null, null, null, null);
  643. INSERT INTO `nideshop_goods` VALUES ('1073008', '1005007', '1073008', '铸铁珐琅牛排煎锅', '0', '100', '', '沥油隔水,煎出外焦里嫩', '', '1', '2017-08-30 11:40:11', '4', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/61a56890eada2439eb4ff0a613cf8347.jpg', 'http://yanxuan.nosdn.127.net/619e46411ccd62e5c0f16692ee1a85a0.png', '149.00', '2191', '1077044', '0.00', '限时购', '', '0.00', '0', '0', '0', '163.90', null, null, null, null);
  644. INSERT INTO `nideshop_goods` VALUES ('1074001', '1010002', '1074001', '男式莫代尔无痕内裤', '0', '100', '', 'Bemis技术,极简无痕', '', '1', '2017-08-30 11:40:11', '8', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/f8529d85ca41fa84abbad9affb5a071d.png', 'http://yanxuan.nosdn.127.net/73567265b04a9998f64419186ddd8531.png', '59.00', '26520', '1078001', '0.00', '限时购', '', '0.00', '0', '0', '0', '64.90', null, null, null, null);
  645. INSERT INTO `nideshop_goods` VALUES ('1075022', '1012003', '1075022', '暗格简约钢笔', '0', '100', '', '铱金暗尖,300超长书写', '', '1', '2017-08-30 11:40:11', '3', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/6359ef53b700620c2b391555a3b75439.png', 'http://yanxuan.nosdn.127.net/97ad483a94ed88216a989df83e39cbf0.png', '39.00', '10187', '1079054', '0.00', '限时购', '', '0.00', '0', '0', '0', '42.90', null, null, null, null);
  646. INSERT INTO `nideshop_goods` VALUES ('1075023', '1008008', '1075023', '舒适安睡复合羽绒枕', '0', '100', '', '一等白鸭绒,蓬松承托', '<p><img src=\"http://yanxuan.nosdn.127.net/0ff8b333d789044e2020d09ce66abe40.jpg\" _src=\"http://yanxuan.nosdn.127.net/0ff8b333d789044e2020d09ce66abe40.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/70caba30b405042d08d15f5f6424d3f1.jpg\" _src=\"http://yanxuan.nosdn.127.net/70caba30b405042d08d15f5f6424d3f1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2c01c5af096b8264909dcbdca7c4f831.jpg\" _src=\"http://yanxuan.nosdn.127.net/2c01c5af096b8264909dcbdca7c4f831.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a2df03eb9a43051e5369940952231796.jpg\" _src=\"http://yanxuan.nosdn.127.net/a2df03eb9a43051e5369940952231796.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ed1f8ba403cf7dc5079b43fa9205b38c.jpg\" _src=\"http://yanxuan.nosdn.127.net/ed1f8ba403cf7dc5079b43fa9205b38c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1b812ece2ed52e7e169c2ffa34efc6d5.jpg\" _src=\"http://yanxuan.nosdn.127.net/1b812ece2ed52e7e169c2ffa34efc6d5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ceb3a596bd54c41a0c942ee3ffcdc2ec.jpg\" _src=\"http://yanxuan.nosdn.127.net/ceb3a596bd54c41a0c942ee3ffcdc2ec.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2331d3d090594d46840297fc14aa681e.jpg\" _src=\"http://yanxuan.nosdn.127.net/2331d3d090594d46840297fc14aa681e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4852822f42865ce533a23618070577bf.jpg\" _src=\"http://yanxuan.nosdn.127.net/4852822f42865ce533a23618070577bf.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3e821d78a3df70df85e85e801cb946f1.jpg\" _src=\"http://yanxuan.nosdn.127.net/3e821d78a3df70df85e85e801cb946f1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d97f8202cb7529796d729cdbe9af1f4f.jpg\" _src=\"http://yanxuan.nosdn.127.net/d97f8202cb7529796d729cdbe9af1f4f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6b6470ce962c35c3f897656d4a7d1701.jpg\" _src=\"http://yanxuan.nosdn.127.net/6b6470ce962c35c3f897656d4a7d1701.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5b0f31bf36f4faef0dd9cef22a2dff98.jpg\" _src=\"http://yanxuan.nosdn.127.net/5b0f31bf36f4faef0dd9cef22a2dff98.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0a0fe9cb6f96b5bf93b297068899ddbd.jpg\" _src=\"http://yanxuan.nosdn.127.net/0a0fe9cb6f96b5bf93b297068899ddbd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e516515fc49c649ef3b2d36de21033e9.jpg\" _src=\"http://yanxuan.nosdn.127.net/e516515fc49c649ef3b2d36de21033e9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/010efd52fa7f0f11ff9639a4a108bf27.jpg\" _src=\"http://yanxuan.nosdn.127.net/010efd52fa7f0f11ff9639a4a108bf27.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e8101b530c6eb05bd4c894ecb3f99c86.jpg\" _src=\"http://yanxuan.nosdn.127.net/e8101b530c6eb05bd4c894ecb3f99c86.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5f135aacff4028aea9a557b64dea3779.jpg\" _src=\"http://yanxuan.nosdn.127.net/5f135aacff4028aea9a557b64dea3779.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/718ac56251b9d22cc0d335bf1e7ab2ae.jpg\" _src=\"http://yanxuan.nosdn.127.net/718ac56251b9d22cc0d335bf1e7ab2ae.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e4e56c008935f06153909d59fb744161.jpg\" _src=\"http://yanxuan.nosdn.127.net/e4e56c008935f06153909d59fb744161.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5ab34a4c97fe8e316e8078dd01dee9e4.jpg\" _src=\"http://yanxuan.nosdn.127.net/5ab34a4c97fe8e316e8078dd01dee9e4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9bb11146c349d8b1ca33efb91701b136.jpg\" _src=\"http://yanxuan.nosdn.127.net/9bb11146c349d8b1ca33efb91701b136.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/db2e3cdad17d198777ed0ffd26a14fc5.jpg\" _src=\"http://yanxuan.nosdn.127.net/db2e3cdad17d198777ed0ffd26a14fc5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e745a57db19fb1385ef95a83a3322dd2.jpg\" _src=\"http://yanxuan.nosdn.127.net/e745a57db19fb1385ef95a83a3322dd2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/93388abeeeb46c7f9f04746e790f0e42.jpg\" _src=\"http://yanxuan.nosdn.127.net/93388abeeeb46c7f9f04746e790f0e42.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7c6f2ef50e700773a99a8e78ade1f5c4.jpg\" _src=\"http://yanxuan.nosdn.127.net/7c6f2ef50e700773a99a8e78ade1f5c4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7b428e3c4b9cafb1aadea1b3bff9f787.jpg\" _src=\"http://yanxuan.nosdn.127.net/7b428e3c4b9cafb1aadea1b3bff9f787.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/28ebf258d2507a68b6f340c3c568fead.jpg\" _src=\"http://yanxuan.nosdn.127.net/28ebf258d2507a68b6f340c3c568fead.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1a2d314d6ec97d56d17ea66878d6c995.jpg\" _src=\"http://yanxuan.nosdn.127.net/1a2d314d6ec97d56d17ea66878d6c995.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b89f8a5e287db625cbcbbf3f6df86ed7.jpg\" _src=\"http://yanxuan.nosdn.127.net/b89f8a5e287db625cbcbbf3f6df86ed7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/30df1b2dbf80de0a904a8bb51b611946.jpg\" _src=\"http://yanxuan.nosdn.127.net/30df1b2dbf80de0a904a8bb51b611946.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/513627f00d497ff83910fc06c6628430.jpg\" _src=\"http://yanxuan.nosdn.127.net/513627f00d497ff83910fc06c6628430.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a48e9f3bad79676d1e9e717a3f9a9ed1.jpg\" _src=\"http://yanxuan.nosdn.127.net/a48e9f3bad79676d1e9e717a3f9a9ed1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ae2607d313993a5701079a0c9bcb00ec.jpg\" _src=\"http://yanxuan.nosdn.127.net/ae2607d313993a5701079a0c9bcb00ec.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5108b4d56d178d806483a2675e1ef41e.jpg\" _src=\"http://yanxuan.nosdn.127.net/5108b4d56d178d806483a2675e1ef41e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/58bf7e5b113db4031b094b6e0fe1a54a.jpg\" _src=\"http://yanxuan.nosdn.127.net/58bf7e5b113db4031b094b6e0fe1a54a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b617faa161158a4858579262b34b04d7.jpg\" _src=\"http://yanxuan.nosdn.127.net/b617faa161158a4858579262b34b04d7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/309bbce1758293039c6fefc28c864b1d.jpg\" _src=\"http://yanxuan.nosdn.127.net/309bbce1758293039c6fefc28c864b1d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ba8569688c174365735ecff01bd9e03f.jpg\" _src=\"http://yanxuan.nosdn.127.net/ba8569688c174365735ecff01bd9e03f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/69db8b8b99fc661446b20859dc99e153.jpg\" _src=\"http://yanxuan.nosdn.127.net/69db8b8b99fc661446b20859dc99e153.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f16738356218d0abd570e4249b3afe9f.jpg\" _src=\"http://yanxuan.nosdn.127.net/f16738356218d0abd570e4249b3afe9f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/01593a4ae7ee3c4a26ba398db50b592a.jpg\" _src=\"http://yanxuan.nosdn.127.net/01593a4ae7ee3c4a26ba398db50b592a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/49749fe8f76654ee74a8d0978d4ad990.jpg\" _src=\"http://yanxuan.nosdn.127.net/49749fe8f76654ee74a8d0978d4ad990.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '4', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/0033c96ba23090517da1ca3fb7ec17a1.jpg', 'http://yanxuan.nosdn.127.net/29bc800b9f1fa551bc3cd47b10e2a799.png', '199.00', '1219', '1079055', '0.00', '限时购', '', '0.00', '0', '0', '0', '218.90', null, null, null, null);
  647. INSERT INTO `nideshop_goods` VALUES ('1075024', '1008008', '1075024', '升级款纯棉静音白鹅羽绒被', '1001000', '100', '', '静音面料,加厚熟睡', '<p><img src=\"http://yanxuan.nosdn.127.net/56261ca3bfb33b4400911bd01ac27ae5.jpg\" _src=\"http://yanxuan.nosdn.127.net/56261ca3bfb33b4400911bd01ac27ae5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/214f8c19371d71dac57ec63e398e87bc.jpg\" _src=\"http://yanxuan.nosdn.127.net/214f8c19371d71dac57ec63e398e87bc.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/12732b11ddc970e10ebf37d71088bab3.jpg\" _src=\"http://yanxuan.nosdn.127.net/12732b11ddc970e10ebf37d71088bab3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/be6a7afdc814c8f56d08e3f4285cd456.jpg\" _src=\"http://yanxuan.nosdn.127.net/be6a7afdc814c8f56d08e3f4285cd456.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/67cca9bceb817b16690e291a67f41e28.jpg\" _src=\"http://yanxuan.nosdn.127.net/67cca9bceb817b16690e291a67f41e28.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/67313c9944f3e4277c3e640ab60bbde3.jpg\" _src=\"http://yanxuan.nosdn.127.net/67313c9944f3e4277c3e640ab60bbde3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/47235be353e7eec56b7e425be4ddedba.jpg\" _src=\"http://yanxuan.nosdn.127.net/47235be353e7eec56b7e425be4ddedba.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c3e3d7887ec3ea8ddabd581c4e36e2f6.jpg\" _src=\"http://yanxuan.nosdn.127.net/c3e3d7887ec3ea8ddabd581c4e36e2f6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/33f1565e2a14c3fb4456b694771e6fad.jpg\" _src=\"http://yanxuan.nosdn.127.net/33f1565e2a14c3fb4456b694771e6fad.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7a41d8674cd63d15c5549a6c5745a658.jpg\" _src=\"http://yanxuan.nosdn.127.net/7a41d8674cd63d15c5549a6c5745a658.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7522e4b7add69ae6ba223a38fbd34f4f.jpg\" _src=\"http://yanxuan.nosdn.127.net/7522e4b7add69ae6ba223a38fbd34f4f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b5c9bd7dae7c24125104e80384c602ba.jpg\" _src=\"http://yanxuan.nosdn.127.net/b5c9bd7dae7c24125104e80384c602ba.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/97a225e49a0a8c764ca394cccb3b10f2.jpg\" _src=\"http://yanxuan.nosdn.127.net/97a225e49a0a8c764ca394cccb3b10f2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/16f06738c9fb6355352a4eb21a25744b.jpg\" _src=\"http://yanxuan.nosdn.127.net/16f06738c9fb6355352a4eb21a25744b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a3ad7de130695e388afa4946c63b4214.jpg\" _src=\"http://yanxuan.nosdn.127.net/a3ad7de130695e388afa4946c63b4214.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0dd0e528b444841f7326dc933b501938.jpg\" _src=\"http://yanxuan.nosdn.127.net/0dd0e528b444841f7326dc933b501938.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9ae9599dba84e72c970eecafd9de6294.jpg\" _src=\"http://yanxuan.nosdn.127.net/9ae9599dba84e72c970eecafd9de6294.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b93b7087d8c64647b725418211fd2c4b.jpg\" _src=\"http://yanxuan.nosdn.127.net/b93b7087d8c64647b725418211fd2c4b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8ff7f4cae6011903f209305cd57598c3.jpg\" _src=\"http://yanxuan.nosdn.127.net/8ff7f4cae6011903f209305cd57598c3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/123723b1a400f6088af024190f154d01.jpg\" _src=\"http://yanxuan.nosdn.127.net/123723b1a400f6088af024190f154d01.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c3a6127948261397e2cce816afe7ff10.jpg\" _src=\"http://yanxuan.nosdn.127.net/c3a6127948261397e2cce816afe7ff10.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a2bc185f49542115c38aca6508951f83.jpg\" _src=\"http://yanxuan.nosdn.127.net/a2bc185f49542115c38aca6508951f83.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bf2a0932d6fd65702b0d30dee3f1c658.jpg\" _src=\"http://yanxuan.nosdn.127.net/bf2a0932d6fd65702b0d30dee3f1c658.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9f02e979aff1ce7a335cd314491886b4.jpg\" _src=\"http://yanxuan.nosdn.127.net/9f02e979aff1ce7a335cd314491886b4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1c64f22b8da97967e854b6e2240ba8ef.jpg\" _src=\"http://yanxuan.nosdn.127.net/1c64f22b8da97967e854b6e2240ba8ef.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/857365c29c631ca06d9218213e54f3d7.jpg\" _src=\"http://yanxuan.nosdn.127.net/857365c29c631ca06d9218213e54f3d7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/be2f36d6255a9f8baf5573c8cb80b4c3.jpg\" _src=\"http://yanxuan.nosdn.127.net/be2f36d6255a9f8baf5573c8cb80b4c3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e1f71db51b1e322046737356482f115e.jpg\" _src=\"http://yanxuan.nosdn.127.net/e1f71db51b1e322046737356482f115e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0697d1c2cd446297ad0494fc97f75ebb.jpg\" _src=\"http://yanxuan.nosdn.127.net/0697d1c2cd446297ad0494fc97f75ebb.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0e663a704ca44c6d448d37a9fbfb34b1.jpg\" _src=\"http://yanxuan.nosdn.127.net/0e663a704ca44c6d448d37a9fbfb34b1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b5cc03a916aa7a1a7160aab17749c7b1.jpg\" _src=\"http://yanxuan.nosdn.127.net/b5cc03a916aa7a1a7160aab17749c7b1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4be42b28ba4bdb04ec250ac5a1d23335.jpg\" _src=\"http://yanxuan.nosdn.127.net/4be42b28ba4bdb04ec250ac5a1d23335.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8f1f5bf21475bc50979dce49894bd03c.jpg\" _src=\"http://yanxuan.nosdn.127.net/8f1f5bf21475bc50979dce49894bd03c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/dca09a7be97a3bbebeea80f6266e1cbe.jpg\" _src=\"http://yanxuan.nosdn.127.net/dca09a7be97a3bbebeea80f6266e1cbe.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/82cfe49a34dd57e9879ab264b2c4a0f9.jpg\" _src=\"http://yanxuan.nosdn.127.net/82cfe49a34dd57e9879ab264b2c4a0f9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/609766611ba2b7f471f4b5ec3cfb1570.jpg\" _src=\"http://yanxuan.nosdn.127.net/609766611ba2b7f471f4b5ec3cfb1570.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b4bfa751387777262f0dd3cbfeda6cf3.jpg\" _src=\"http://yanxuan.nosdn.127.net/b4bfa751387777262f0dd3cbfeda6cf3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cce5ecbcc8d6cbaf2da11a0efa137467.jpg\" _src=\"http://yanxuan.nosdn.127.net/cce5ecbcc8d6cbaf2da11a0efa137467.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0d698dd6bad6abd7b5ad731ca8954ab9.jpg\" _src=\"http://yanxuan.nosdn.127.net/0d698dd6bad6abd7b5ad731ca8954ab9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/34b463871aee608c1c3ccc9a6ae4e7fa.jpg\" _src=\"http://yanxuan.nosdn.127.net/34b463871aee608c1c3ccc9a6ae4e7fa.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6d7d047d324a9878de7cc1ccd2b24fab.jpg\" _src=\"http://yanxuan.nosdn.127.net/6d7d047d324a9878de7cc1ccd2b24fab.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cf43f53d3770ff5d34eaade48c42ddf0.jpg\" _src=\"http://yanxuan.nosdn.127.net/cf43f53d3770ff5d34eaade48c42ddf0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8e4d8478f1cbe72b6991e59cdbf2c1c6.jpg\" _src=\"http://yanxuan.nosdn.127.net/8e4d8478f1cbe72b6991e59cdbf2c1c6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ec91680fb9913afc597afc4295c9810e.jpg\" _src=\"http://yanxuan.nosdn.127.net/ec91680fb9913afc597afc4295c9810e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cf5f83c67d2b6303fc10d7698211c451.jpg\" _src=\"http://yanxuan.nosdn.127.net/cf5f83c67d2b6303fc10d7698211c451.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c4e736beeba84fa508b5001c14326817.jpg\" _src=\"http://yanxuan.nosdn.127.net/c4e736beeba84fa508b5001c14326817.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b39bb20bc10eb80a4a73af1ef72e1f14.jpg\" _src=\"http://yanxuan.nosdn.127.net/b39bb20bc10eb80a4a73af1ef72e1f14.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0ee97cc8179dc8f63df9545ed4cf1289.jpg\" _src=\"http://yanxuan.nosdn.127.net/0ee97cc8179dc8f63df9545ed4cf1289.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b6f5d89595f271bf1ece37ef1a59b7fa.jpg\" _src=\"http://yanxuan.nosdn.127.net/b6f5d89595f271bf1ece37ef1a59b7fa.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9cfc8924f6085deaf154deb6da8ac794.jpg\" _src=\"http://yanxuan.nosdn.127.net/9cfc8924f6085deaf154deb6da8ac794.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/69dc1813268f768aa90f696807c0614c.jpg\" _src=\"http://yanxuan.nosdn.127.net/69dc1813268f768aa90f696807c0614c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a781da27715d6bbb246e7a9997e1ef4e.jpg\" _src=\"http://yanxuan.nosdn.127.net/a781da27715d6bbb246e7a9997e1ef4e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4e3177e5434d5ef56ea7a782358da8ba.jpg\" _src=\"http://yanxuan.nosdn.127.net/4e3177e5434d5ef56ea7a782358da8ba.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/64468f6698d122f7c554299af3ea9f13.jpg\" _src=\"http://yanxuan.nosdn.127.net/64468f6698d122f7c554299af3ea9f13.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/024b2a81d2860e631165a80a7142cf67.jpg\" _src=\"http://yanxuan.nosdn.127.net/024b2a81d2860e631165a80a7142cf67.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/85b12419b868dc311361781e50d46877.jpg\" _src=\"http://yanxuan.nosdn.127.net/85b12419b868dc311361781e50d46877.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6fcff064127cdf5b5a73d358db4efa21.jpg\" _src=\"http://yanxuan.nosdn.127.net/6fcff064127cdf5b5a73d358db4efa21.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7f28c8dd3c027fbfd64952d2c55b87fc.jpg\" _src=\"http://yanxuan.nosdn.127.net/7f28c8dd3c027fbfd64952d2c55b87fc.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/144ee76547f7b21bacb763426af25f07.jpg\" _src=\"http://yanxuan.nosdn.127.net/144ee76547f7b21bacb763426af25f07.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/191c12adb5895f7fb71c9d5b8bee424d.jpg\" _src=\"http://yanxuan.nosdn.127.net/191c12adb5895f7fb71c9d5b8bee424d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7158e3fa0c0c034b91dbd06d2eccef3a.jpg\" _src=\"http://yanxuan.nosdn.127.net/7158e3fa0c0c034b91dbd06d2eccef3a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/01da4634f8486926944213e12b15e114.jpg\" _src=\"http://yanxuan.nosdn.127.net/01da4634f8486926944213e12b15e114.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/957eaa7ec5510cfc24d41e82f0882406.jpg\" _src=\"http://yanxuan.nosdn.127.net/957eaa7ec5510cfc24d41e82f0882406.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '20', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/a8435686775f39284c0976d9cd8490ef.jpg', 'http://yanxuan.nosdn.127.net/ce4a1eb18ea518bf584620632509935f.png', '2399.00', '607', '1079056', '0.00', '限时购', '', '0.00', '0', '0', '0', '2638.90', null, null, null, null);
  648. INSERT INTO `nideshop_goods` VALUES ('1081000', '1008002', '1081000', '北欧风珊瑚绒多功能暖手枕', '0', '100', '', '手枕坐垫两用', '<p><img src=\"http://yanxuan.nosdn.127.net/19ce01a5361a70388e7d40e94ccd3495.jpg\" _src=\"http://yanxuan.nosdn.127.net/19ce01a5361a70388e7d40e94ccd3495.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a037a815a9c11449de1c5c94d6a6d987.jpg\" _src=\"http://yanxuan.nosdn.127.net/a037a815a9c11449de1c5c94d6a6d987.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e7ccc425d60247f8468ede401cb74683.jpg\" _src=\"http://yanxuan.nosdn.127.net/e7ccc425d60247f8468ede401cb74683.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/039951ed06296e8065f7b219a4a111de.jpg\" _src=\"http://yanxuan.nosdn.127.net/039951ed06296e8065f7b219a4a111de.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/37576f4179798648632a694da355996f.jpg\" _src=\"http://yanxuan.nosdn.127.net/37576f4179798648632a694da355996f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7d45db0fcfff3fb9ced3f6bc5e5d6a23.jpg\" _src=\"http://yanxuan.nosdn.127.net/7d45db0fcfff3fb9ced3f6bc5e5d6a23.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e46450a60e9bc60bca3f483ad14337b6.jpg\" _src=\"http://yanxuan.nosdn.127.net/e46450a60e9bc60bca3f483ad14337b6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/071c557f2845aa18a7f4d80f556b1178.jpg\" _src=\"http://yanxuan.nosdn.127.net/071c557f2845aa18a7f4d80f556b1178.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5935e928d9b1b6781db188cf41f93424.jpg\" _src=\"http://yanxuan.nosdn.127.net/5935e928d9b1b6781db188cf41f93424.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/83f8bac183a90e5d8f32c698813ef046.jpg\" _src=\"http://yanxuan.nosdn.127.net/83f8bac183a90e5d8f32c698813ef046.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f7ae7816d84e084b9df010ae92f7c0bf.jpg\" _src=\"http://yanxuan.nosdn.127.net/f7ae7816d84e084b9df010ae92f7c0bf.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3c89f0917bceb94f0e300df77d08c75e.jpg\" _src=\"http://yanxuan.nosdn.127.net/3c89f0917bceb94f0e300df77d08c75e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/62c52e788f028eab5b4927671f4aa109.jpg\" _src=\"http://yanxuan.nosdn.127.net/62c52e788f028eab5b4927671f4aa109.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/93b9efc4c1b39c065c0dde2974a9dc52.jpg\" _src=\"http://yanxuan.nosdn.127.net/93b9efc4c1b39c065c0dde2974a9dc52.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/40da45628d48712880dc64843aba8e6a.jpg\" _src=\"http://yanxuan.nosdn.127.net/40da45628d48712880dc64843aba8e6a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ec12badecafb5dd8f67b52efa6cf4b15.jpg\" _src=\"http://yanxuan.nosdn.127.net/ec12badecafb5dd8f67b52efa6cf4b15.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bde2888497b52e724ca72d42a86578d1.jpg\" _src=\"http://yanxuan.nosdn.127.net/bde2888497b52e724ca72d42a86578d1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5f1b163294dff20ac85a5f6dc8016500.jpg\" _src=\"http://yanxuan.nosdn.127.net/5f1b163294dff20ac85a5f6dc8016500.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2f970069e7d381421dec8c407fcd2a7a.jpg\" _src=\"http://yanxuan.nosdn.127.net/2f970069e7d381421dec8c407fcd2a7a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b852d0821395488c729a4d09941b2ea7.jpg\" _src=\"http://yanxuan.nosdn.127.net/b852d0821395488c729a4d09941b2ea7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/660168255d39ded4c1d2038cff5d253f.jpg\" _src=\"http://yanxuan.nosdn.127.net/660168255d39ded4c1d2038cff5d253f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7fe09efd35ef54dfa0a92c8059971995.jpg\" _src=\"http://yanxuan.nosdn.127.net/7fe09efd35ef54dfa0a92c8059971995.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f13328e747638a9681502f97d0fc032a.jpg\" _src=\"http://yanxuan.nosdn.127.net/f13328e747638a9681502f97d0fc032a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/05c538811b7d8d37b15e9b168b45ed19.jpg\" _src=\"http://yanxuan.nosdn.127.net/05c538811b7d8d37b15e9b168b45ed19.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e597815f2bbf76f2c078326d3cd255e1.jpg\" _src=\"http://yanxuan.nosdn.127.net/e597815f2bbf76f2c078326d3cd255e1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/73d7bd31e90a2bdc79263dde20e2496c.jpg\" _src=\"http://yanxuan.nosdn.127.net/73d7bd31e90a2bdc79263dde20e2496c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1e10091f21b56c616ac4ab51decab76a.jpg\" _src=\"http://yanxuan.nosdn.127.net/1e10091f21b56c616ac4ab51decab76a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e5023b92342a2f936996c2eaf2e79f1d.jpg\" _src=\"http://yanxuan.nosdn.127.net/e5023b92342a2f936996c2eaf2e79f1d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a090e4b9269a901e660cc35a1c38975a.jpg\" _src=\"http://yanxuan.nosdn.127.net/a090e4b9269a901e660cc35a1c38975a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/85c707ebaae017ab65bf5e2266ec7c6d.jpg\" _src=\"http://yanxuan.nosdn.127.net/85c707ebaae017ab65bf5e2266ec7c6d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/30a57bf64ad98af99955d90e45ae9f3f.jpg\" _src=\"http://yanxuan.nosdn.127.net/30a57bf64ad98af99955d90e45ae9f3f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7ec59f055c27c776ee5ec635e1e64b79.jpg\" _src=\"http://yanxuan.nosdn.127.net/7ec59f055c27c776ee5ec635e1e64b79.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f39b93929486b2ba679ed22fac5021b6.jpg\" _src=\"http://yanxuan.nosdn.127.net/f39b93929486b2ba679ed22fac5021b6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5ea9e76b9b0988c823796752cd3bc4e5.jpg\" _src=\"http://yanxuan.nosdn.127.net/5ea9e76b9b0988c823796752cd3bc4e5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5b952cc40eab4b590943ad91fb35c4ec.jpg\" _src=\"http://yanxuan.nosdn.127.net/5b952cc40eab4b590943ad91fb35c4ec.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5f5e5f1d2adbb2aaaf10e1e38913206b.jpg\" _src=\"http://yanxuan.nosdn.127.net/5f5e5f1d2adbb2aaaf10e1e38913206b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/50c14625bb7a2d0331fee4181ae22455.jpg\" _src=\"http://yanxuan.nosdn.127.net/50c14625bb7a2d0331fee4181ae22455.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7af5402277f0cfd4e9ac2bf9c0c0cd8e.jpg\" _src=\"http://yanxuan.nosdn.127.net/7af5402277f0cfd4e9ac2bf9c0c0cd8e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b413e4e18e70b2b1bddb54358fbf507e.jpg\" _src=\"http://yanxuan.nosdn.127.net/b413e4e18e70b2b1bddb54358fbf507e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2006d2a3ff91300d1265ce875433484a.jpg\" _src=\"http://yanxuan.nosdn.127.net/2006d2a3ff91300d1265ce875433484a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/35c5c281c7b8bfe5a67704abfbd0f550.jpg\" _src=\"http://yanxuan.nosdn.127.net/35c5c281c7b8bfe5a67704abfbd0f550.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0f30d0dd64c48d72f543cf7f48f66f48.jpg\" _src=\"http://yanxuan.nosdn.127.net/0f30d0dd64c48d72f543cf7f48f66f48.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/13632b105431e683733b69d8a065d458.jpg\" _src=\"http://yanxuan.nosdn.127.net/13632b105431e683733b69d8a065d458.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c3a10c77b61704c1efa426d566ead340.jpg\" _src=\"http://yanxuan.nosdn.127.net/c3a10c77b61704c1efa426d566ead340.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '22', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/eb9fd89dcabcbcf7ed7b86a3cb47c96e.jpg', 'http://yanxuan.nosdn.127.net/cc45baafad00405699552c187c64c512.png', '49.00', '997', '1085010', '0.00', '限时购', '', '0.00', '0', '0', '0', '53.90', null, null, null, null);
  649. INSERT INTO `nideshop_goods` VALUES ('1081002', '1008002', '1081002', '北欧风珊瑚绒多功能抱枕', '0', '100', '', '靠枕暖手毛毯多用', '<p><img src=\"http://yanxuan.nosdn.127.net/d3afdc4dc4f7e8700abd3befd8786f9b.jpg\" _src=\"http://yanxuan.nosdn.127.net/d3afdc4dc4f7e8700abd3befd8786f9b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/690e4238d3c6fe734e5a5a8e5d567cf2.jpg\" _src=\"http://yanxuan.nosdn.127.net/690e4238d3c6fe734e5a5a8e5d567cf2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3bb465550fcf6bafcde2b11b4a96d799.jpg\" _src=\"http://yanxuan.nosdn.127.net/3bb465550fcf6bafcde2b11b4a96d799.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0b4ba8661f77ff02edc7a172ea1489a3.jpg\" _src=\"http://yanxuan.nosdn.127.net/0b4ba8661f77ff02edc7a172ea1489a3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ededcff020a14eecad669b5beeba3f30.jpg\" _src=\"http://yanxuan.nosdn.127.net/ededcff020a14eecad669b5beeba3f30.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/394992289ec493441e7e91dd8a6e856b.jpg\" _src=\"http://yanxuan.nosdn.127.net/394992289ec493441e7e91dd8a6e856b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f06eb02e8ed368a868dfd8137d1c7f3b.jpg\" _src=\"http://yanxuan.nosdn.127.net/f06eb02e8ed368a868dfd8137d1c7f3b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cec7fcfda67bf3ed1ee66e887614d633.jpg\" _src=\"http://yanxuan.nosdn.127.net/cec7fcfda67bf3ed1ee66e887614d633.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/19ffcfd2a998820e92656611ba6ccd99.jpg\" _src=\"http://yanxuan.nosdn.127.net/19ffcfd2a998820e92656611ba6ccd99.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3c698e643a9ababb498f36b2dd948f59.jpg\" _src=\"http://yanxuan.nosdn.127.net/3c698e643a9ababb498f36b2dd948f59.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b9746e6314f6aec06be56e6b1f54972c.jpg\" _src=\"http://yanxuan.nosdn.127.net/b9746e6314f6aec06be56e6b1f54972c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/769eee41f1452888fa632c07551ca400.jpg\" _src=\"http://yanxuan.nosdn.127.net/769eee41f1452888fa632c07551ca400.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/65c740031e1cd5792aecc6333710fe06.jpg\" _src=\"http://yanxuan.nosdn.127.net/65c740031e1cd5792aecc6333710fe06.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/42361e27db7a3b76705568c0f57bfd43.jpg\" _src=\"http://yanxuan.nosdn.127.net/42361e27db7a3b76705568c0f57bfd43.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8a3048b4a8ea13487faa1ff51c394ad3.jpg\" _src=\"http://yanxuan.nosdn.127.net/8a3048b4a8ea13487faa1ff51c394ad3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/032041aaae3d703194d7fab7599c4495.jpg\" _src=\"http://yanxuan.nosdn.127.net/032041aaae3d703194d7fab7599c4495.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2478a21152ad10d517af58aaaed64214.jpg\" _src=\"http://yanxuan.nosdn.127.net/2478a21152ad10d517af58aaaed64214.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/92691014c72fd7f34f6fada58162011f.jpg\" _src=\"http://yanxuan.nosdn.127.net/92691014c72fd7f34f6fada58162011f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9dc547b23d58f4a835008b55f797f4bf.jpg\" _src=\"http://yanxuan.nosdn.127.net/9dc547b23d58f4a835008b55f797f4bf.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bf6a80f009ba96e51851dce228e542b5.jpg\" _src=\"http://yanxuan.nosdn.127.net/bf6a80f009ba96e51851dce228e542b5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/52674285cdb5d2ea19967d3188d1ff8d.jpg\" _src=\"http://yanxuan.nosdn.127.net/52674285cdb5d2ea19967d3188d1ff8d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/eeb3c5128f915416f4b60a968230d320.jpg\" _src=\"http://yanxuan.nosdn.127.net/eeb3c5128f915416f4b60a968230d320.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/998cc7acd5ce1797aa4b32f8ef775148.jpg\" _src=\"http://yanxuan.nosdn.127.net/998cc7acd5ce1797aa4b32f8ef775148.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d7d12038de9483c3974c3ad8f20927a6.jpg\" _src=\"http://yanxuan.nosdn.127.net/d7d12038de9483c3974c3ad8f20927a6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f3c6b9f3fdf0c48156251636e513720e.jpg\" _src=\"http://yanxuan.nosdn.127.net/f3c6b9f3fdf0c48156251636e513720e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/367b80cefe0803348720f82f1c30cfe7.jpg\" _src=\"http://yanxuan.nosdn.127.net/367b80cefe0803348720f82f1c30cfe7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c360e0a65e58cc1c04e01eed6f04b54b.jpg\" _src=\"http://yanxuan.nosdn.127.net/c360e0a65e58cc1c04e01eed6f04b54b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6e60d12aff676400bad21d0c93b67803.jpg\" _src=\"http://yanxuan.nosdn.127.net/6e60d12aff676400bad21d0c93b67803.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8be1fb462d145316ec2264d5025b8a48.jpg\" _src=\"http://yanxuan.nosdn.127.net/8be1fb462d145316ec2264d5025b8a48.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/80725f3251d122a8bc66b20814648310.jpg\" _src=\"http://yanxuan.nosdn.127.net/80725f3251d122a8bc66b20814648310.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2a6a82ed8c28b0c60b45bb38e4e7ce04.jpg\" _src=\"http://yanxuan.nosdn.127.net/2a6a82ed8c28b0c60b45bb38e4e7ce04.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ae881c80e00c34e59c7fd77f829b9931.jpg\" _src=\"http://yanxuan.nosdn.127.net/ae881c80e00c34e59c7fd77f829b9931.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/10d7b57b8772053d38fca8e7f6856bac.jpg\" _src=\"http://yanxuan.nosdn.127.net/10d7b57b8772053d38fca8e7f6856bac.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6d43e30b2aaac4a81dec473fc2842984.jpg\" _src=\"http://yanxuan.nosdn.127.net/6d43e30b2aaac4a81dec473fc2842984.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bdd8426becc5a730730838e264c8c998.jpg\" _src=\"http://yanxuan.nosdn.127.net/bdd8426becc5a730730838e264c8c998.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b2aaf853063048b8485c1219b8ba55ea.jpg\" _src=\"http://yanxuan.nosdn.127.net/b2aaf853063048b8485c1219b8ba55ea.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/70604ff736ccc200037d247a274ac128.jpg\" _src=\"http://yanxuan.nosdn.127.net/70604ff736ccc200037d247a274ac128.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3778c8814cba4fa56d697d6e7c84e5dc.jpg\" _src=\"http://yanxuan.nosdn.127.net/3778c8814cba4fa56d697d6e7c84e5dc.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/aa66cda001dd6ba7281f9808da9a344b.jpg\" _src=\"http://yanxuan.nosdn.127.net/aa66cda001dd6ba7281f9808da9a344b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/65955a09afe2dfa08a92e3b70bda0f5d.jpg\" _src=\"http://yanxuan.nosdn.127.net/65955a09afe2dfa08a92e3b70bda0f5d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/46bd1859ec91d296d8367e2e6a97ec11.jpg\" _src=\"http://yanxuan.nosdn.127.net/46bd1859ec91d296d8367e2e6a97ec11.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/33259dcc01613bbf0bb8313f9129e7bc.jpg\" _src=\"http://yanxuan.nosdn.127.net/33259dcc01613bbf0bb8313f9129e7bc.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5fa03cc2c17cc38da8dc84d0c0e42fa2.jpg\" _src=\"http://yanxuan.nosdn.127.net/5fa03cc2c17cc38da8dc84d0c0e42fa2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f5baa2bc5c725dd3d8522b7766830bcb.jpg\" _src=\"http://yanxuan.nosdn.127.net/f5baa2bc5c725dd3d8522b7766830bcb.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '21', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/b87b4b80910fa03b92923997fd4aabd9.jpg', 'http://yanxuan.nosdn.127.net/380cfcd5d8bc22360de089f0b4eb11da.png', '89.00', '132', '1085012', '0.00', '限时购', '', '0.00', '0', '0', '1', '97.90', null, null, null, null);
  650. INSERT INTO `nideshop_goods` VALUES ('1083009', '1011004', '1083009', '海洋之心永生花', '0', '100', '', '厄瓜多尔玫瑰,精致美感', '<p><img src=\"http://yanxuan.nosdn.127.net/1b746ed72f6bf99405c749cb6c9da6eb.jpg\" _src=\"http://yanxuan.nosdn.127.net/1b746ed72f6bf99405c749cb6c9da6eb.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/06b441ba473cabbc5189da42a2c0eb77.jpg\" _src=\"http://yanxuan.nosdn.127.net/06b441ba473cabbc5189da42a2c0eb77.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b3f24e6e91b100c8132feb082f1a34e9.jpg\" _src=\"http://yanxuan.nosdn.127.net/b3f24e6e91b100c8132feb082f1a34e9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/696cba61d6b37131c2322b66d0495b93.jpg\" _src=\"http://yanxuan.nosdn.127.net/696cba61d6b37131c2322b66d0495b93.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f1b458886ef3de6961975f86425fafb0.jpg\" _src=\"http://yanxuan.nosdn.127.net/f1b458886ef3de6961975f86425fafb0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/63635766ac69f5009483eaca4d696da2.jpg\" _src=\"http://yanxuan.nosdn.127.net/63635766ac69f5009483eaca4d696da2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3b0d9fdd0909325b8a067e2e7d70c157.jpg\" _src=\"http://yanxuan.nosdn.127.net/3b0d9fdd0909325b8a067e2e7d70c157.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/82da955cf9e36e3d08dadc59f5f300c3.jpg\" _src=\"http://yanxuan.nosdn.127.net/82da955cf9e36e3d08dadc59f5f300c3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/20d2cc7cdf5e6efe02bfe466e66cd9f6.jpg\" _src=\"http://yanxuan.nosdn.127.net/20d2cc7cdf5e6efe02bfe466e66cd9f6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3a337c585ca3a1bbeee9785e0f6a191c.jpg\" _src=\"http://yanxuan.nosdn.127.net/3a337c585ca3a1bbeee9785e0f6a191c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/65277e00b7fc1a3319881a3692777268.jpg\" _src=\"http://yanxuan.nosdn.127.net/65277e00b7fc1a3319881a3692777268.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/31e4584649abe39c7f197ba8924fb74c.jpg\" _src=\"http://yanxuan.nosdn.127.net/31e4584649abe39c7f197ba8924fb74c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fbc59ffa03f9901cdccfba627b60e1ce.jpg\" _src=\"http://yanxuan.nosdn.127.net/fbc59ffa03f9901cdccfba627b60e1ce.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d4b72e337df5ed195cfbc661a3777845.jpg\" _src=\"http://yanxuan.nosdn.127.net/d4b72e337df5ed195cfbc661a3777845.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/080ce5c403e912ac791b31eb0c289511.jpg\" _src=\"http://yanxuan.nosdn.127.net/080ce5c403e912ac791b31eb0c289511.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/78b066ce0b49497a9501948063322263.jpg\" _src=\"http://yanxuan.nosdn.127.net/78b066ce0b49497a9501948063322263.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7fb74a8a28be5f5c6dacfd16f978afe2.jpg\" _src=\"http://yanxuan.nosdn.127.net/7fb74a8a28be5f5c6dacfd16f978afe2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/36b820addabfb7caf910529969a3f1bb.jpg\" _src=\"http://yanxuan.nosdn.127.net/36b820addabfb7caf910529969a3f1bb.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/219fdb339a336e4f72f40c8849069b15.jpg\" _src=\"http://yanxuan.nosdn.127.net/219fdb339a336e4f72f40c8849069b15.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bfb962ce656900f82c46c2e2d3a5df1d.jpg\" _src=\"http://yanxuan.nosdn.127.net/bfb962ce656900f82c46c2e2d3a5df1d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/01946020d4e1500d250d28c7e7e0dae5.jpg\" _src=\"http://yanxuan.nosdn.127.net/01946020d4e1500d250d28c7e7e0dae5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/20b66f85a1606fda8fc700a85c17d8d7.jpg\" _src=\"http://yanxuan.nosdn.127.net/20b66f85a1606fda8fc700a85c17d8d7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/31a70dab0b81c7eac9696b2116a6df99.jpg\" _src=\"http://yanxuan.nosdn.127.net/31a70dab0b81c7eac9696b2116a6df99.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/611db5a79922174f7fc267267c01fb6a.jpg\" _src=\"http://yanxuan.nosdn.127.net/611db5a79922174f7fc267267c01fb6a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ceeea13917bc6ba5d8b358007feacc4f.jpg\" _src=\"http://yanxuan.nosdn.127.net/ceeea13917bc6ba5d8b358007feacc4f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/95cb22dfb9901f209719996cb40c1d41.jpg\" _src=\"http://yanxuan.nosdn.127.net/95cb22dfb9901f209719996cb40c1d41.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e98ac4660f3907189a73040d91c74609.jpg\" _src=\"http://yanxuan.nosdn.127.net/e98ac4660f3907189a73040d91c74609.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8593ac139f076079f1600d5c9dc8018d.jpg\" _src=\"http://yanxuan.nosdn.127.net/8593ac139f076079f1600d5c9dc8018d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0045d4dd0585566f1b93eaf844e3073a.jpg\" _src=\"http://yanxuan.nosdn.127.net/0045d4dd0585566f1b93eaf844e3073a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f9d407b3292b173daec7044c3db1fd6c.jpg\" _src=\"http://yanxuan.nosdn.127.net/f9d407b3292b173daec7044c3db1fd6c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1f5e7818316caa798f48fae4f3cdb938.jpg\" _src=\"http://yanxuan.nosdn.127.net/1f5e7818316caa798f48fae4f3cdb938.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/be171d645ed6e4f2651df9d3f6f4231e.jpg\" _src=\"http://yanxuan.nosdn.127.net/be171d645ed6e4f2651df9d3f6f4231e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ea8bf6c7ebc5641209fb1c846f3bef5f.jpg\" _src=\"http://yanxuan.nosdn.127.net/ea8bf6c7ebc5641209fb1c846f3bef5f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/95b1e32659f10a90e0ea01255d318df2.jpg\" _src=\"http://yanxuan.nosdn.127.net/95b1e32659f10a90e0ea01255d318df2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5c60047bd75a8b0cc943925f2ecd6e63.jpg\" _src=\"http://yanxuan.nosdn.127.net/5c60047bd75a8b0cc943925f2ecd6e63.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0d5fdfb237a0ff76f276662437a49bdd.jpg\" _src=\"http://yanxuan.nosdn.127.net/0d5fdfb237a0ff76f276662437a49bdd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/476a35de0402c6ffb483d890ab0ddbef.jpg\" _src=\"http://yanxuan.nosdn.127.net/476a35de0402c6ffb483d890ab0ddbef.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/02a627d54428aced361f96e3e6eca226.jpg\" _src=\"http://yanxuan.nosdn.127.net/02a627d54428aced361f96e3e6eca226.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e6b5d161c87cae4b6d713fd79e135045.jpg\" _src=\"http://yanxuan.nosdn.127.net/e6b5d161c87cae4b6d713fd79e135045.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d893f5518e755af8686cf13e4490a129.jpg\" _src=\"http://yanxuan.nosdn.127.net/d893f5518e755af8686cf13e4490a129.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/54fa3793ff82c378ab52a9eaf6fa4f7e.jpg\" _src=\"http://yanxuan.nosdn.127.net/54fa3793ff82c378ab52a9eaf6fa4f7e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/053b11e1be5bbf24773853025125dec0.jpg\" _src=\"http://yanxuan.nosdn.127.net/053b11e1be5bbf24773853025125dec0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/57798ce86240acd240f4b56c9aa04f01.jpg\" _src=\"http://yanxuan.nosdn.127.net/57798ce86240acd240f4b56c9aa04f01.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8a379abfeada13c4696c48379a035373.jpg\" _src=\"http://yanxuan.nosdn.127.net/8a379abfeada13c4696c48379a035373.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8a2d49a4c05ee87b057e9f0bd1c22a66.jpg\" _src=\"http://yanxuan.nosdn.127.net/8a2d49a4c05ee87b057e9f0bd1c22a66.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/91bdd265ca73b68ecc940bda58c67d5d.jpg\" _src=\"http://yanxuan.nosdn.127.net/91bdd265ca73b68ecc940bda58c67d5d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/46328006b2280246628dbbf890cb7b72.jpg\" _src=\"http://yanxuan.nosdn.127.net/46328006b2280246628dbbf890cb7b72.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '1', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/4b862041e2c90ac3fcbbd78994884272.jpg', 'http://yanxuan.nosdn.127.net/76e5c820f6bb71a26517ffa01f499871.png', '299.00', '1331', '1087100', '0.00', '限时购', '', '0.00', '0', '0', '0', '328.90', null, null, null, null);
  651. INSERT INTO `nideshop_goods` VALUES ('1083010', '1011004', '1083010', '绿野仙踪永生花', '0', '100', '', '花朵与多元素的碰撞', '<p><img src=\"http://yanxuan.nosdn.127.net/872f68ec2c4c81593d7a264b533b8b38.jpg\" _src=\"http://yanxuan.nosdn.127.net/872f68ec2c4c81593d7a264b533b8b38.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/87e5fe50a1d16ba939666f6d6004de73.jpg\" _src=\"http://yanxuan.nosdn.127.net/87e5fe50a1d16ba939666f6d6004de73.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/06aaec921b232c61fd12c09ea5a43500.jpg\" _src=\"http://yanxuan.nosdn.127.net/06aaec921b232c61fd12c09ea5a43500.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1004dd3c5389c77f983637d72bc0ec59.jpg\" _src=\"http://yanxuan.nosdn.127.net/1004dd3c5389c77f983637d72bc0ec59.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a8636d85945b34f4f46c40d8bb23da1e.jpg\" _src=\"http://yanxuan.nosdn.127.net/a8636d85945b34f4f46c40d8bb23da1e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cba38f6d80de232aa7cb41a5ea762ccc.jpg\" _src=\"http://yanxuan.nosdn.127.net/cba38f6d80de232aa7cb41a5ea762ccc.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/dbce5a3eb52ba113817529c0f6e19ce6.jpg\" _src=\"http://yanxuan.nosdn.127.net/dbce5a3eb52ba113817529c0f6e19ce6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fcb43dc45be45570a9b8a2940d508f3e.jpg\" _src=\"http://yanxuan.nosdn.127.net/fcb43dc45be45570a9b8a2940d508f3e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f65584ca37db0d4bba7b3ff8d0dd7c85.jpg\" _src=\"http://yanxuan.nosdn.127.net/f65584ca37db0d4bba7b3ff8d0dd7c85.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ce1d98231b92a08a851bd1df647383bd.jpg\" _src=\"http://yanxuan.nosdn.127.net/ce1d98231b92a08a851bd1df647383bd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6614fd0aa3434d15305c99893f6275ae.jpg\" _src=\"http://yanxuan.nosdn.127.net/6614fd0aa3434d15305c99893f6275ae.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/73bfbb663434efdbfaa16b300af283a9.jpg\" _src=\"http://yanxuan.nosdn.127.net/73bfbb663434efdbfaa16b300af283a9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/91a5e9f66c342ab7620b6110f12cb4e0.jpg\" _src=\"http://yanxuan.nosdn.127.net/91a5e9f66c342ab7620b6110f12cb4e0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1a697e0d6cd426ad0fd108279d4592a7.jpg\" _src=\"http://yanxuan.nosdn.127.net/1a697e0d6cd426ad0fd108279d4592a7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/86d524e4372219fe3cf192cf8ced2fce.jpg\" _src=\"http://yanxuan.nosdn.127.net/86d524e4372219fe3cf192cf8ced2fce.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/631bd72f94c63871b4c635109f67e1c4.jpg\" _src=\"http://yanxuan.nosdn.127.net/631bd72f94c63871b4c635109f67e1c4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/220dfd6fe696ad1c4cc7552d01af7414.jpg\" _src=\"http://yanxuan.nosdn.127.net/220dfd6fe696ad1c4cc7552d01af7414.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f1886adf40c6e0fb9bf9262c54b3d12c.jpg\" _src=\"http://yanxuan.nosdn.127.net/f1886adf40c6e0fb9bf9262c54b3d12c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f60e5c3002cd00f5b2190ef0eea7c05a.jpg\" _src=\"http://yanxuan.nosdn.127.net/f60e5c3002cd00f5b2190ef0eea7c05a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f1d91663eded7ff87a33c251f6b71168.jpg\" _src=\"http://yanxuan.nosdn.127.net/f1d91663eded7ff87a33c251f6b71168.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5de732d905584125eeaaebc0b7bf2d96.jpg\" _src=\"http://yanxuan.nosdn.127.net/5de732d905584125eeaaebc0b7bf2d96.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/de2b14e10b3450453b406c238953d9ec.jpg\" _src=\"http://yanxuan.nosdn.127.net/de2b14e10b3450453b406c238953d9ec.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c9d37955cdadb0800eba149475bd96e9.jpg\" _src=\"http://yanxuan.nosdn.127.net/c9d37955cdadb0800eba149475bd96e9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e1f75e9d6b70c75670319231f1571dd8.jpg\" _src=\"http://yanxuan.nosdn.127.net/e1f75e9d6b70c75670319231f1571dd8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b890510ea48b7d159a22890406e5b3ec.jpg\" _src=\"http://yanxuan.nosdn.127.net/b890510ea48b7d159a22890406e5b3ec.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cf306751ff360b80219eb56e0236ef66.jpg\" _src=\"http://yanxuan.nosdn.127.net/cf306751ff360b80219eb56e0236ef66.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/54aa26a7c8785299f54719304b75eade.jpg\" _src=\"http://yanxuan.nosdn.127.net/54aa26a7c8785299f54719304b75eade.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f7a151c2e24d097b6128415a7d7c17ea.jpg\" _src=\"http://yanxuan.nosdn.127.net/f7a151c2e24d097b6128415a7d7c17ea.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/24de9d76834c16d6811d0db2743e11bf.jpg\" _src=\"http://yanxuan.nosdn.127.net/24de9d76834c16d6811d0db2743e11bf.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a7bafc75fe6a498f2710542f28e129e5.jpg\" _src=\"http://yanxuan.nosdn.127.net/a7bafc75fe6a498f2710542f28e129e5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/dc61bdbac2ee9ba29004e4455fb02ead.jpg\" _src=\"http://yanxuan.nosdn.127.net/dc61bdbac2ee9ba29004e4455fb02ead.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/077f02722953587161b03664a95e04dc.jpg\" _src=\"http://yanxuan.nosdn.127.net/077f02722953587161b03664a95e04dc.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/240b04e96eb8555f673d5d83987b0085.jpg\" _src=\"http://yanxuan.nosdn.127.net/240b04e96eb8555f673d5d83987b0085.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e0ea680311627b79e004a1023b8ba667.jpg\" _src=\"http://yanxuan.nosdn.127.net/e0ea680311627b79e004a1023b8ba667.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e013efd9b24d7776ef14139d09385c22.jpg\" _src=\"http://yanxuan.nosdn.127.net/e013efd9b24d7776ef14139d09385c22.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/771212784bf1dc6f15616d760f84ee3f.jpg\" _src=\"http://yanxuan.nosdn.127.net/771212784bf1dc6f15616d760f84ee3f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d158de0ad3d9199f69b23dbdc4158145.jpg\" _src=\"http://yanxuan.nosdn.127.net/d158de0ad3d9199f69b23dbdc4158145.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/907d34328d50e3046569a7dbb3ffc6fa.jpg\" _src=\"http://yanxuan.nosdn.127.net/907d34328d50e3046569a7dbb3ffc6fa.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a727890123a453f2d985fbf4e8685673.jpg\" _src=\"http://yanxuan.nosdn.127.net/a727890123a453f2d985fbf4e8685673.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5a91a0c6ae0b550ac31a2595bd576248.jpg\" _src=\"http://yanxuan.nosdn.127.net/5a91a0c6ae0b550ac31a2595bd576248.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/faae995ebf3c914e15c6fd722e56f723.jpg\" _src=\"http://yanxuan.nosdn.127.net/faae995ebf3c914e15c6fd722e56f723.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/42c03d3bb396ff92f41508523528084f.jpg\" _src=\"http://yanxuan.nosdn.127.net/42c03d3bb396ff92f41508523528084f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/34cd72d26957d2d21b77e13f72b2c152.jpg\" _src=\"http://yanxuan.nosdn.127.net/34cd72d26957d2d21b77e13f72b2c152.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d90740ea6c616414b4d560cfa704924f.jpg\" _src=\"http://yanxuan.nosdn.127.net/d90740ea6c616414b4d560cfa704924f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/160debe27efa104fba6de6514449619c.jpg\" _src=\"http://yanxuan.nosdn.127.net/160debe27efa104fba6de6514449619c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/180a58f57add7ac4cd4b73a19407713b.jpg\" _src=\"http://yanxuan.nosdn.127.net/180a58f57add7ac4cd4b73a19407713b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2f0881dbadf691f92257d073c1e5a780.jpg\" _src=\"http://yanxuan.nosdn.127.net/2f0881dbadf691f92257d073c1e5a780.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f191394211da2a5b0f63d3e102067b28.jpg\" _src=\"http://yanxuan.nosdn.127.net/f191394211da2a5b0f63d3e102067b28.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2fc6603485665bdc886bf13664d1a493.jpg\" _src=\"http://yanxuan.nosdn.127.net/2fc6603485665bdc886bf13664d1a493.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/693af2b7a263853ef898401b3221e5ba.jpg\" _src=\"http://yanxuan.nosdn.127.net/693af2b7a263853ef898401b3221e5ba.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a54b9bff291b8e0c98260d0aceea61e0.jpg\" _src=\"http://yanxuan.nosdn.127.net/a54b9bff291b8e0c98260d0aceea61e0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/356950f4b46e0b039797de034a197a86.jpg\" _src=\"http://yanxuan.nosdn.127.net/356950f4b46e0b039797de034a197a86.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '3', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/6813b82a85356dbb119761382a1ba74f.jpg', 'http://yanxuan.nosdn.127.net/b9a12d07f8f2d04d662d9340e68e6687.png', '469.00', '619', '1087101', '0.00', '限时购', '', '0.00', '0', '0', '0', '515.90', null, null, null, null);
  652. INSERT INTO `nideshop_goods` VALUES ('1084001', '1008009', '1084001', '纯棉简欧条纹针织盖毯', '1001020', '100', '', '纯棉针织,柔软亲肤', '<p><img src=\"http://yanxuan.nosdn.127.net/d60df75bd3b7037cfbdb0bcb5fe29078.jpg\" _src=\"http://yanxuan.nosdn.127.net/d60df75bd3b7037cfbdb0bcb5fe29078.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3a3b8f3a2fa9862a758916be8a99f237.jpg\" _src=\"http://yanxuan.nosdn.127.net/3a3b8f3a2fa9862a758916be8a99f237.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/16ae1db56d952fca040462fedf80fe6f.jpg\" _src=\"http://yanxuan.nosdn.127.net/16ae1db56d952fca040462fedf80fe6f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/13833e191509f7ef0e0f2b2431b167e1.jpg\" _src=\"http://yanxuan.nosdn.127.net/13833e191509f7ef0e0f2b2431b167e1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/989982f7920b6cf6bf6942fb7e6f28e9.jpg\" _src=\"http://yanxuan.nosdn.127.net/989982f7920b6cf6bf6942fb7e6f28e9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ec920f8b651cff338e5c6d3f9200ccbf.jpg\" _src=\"http://yanxuan.nosdn.127.net/ec920f8b651cff338e5c6d3f9200ccbf.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b997c8381faacba67423c4901e75cbd6.jpg\" _src=\"http://yanxuan.nosdn.127.net/b997c8381faacba67423c4901e75cbd6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2fd1cb3ed252f2bd7f3ef09006f4183f.jpg\" _src=\"http://yanxuan.nosdn.127.net/2fd1cb3ed252f2bd7f3ef09006f4183f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4c29a7dce14c954710ffbf3b2e6e1f5b.jpg\" _src=\"http://yanxuan.nosdn.127.net/4c29a7dce14c954710ffbf3b2e6e1f5b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ad7deda640da27bed0957567b8c720fe.jpg\" _src=\"http://yanxuan.nosdn.127.net/ad7deda640da27bed0957567b8c720fe.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e3192b3299cc9debf87e017ed6e0e707.jpg\" _src=\"http://yanxuan.nosdn.127.net/e3192b3299cc9debf87e017ed6e0e707.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bdb27df5a064f09d0a6b2fa0cadeafc9.jpg\" _src=\"http://yanxuan.nosdn.127.net/bdb27df5a064f09d0a6b2fa0cadeafc9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/22dd3a0791adc1cb60c0e7f4e5f50ea8.jpg\" _src=\"http://yanxuan.nosdn.127.net/22dd3a0791adc1cb60c0e7f4e5f50ea8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/955d02dad34f4a570d5f6799e29f0484.jpg\" _src=\"http://yanxuan.nosdn.127.net/955d02dad34f4a570d5f6799e29f0484.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/567c8474434e1c64f31bdbff5833dec7.jpg\" _src=\"http://yanxuan.nosdn.127.net/567c8474434e1c64f31bdbff5833dec7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f31f3d51648100fcb7c512f48fcaf8eb.jpg\" _src=\"http://yanxuan.nosdn.127.net/f31f3d51648100fcb7c512f48fcaf8eb.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/777f29a46d14baab3e676c317ce17d26.jpg\" _src=\"http://yanxuan.nosdn.127.net/777f29a46d14baab3e676c317ce17d26.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fa41d6a9b78bb94e51face2264976044.jpg\" _src=\"http://yanxuan.nosdn.127.net/fa41d6a9b78bb94e51face2264976044.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f98cc5909c7b2960989dadf2ff3aca7e.jpg\" _src=\"http://yanxuan.nosdn.127.net/f98cc5909c7b2960989dadf2ff3aca7e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8c3b809c819b448d8b5cae7aa5ccaaae.jpg\" _src=\"http://yanxuan.nosdn.127.net/8c3b809c819b448d8b5cae7aa5ccaaae.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0e73953b0e4226ff8ce7760f1ef521ae.jpg\" _src=\"http://yanxuan.nosdn.127.net/0e73953b0e4226ff8ce7760f1ef521ae.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6a3c3af2199907393e91a24f8d2aa05d.jpg\" _src=\"http://yanxuan.nosdn.127.net/6a3c3af2199907393e91a24f8d2aa05d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bf286dc4fbad8ac953a2cf580b24059d.jpg\" _src=\"http://yanxuan.nosdn.127.net/bf286dc4fbad8ac953a2cf580b24059d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5ff7fcba4fc90420e266fe23a2b522b3.jpg\" _src=\"http://yanxuan.nosdn.127.net/5ff7fcba4fc90420e266fe23a2b522b3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2da1324a8fef80f429d29d8c9905e221.jpg\" _src=\"http://yanxuan.nosdn.127.net/2da1324a8fef80f429d29d8c9905e221.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b28b3a2839f599ba0be34d103dc03d43.jpg\" _src=\"http://yanxuan.nosdn.127.net/b28b3a2839f599ba0be34d103dc03d43.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d382ee5c40eeb88b27cdea1cdb102c77.jpg\" _src=\"http://yanxuan.nosdn.127.net/d382ee5c40eeb88b27cdea1cdb102c77.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/02e82cbd31c4103d825b8bf3e65d282e.jpg\" _src=\"http://yanxuan.nosdn.127.net/02e82cbd31c4103d825b8bf3e65d282e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/69aec67dd8281a9a563136cbd285957b.jpg\" _src=\"http://yanxuan.nosdn.127.net/69aec67dd8281a9a563136cbd285957b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4ce752d3bc231a483501ea7253479974.jpg\" _src=\"http://yanxuan.nosdn.127.net/4ce752d3bc231a483501ea7253479974.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/75e8fe26c602ef7751ed8b433a0b078d.jpg\" _src=\"http://yanxuan.nosdn.127.net/75e8fe26c602ef7751ed8b433a0b078d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/46aaf931f8ccf7ba1c47f6602fb0c4e6.jpg\" _src=\"http://yanxuan.nosdn.127.net/46aaf931f8ccf7ba1c47f6602fb0c4e6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/853e0615dea16f01e63abb76f0b08357.jpg\" _src=\"http://yanxuan.nosdn.127.net/853e0615dea16f01e63abb76f0b08357.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8e31a21eb067f790b9cc410bc06c8d14.jpg\" _src=\"http://yanxuan.nosdn.127.net/8e31a21eb067f790b9cc410bc06c8d14.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6df9b852ae02044d32db41ec0316a88f.jpg\" _src=\"http://yanxuan.nosdn.127.net/6df9b852ae02044d32db41ec0316a88f.jpg\" style=\"\"/><img src=\"http://yanxuan.nosdn.127.net/bbdf123515558da5e4cffb62dfbc4c50.jpg\" _src=\"http://yanxuan.nosdn.127.net/bbdf123515558da5e4cffb62dfbc4c50.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/69ba446f41e17ac41e4872af2c03aa3d.jpg\" _src=\"http://yanxuan.nosdn.127.net/69ba446f41e17ac41e4872af2c03aa3d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f15085ed43a2c43240b0599ebc5cd58e.jpg\" _src=\"http://yanxuan.nosdn.127.net/f15085ed43a2c43240b0599ebc5cd58e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/60471cae3855ce31a0a55c9c90dad5bc.jpg\" _src=\"http://yanxuan.nosdn.127.net/60471cae3855ce31a0a55c9c90dad5bc.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7e345b6a5fb55570ae85fdddcd08d200.jpg\" _src=\"http://yanxuan.nosdn.127.net/7e345b6a5fb55570ae85fdddcd08d200.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f85be76a1e0018a00ed1e64d7a18723c.jpg\" _src=\"http://yanxuan.nosdn.127.net/f85be76a1e0018a00ed1e64d7a18723c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2a1214d35881c724baf6281feabf49b8.jpg\" _src=\"http://yanxuan.nosdn.127.net/2a1214d35881c724baf6281feabf49b8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/65cb9bdfb5b8a8450834c38caf928eb9.jpg\" _src=\"http://yanxuan.nosdn.127.net/65cb9bdfb5b8a8450834c38caf928eb9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/32f8045537d03e634e79db1c0b8d3414.jpg\" _src=\"http://yanxuan.nosdn.127.net/32f8045537d03e634e79db1c0b8d3414.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/71021e6ad1d1fbe3ac40e3a42f1bc725.jpg\" _src=\"http://yanxuan.nosdn.127.net/71021e6ad1d1fbe3ac40e3a42f1bc725.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/14919c06e49737b473eeeff20bdc8144.jpg\" _src=\"http://yanxuan.nosdn.127.net/14919c06e49737b473eeeff20bdc8144.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/083a822300f398d51eb801d89072cd2d.jpg\" _src=\"http://yanxuan.nosdn.127.net/083a822300f398d51eb801d89072cd2d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bdfdf2ccf213c7e1a4144afefda96417.jpg\" _src=\"http://yanxuan.nosdn.127.net/bdfdf2ccf213c7e1a4144afefda96417.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e5ae066cbddfa5a4705674ae13cdc829.jpg\" _src=\"http://yanxuan.nosdn.127.net/e5ae066cbddfa5a4705674ae13cdc829.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e876d3126cb7464c68a4150ff4edcf8a.jpg\" _src=\"http://yanxuan.nosdn.127.net/e876d3126cb7464c68a4150ff4edcf8a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/59bc3b22edabd57ec2a5e0cf1b5a4fe0.jpg\" _src=\"http://yanxuan.nosdn.127.net/59bc3b22edabd57ec2a5e0cf1b5a4fe0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5fe0fc9f7bf969311b647de6a2f1c25c.jpg\" _src=\"http://yanxuan.nosdn.127.net/5fe0fc9f7bf969311b647de6a2f1c25c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2e78cb02f8704bd36802e25c73486adb.jpg\" _src=\"http://yanxuan.nosdn.127.net/2e78cb02f8704bd36802e25c73486adb.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1b2e7f38703e96f95898a141a832c767.jpg\" _src=\"http://yanxuan.nosdn.127.net/1b2e7f38703e96f95898a141a832c767.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/92763e94e4bde2bfdf140f53cb30fe39.jpg\" _src=\"http://yanxuan.nosdn.127.net/92763e94e4bde2bfdf140f53cb30fe39.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b9c9a15013a260182333504e09e313b8.jpg\" _src=\"http://yanxuan.nosdn.127.net/b9c9a15013a260182333504e09e313b8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/706f9fec46c3fbf9834d408c9b69c0fd.jpg\" _src=\"http://yanxuan.nosdn.127.net/706f9fec46c3fbf9834d408c9b69c0fd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/77bcc6f7b25f0a3a671c25af18935ba3.jpg\" _src=\"http://yanxuan.nosdn.127.net/77bcc6f7b25f0a3a671c25af18935ba3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9048a396cf6474d8aa8c773a3c197b71.jpg\" _src=\"http://yanxuan.nosdn.127.net/9048a396cf6474d8aa8c773a3c197b71.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '37', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/8c8516b08eee47c0b7476d4f78062fc1.png', 'http://yanxuan.nosdn.127.net/07f682d405c1d2ed343c210ac8f8862a.png', '249.00', '1638', '1089014', '0.00', '限时购', '', '0.00', '0', '0', '0', '273.90', null, null, null, null);
  653. INSERT INTO `nideshop_goods` VALUES ('1084003', '1008009', '1084003', '纯棉美式绞花针织盖毯', '1001020', '100', '', '美式提花,温暖舒适', '<p><img src=\"http://yanxuan.nosdn.127.net/489c8f0dcad41cbcfb190170b6059266.jpg\" _src=\"http://yanxuan.nosdn.127.net/489c8f0dcad41cbcfb190170b6059266.jpg\"/></p>', '1', '2017-08-30 11:40:11', '31', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/e27258c0f82c96459326abd61c38c69b.jpg', 'http://yanxuan.nosdn.127.net/cf40c167e7054fe184d49f19121f63c7.png', '199.00', '36', '1089017', '0.00', '限时购', '', '0.00', '0', '0', '1', '218.90', null, null, null, null);
  654. INSERT INTO `nideshop_goods` VALUES ('1085019', '1012001', '1085019', '20寸 纯PC“铝框”(非全铝)登机箱', '0', '100', '', '铝质包角,牢固抗摔', '', '1', '2017-08-30 11:40:11', '2', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/f819d7ddd1287106efea3736817cf25f.png', 'http://yanxuan.nosdn.127.net/65c955a7a98e84d44ca30bb88a591eac.png', '349.00', '21816', '1090081', '0.00', '限时购', '', '0.00', '0', '0', '0', '383.90', null, null, null, null);
  655. INSERT INTO `nideshop_goods` VALUES ('1086015', '1008016', '1086015', '北欧极简直杆台灯', '0', '100', '', '北欧色彩,极简线条', '<p><br/></p><p><img src=\"http://yanxuan.nosdn.127.net/1438c1c7d5fac9ee8a957f0e498efbab.jpg\" _src=\"http://yanxuan.nosdn.127.net/1438c1c7d5fac9ee8a957f0e498efbab.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/80d0037836d80ec0aa25ff641c261735.jpg\" _src=\"http://yanxuan.nosdn.127.net/80d0037836d80ec0aa25ff641c261735.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d527b3bb238e9399d00c94e59f067ab6.jpg\" _src=\"http://yanxuan.nosdn.127.net/d527b3bb238e9399d00c94e59f067ab6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b4004fb355802f2bf0ade96e53777f7b.jpg\" _src=\"http://yanxuan.nosdn.127.net/b4004fb355802f2bf0ade96e53777f7b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9e2156d0593a949ef23458950a1c3b45.jpg\" _src=\"http://yanxuan.nosdn.127.net/9e2156d0593a949ef23458950a1c3b45.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c1670a25eb39faab38247fbbd302e1aa.jpg\" _src=\"http://yanxuan.nosdn.127.net/c1670a25eb39faab38247fbbd302e1aa.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/488551c7d433c52a5d6511ca5dca96ba.jpg\" _src=\"http://yanxuan.nosdn.127.net/488551c7d433c52a5d6511ca5dca96ba.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5b3997a05bce53a3e65cc22357d09034.jpg\" _src=\"http://yanxuan.nosdn.127.net/5b3997a05bce53a3e65cc22357d09034.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f97f5fc70124c70b56598086acf3e4f0.jpg\" _src=\"http://yanxuan.nosdn.127.net/f97f5fc70124c70b56598086acf3e4f0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2c48c53b8727b1d0209a1db7d03f1f50.jpg\" _src=\"http://yanxuan.nosdn.127.net/2c48c53b8727b1d0209a1db7d03f1f50.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bc22d8146d53d256d7972478a7858a42.jpg\" _src=\"http://yanxuan.nosdn.127.net/bc22d8146d53d256d7972478a7858a42.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8592232780fdca35d29c9e9cef0e25f4.jpg\" _src=\"http://yanxuan.nosdn.127.net/8592232780fdca35d29c9e9cef0e25f4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/56e16e7ae04456d801533b969de58127.jpg\" _src=\"http://yanxuan.nosdn.127.net/56e16e7ae04456d801533b969de58127.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fe7ad603619f4614c11a3afacf98e9f9.jpg\" _src=\"http://yanxuan.nosdn.127.net/fe7ad603619f4614c11a3afacf98e9f9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c04470af48bf83539efe1ea0380cda20.jpg\" _src=\"http://yanxuan.nosdn.127.net/c04470af48bf83539efe1ea0380cda20.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/14d70de1f7ea5309e97f145a895bdd6d.jpg\" _src=\"http://yanxuan.nosdn.127.net/14d70de1f7ea5309e97f145a895bdd6d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4cd3c3a60d92575400098cd31cf994bb.jpg\" _src=\"http://yanxuan.nosdn.127.net/4cd3c3a60d92575400098cd31cf994bb.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c46be17c0c367292dd3a612d277898f6.jpg\" _src=\"http://yanxuan.nosdn.127.net/c46be17c0c367292dd3a612d277898f6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/68e909b6bbfd4760f6d94170bb9f1e32.jpg\" _src=\"http://yanxuan.nosdn.127.net/68e909b6bbfd4760f6d94170bb9f1e32.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6e2fa55c8e1f12d592d85582c8be22f4.jpg\" _src=\"http://yanxuan.nosdn.127.net/6e2fa55c8e1f12d592d85582c8be22f4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9ccbf36677da68035d9cca9deaf53bb3.jpg\" _src=\"http://yanxuan.nosdn.127.net/9ccbf36677da68035d9cca9deaf53bb3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ae50a463802c44ff72b340374c93cbe3.jpg\" _src=\"http://yanxuan.nosdn.127.net/ae50a463802c44ff72b340374c93cbe3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7afafb4d6813b46bf0ad3e750ee150d2.jpg\" _src=\"http://yanxuan.nosdn.127.net/7afafb4d6813b46bf0ad3e750ee150d2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fbcb8970bf6c845ce6c47ce5b15e8c74.jpg\" _src=\"http://yanxuan.nosdn.127.net/fbcb8970bf6c845ce6c47ce5b15e8c74.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f0a696a54810118531e752d2f12bdfa4.jpg\" _src=\"http://yanxuan.nosdn.127.net/f0a696a54810118531e752d2f12bdfa4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/28ccd9c35226d3e5c7c2911b37ed4a4f.jpg\" _src=\"http://yanxuan.nosdn.127.net/28ccd9c35226d3e5c7c2911b37ed4a4f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/288c91f8d06c08ca0f7c84a7c24e73be.jpg\" _src=\"http://yanxuan.nosdn.127.net/288c91f8d06c08ca0f7c84a7c24e73be.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8a132263063ce01eb7b1aeb772343841.jpg\" _src=\"http://yanxuan.nosdn.127.net/8a132263063ce01eb7b1aeb772343841.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e71801586b48c9c9e0fff8a839eb9cf0.jpg\" _src=\"http://yanxuan.nosdn.127.net/e71801586b48c9c9e0fff8a839eb9cf0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/87df9ec07b264d5f504a29d89ee2b383.jpg\" _src=\"http://yanxuan.nosdn.127.net/87df9ec07b264d5f504a29d89ee2b383.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1b170f3f949467f5eb92406a6a348ae8.jpg\" _src=\"http://yanxuan.nosdn.127.net/1b170f3f949467f5eb92406a6a348ae8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6d02894b6d9134f0f0246b5cf51b116e.jpg\" _src=\"http://yanxuan.nosdn.127.net/6d02894b6d9134f0f0246b5cf51b116e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1b00efd8962c004cfa2ed7b1c785f090.jpg\" _src=\"http://yanxuan.nosdn.127.net/1b00efd8962c004cfa2ed7b1c785f090.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/80ecf013fd3b56477fe2473f76d46131.jpg\" _src=\"http://yanxuan.nosdn.127.net/80ecf013fd3b56477fe2473f76d46131.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9f469a6d04a48d833f91e7c84bee11f7.jpg\" _src=\"http://yanxuan.nosdn.127.net/9f469a6d04a48d833f91e7c84bee11f7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7c87cf3b2e6ae0f67edc0a45f71a427b.jpg\" _src=\"http://yanxuan.nosdn.127.net/7c87cf3b2e6ae0f67edc0a45f71a427b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/390276a05dabfa7578e6f7d316692732.jpg\" _src=\"http://yanxuan.nosdn.127.net/390276a05dabfa7578e6f7d316692732.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c8a5f9c29d293488c2b35453e137691a.jpg\" _src=\"http://yanxuan.nosdn.127.net/c8a5f9c29d293488c2b35453e137691a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c13b7d09ed64a8cb73970cd7b66093a0.jpg\" _src=\"http://yanxuan.nosdn.127.net/c13b7d09ed64a8cb73970cd7b66093a0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f6a10c6dbf2116b893cf487c2a959c82.jpg\" _src=\"http://yanxuan.nosdn.127.net/f6a10c6dbf2116b893cf487c2a959c82.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9d7d50e5fcd430b9ccde72cbd84addea.jpg\" _src=\"http://yanxuan.nosdn.127.net/9d7d50e5fcd430b9ccde72cbd84addea.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a733fc402f2ed628c003c9f08c59f993.jpg\" _src=\"http://yanxuan.nosdn.127.net/a733fc402f2ed628c003c9f08c59f993.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/25d64e1901953a651bc7de7e3edde87c.jpg\" _src=\"http://yanxuan.nosdn.127.net/25d64e1901953a651bc7de7e3edde87c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0c1526ed336c04ad9703d3a203d42d88.jpg\" _src=\"http://yanxuan.nosdn.127.net/0c1526ed336c04ad9703d3a203d42d88.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6768f1bac041434d73bb3c30bbbed21b.jpg\" _src=\"http://yanxuan.nosdn.127.net/6768f1bac041434d73bb3c30bbbed21b.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '1', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/0e9c8555164427bafa704aa73cbe707f.jpg', 'http://yanxuan.nosdn.127.net/d5c2ecfe0fb00cdd8b829975bab21a31.png', '249.00', '2711', '1091069', '0.00', '限时购', '', '0.00', '0', '0', '0', '273.90', null, null, null, null);
  656. INSERT INTO `nideshop_goods` VALUES ('1086023', '1017000', '1086023', '彩色波点缓冲宠物牵引绳', '0', '100', '', '精致合金,萌趣波点', '<p><img src=\"http://yanxuan.nosdn.127.net/04e5d14f49ea8efd77f8f3904ec9a8e2.jpg\" _src=\"http://yanxuan.nosdn.127.net/04e5d14f49ea8efd77f8f3904ec9a8e2.jpg\"/></p>', '1', '2017-08-30 11:40:11', '25', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/6e663b18dcb13ca3055bbd8b127791ce.jpg', 'http://yanxuan.nosdn.127.net/121a99e896b3e332c102eb5f6f9b3406.png', '19.90', '627', '1091109', '0.00', '限时购', '', '0.00', '0', '0', '0', '21.89', null, null, null, null);
  657. INSERT INTO `nideshop_goods` VALUES ('1086024', '1017000', '1086024', '夜间反光防走失宠物牵引绳', '0', '100', '', '编织反光,夜间防走失', '<p><img src=\"http://yanxuan.nosdn.127.net/ad4e26dd3bac3f6ee12727e416b55cca.jpg\" _src=\"http://yanxuan.nosdn.127.net/ad4e26dd3bac3f6ee12727e416b55cca.jpg\"/></p>', '1', '2017-08-30 11:40:11', '24', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/57f9abd63e360ea072694455da05c3c4.jpg', 'http://yanxuan.nosdn.127.net/af899cfaa13f515ecb9cf9a33f41370a.png', '9.90', '785', '1091111', '0.00', '限时购', '', '0.00', '0', '0', '0', '10.89', null, null, null, null);
  658. INSERT INTO `nideshop_goods` VALUES ('1086025', '1017000', '1086025', '美式精编麻花圆绳宠物牵引绳', '0', '100', '', '编织纹理,牢固精致', '<p><img src=\"http://yanxuan.nosdn.127.net/e56dbbad4b60ab1d67e5cce71bc395b1.jpg\" _src=\"http://yanxuan.nosdn.127.net/e56dbbad4b60ab1d67e5cce71bc395b1.jpg\"/></p>', '1', '2017-08-30 11:40:11', '27', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/18536578f339aa99230dcdadbfefc753.jpg', 'http://yanxuan.nosdn.127.net/78eff56b293c8354bc9ac496fc2c5179.png', '49.00', '141', '1091114', '0.00', '限时购', '', '0.00', '0', '0', '0', '53.90', null, null, null, null);
  659. INSERT INTO `nideshop_goods` VALUES ('1086026', '1017000', '1086026', '复古实心交织宠物牵引绳', '0', '100', '', '实心黑色编织仿皮质宠物牵引绳', '<p><img src=\"http://yanxuan.nosdn.127.net/43a5439bce36fe1b03a48b346daa6d46.jpg\" _src=\"http://yanxuan.nosdn.127.net/43a5439bce36fe1b03a48b346daa6d46.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d122b00dc8bca99ac1e885b0e69f9990.jpg\" _src=\"http://yanxuan.nosdn.127.net/d122b00dc8bca99ac1e885b0e69f9990.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2281e036a2d40424628634a203e7080b.jpg\" _src=\"http://yanxuan.nosdn.127.net/2281e036a2d40424628634a203e7080b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/088f48a2753122f97fc06b5aca633b77.jpg\" _src=\"http://yanxuan.nosdn.127.net/088f48a2753122f97fc06b5aca633b77.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/21ddf0de7aa4f0d5250df66a31306957.jpg\" _src=\"http://yanxuan.nosdn.127.net/21ddf0de7aa4f0d5250df66a31306957.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/92c4c0129712f496dfa7462f32a4109f.jpg\" _src=\"http://yanxuan.nosdn.127.net/92c4c0129712f496dfa7462f32a4109f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8b0c6da8e2effd5f3a129143a6236831.jpg\" _src=\"http://yanxuan.nosdn.127.net/8b0c6da8e2effd5f3a129143a6236831.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/599f555304437146f0bac97410108790.jpg\" _src=\"http://yanxuan.nosdn.127.net/599f555304437146f0bac97410108790.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/92e7c71c88037b724d12f75c7f1e1541.jpg\" _src=\"http://yanxuan.nosdn.127.net/92e7c71c88037b724d12f75c7f1e1541.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/69949db3ddb860133664f2eab13df82d.jpg\" _src=\"http://yanxuan.nosdn.127.net/69949db3ddb860133664f2eab13df82d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/355daafda57ab5e8693cfda66ee85381.jpg\" _src=\"http://yanxuan.nosdn.127.net/355daafda57ab5e8693cfda66ee85381.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8b766bb2a9319b148ea3cf200d504ecc.jpg\" _src=\"http://yanxuan.nosdn.127.net/8b766bb2a9319b148ea3cf200d504ecc.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f10e5ffa73b9a0ab6618a42a84ed58c6.jpg\" _src=\"http://yanxuan.nosdn.127.net/f10e5ffa73b9a0ab6618a42a84ed58c6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d3e393b802ff16898e38d6ec8d1100b9.jpg\" _src=\"http://yanxuan.nosdn.127.net/d3e393b802ff16898e38d6ec8d1100b9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f9e8a4a8d3246ccaebc76799a4c99005.jpg\" _src=\"http://yanxuan.nosdn.127.net/f9e8a4a8d3246ccaebc76799a4c99005.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/90010ef3083b3df38f0b4c19b0d37ead.jpg\" _src=\"http://yanxuan.nosdn.127.net/90010ef3083b3df38f0b4c19b0d37ead.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/49b6c3b4c6fe67cd6ab2fe7d38264d97.jpg\" _src=\"http://yanxuan.nosdn.127.net/49b6c3b4c6fe67cd6ab2fe7d38264d97.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/55b308be1d87d9c3520a0e9ee95e1073.jpg\" _src=\"http://yanxuan.nosdn.127.net/55b308be1d87d9c3520a0e9ee95e1073.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cee97664d128933c5944873e7a6e0f5e.jpg\" _src=\"http://yanxuan.nosdn.127.net/cee97664d128933c5944873e7a6e0f5e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/42cc29cb0038cafd04a7b33e9dbd7368.jpg\" _src=\"http://yanxuan.nosdn.127.net/42cc29cb0038cafd04a7b33e9dbd7368.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b281fb8d8c60488452034933269c229b.jpg\" _src=\"http://yanxuan.nosdn.127.net/b281fb8d8c60488452034933269c229b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/89ab246237a3d28170437349a4b9d1f9.jpg\" _src=\"http://yanxuan.nosdn.127.net/89ab246237a3d28170437349a4b9d1f9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/edf6bae4ca3c2785a659735649dcb346.jpg\" _src=\"http://yanxuan.nosdn.127.net/edf6bae4ca3c2785a659735649dcb346.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d804d35c23b29bd08ab6690382f211a7.jpg\" _src=\"http://yanxuan.nosdn.127.net/d804d35c23b29bd08ab6690382f211a7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/17ccfe0adc84dd862c63ca68e2f09e98.jpg\" _src=\"http://yanxuan.nosdn.127.net/17ccfe0adc84dd862c63ca68e2f09e98.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e41e5c299917a6b8991756de5bd35dd2.jpg\" _src=\"http://yanxuan.nosdn.127.net/e41e5c299917a6b8991756de5bd35dd2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cb72a032f4881fa0745c45e6009288c8.jpg\" _src=\"http://yanxuan.nosdn.127.net/cb72a032f4881fa0745c45e6009288c8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d1aafd30947a677128e9a8043ab291dd.jpg\" _src=\"http://yanxuan.nosdn.127.net/d1aafd30947a677128e9a8043ab291dd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a17a446018c56777cd3147db02f465d7.jpg\" _src=\"http://yanxuan.nosdn.127.net/a17a446018c56777cd3147db02f465d7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7bc5638ba378685c69f7ea74397312c0.jpg\" _src=\"http://yanxuan.nosdn.127.net/7bc5638ba378685c69f7ea74397312c0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c63617a28674ed000eaf070798e7b4db.jpg\" _src=\"http://yanxuan.nosdn.127.net/c63617a28674ed000eaf070798e7b4db.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/97f5139f4eda2be7de5809edac674de2.jpg\" _src=\"http://yanxuan.nosdn.127.net/97f5139f4eda2be7de5809edac674de2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/59ad9a7dc48201bea7de3f56d23bc732.jpg\" _src=\"http://yanxuan.nosdn.127.net/59ad9a7dc48201bea7de3f56d23bc732.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/440465f6da539b72353160fdf413349d.jpg\" _src=\"http://yanxuan.nosdn.127.net/440465f6da539b72353160fdf413349d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ca984508f60231479a55e9e72d41ecf4.jpg\" _src=\"http://yanxuan.nosdn.127.net/ca984508f60231479a55e9e72d41ecf4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/488d4b906bf632db2e69c8c638c795ee.jpg\" _src=\"http://yanxuan.nosdn.127.net/488d4b906bf632db2e69c8c638c795ee.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a239f282d18839b926f88edc6c5afeaa.jpg\" _src=\"http://yanxuan.nosdn.127.net/a239f282d18839b926f88edc6c5afeaa.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cf95c929fae93e9b563cae1cc577d2eb.jpg\" _src=\"http://yanxuan.nosdn.127.net/cf95c929fae93e9b563cae1cc577d2eb.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d40e69553829e08d79621bdb6788d8eb.jpg\" _src=\"http://yanxuan.nosdn.127.net/d40e69553829e08d79621bdb6788d8eb.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/213807781dab6c53dbd8d01e096c912d.jpg\" _src=\"http://yanxuan.nosdn.127.net/213807781dab6c53dbd8d01e096c912d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6c647de1a7fa8068452aeaa4c9adae6f.jpg\" _src=\"http://yanxuan.nosdn.127.net/6c647de1a7fa8068452aeaa4c9adae6f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bfcddb4ca2a82345b311f407e90fb430.jpg\" _src=\"http://yanxuan.nosdn.127.net/bfcddb4ca2a82345b311f407e90fb430.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/00c3766107beb8501979746c59d00711.jpg\" _src=\"http://yanxuan.nosdn.127.net/00c3766107beb8501979746c59d00711.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b92d3c1c47512ff8c11f792f98e59a19.jpg\" _src=\"http://yanxuan.nosdn.127.net/b92d3c1c47512ff8c11f792f98e59a19.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/135039e530c313757144253b6843e7d6.jpg\" _src=\"http://yanxuan.nosdn.127.net/135039e530c313757144253b6843e7d6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/846dcb901853f0af9ff9b83fa98ae9ff.jpg\" _src=\"http://yanxuan.nosdn.127.net/846dcb901853f0af9ff9b83fa98ae9ff.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/320d78412d985eaf6eff7fa708576618.jpg\" _src=\"http://yanxuan.nosdn.127.net/320d78412d985eaf6eff7fa708576618.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d1574547a1b699826966c52f5589a2ec.jpg\" _src=\"http://yanxuan.nosdn.127.net/d1574547a1b699826966c52f5589a2ec.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fcaea26f40b145becc146f79e32a94ae.jpg\" _src=\"http://yanxuan.nosdn.127.net/fcaea26f40b145becc146f79e32a94ae.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ce6346c66b227b3b59ed5f7668b44878.jpg\" _src=\"http://yanxuan.nosdn.127.net/ce6346c66b227b3b59ed5f7668b44878.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '26', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/568cc9e61f86968a3471507616473648.jpg', 'http://yanxuan.nosdn.127.net/caecdaa37d9cbcff980cee0968911e34.png', '29.00', '104', '1091115', '0.00', '限时购', '', '0.00', '0', '0', '0', '31.90', null, null, null, null);
  660. INSERT INTO `nideshop_goods` VALUES ('1086052', '1012001', '1086052', '20寸 铝镁合金登机箱', '0', '100', '', '时尚金属箱,奢品质感', '', '1', '2017-08-30 11:40:11', '4', '0', '0', '1499.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/879dde68b149091ed832980a5388304a.png', 'http://yanxuan.nosdn.127.net/93171a281c4ed272c007a050816e6f6c.png', '859.00', '599', '1091180', '0.00', '三石福利价', '三石福利价', '0.00', '0', '203', '0', '944.90', null, null, null, null);
  661. INSERT INTO `nideshop_goods` VALUES ('1090004', '1008009', '1090004', '日式法兰绒格子四件套', '1001000', '100', '', '气质英伦格纹,法兰绒的丰满细腻', '<p><img src=\"http://yanxuan.nosdn.127.net/c5d674aa299a695c5c4c0db81025e754.jpg\" _src=\"http://yanxuan.nosdn.127.net/c5d674aa299a695c5c4c0db81025e754.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1f26e78d93e29aab32b4629dc0ac46a6.jpg\" _src=\"http://yanxuan.nosdn.127.net/1f26e78d93e29aab32b4629dc0ac46a6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f56ec00fd8014106cf25a661d3ec797b.jpg\" _src=\"http://yanxuan.nosdn.127.net/f56ec00fd8014106cf25a661d3ec797b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/74ee09e3d121c21c128fda3dbb48ff93.jpg\" _src=\"http://yanxuan.nosdn.127.net/74ee09e3d121c21c128fda3dbb48ff93.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9b6a5cb5e75cc5159ef19e68a68c571f.jpg\" _src=\"http://yanxuan.nosdn.127.net/9b6a5cb5e75cc5159ef19e68a68c571f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5d046159b8b5940565e52d432af47fdf.jpg\" _src=\"http://yanxuan.nosdn.127.net/5d046159b8b5940565e52d432af47fdf.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6ea5cebdcf5c5b6c7b63c537c391fac0.jpg\" _src=\"http://yanxuan.nosdn.127.net/6ea5cebdcf5c5b6c7b63c537c391fac0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/dbe2aa2c6f479f1a2fa7c3d1168eb2da.jpg\" _src=\"http://yanxuan.nosdn.127.net/dbe2aa2c6f479f1a2fa7c3d1168eb2da.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c83ea824cd0baea85933c1a7ab7a6391.jpg\" _src=\"http://yanxuan.nosdn.127.net/c83ea824cd0baea85933c1a7ab7a6391.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1fcea29ea7aee7b8547dab203a2f0a2e.jpg\" _src=\"http://yanxuan.nosdn.127.net/1fcea29ea7aee7b8547dab203a2f0a2e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/303e723e88c7a97637b03e8b6c909228.jpg\" _src=\"http://yanxuan.nosdn.127.net/303e723e88c7a97637b03e8b6c909228.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/45f6d6f44148d26fda2d433b8996a023.jpg\" _src=\"http://yanxuan.nosdn.127.net/45f6d6f44148d26fda2d433b8996a023.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1b02c994370c16d506b2816323963a05.jpg\" _src=\"http://yanxuan.nosdn.127.net/1b02c994370c16d506b2816323963a05.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/13b1c59a181c003ef49c089697162f11.jpg\" _src=\"http://yanxuan.nosdn.127.net/13b1c59a181c003ef49c089697162f11.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9066da74fa3268749af74d48583a3915.jpg\" _src=\"http://yanxuan.nosdn.127.net/9066da74fa3268749af74d48583a3915.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/22d1cbe72022eeefabdebb881be7be53.jpg\" _src=\"http://yanxuan.nosdn.127.net/22d1cbe72022eeefabdebb881be7be53.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cdc0bb9e30e01729ef23564b07cffe45.jpg\" _src=\"http://yanxuan.nosdn.127.net/cdc0bb9e30e01729ef23564b07cffe45.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6249c39ca733c75bc8c0bb90daeeb12a.jpg\" _src=\"http://yanxuan.nosdn.127.net/6249c39ca733c75bc8c0bb90daeeb12a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f70749f36b60bd1962ce28ed180a93e9.jpg\" _src=\"http://yanxuan.nosdn.127.net/f70749f36b60bd1962ce28ed180a93e9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c55fa3317e09fe3d3e2971f768e00947.jpg\" _src=\"http://yanxuan.nosdn.127.net/c55fa3317e09fe3d3e2971f768e00947.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b3477d90873d80315571165816991a2e.jpg\" _src=\"http://yanxuan.nosdn.127.net/b3477d90873d80315571165816991a2e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5c24363b2cd4728d0c0ef19478bda3f5.jpg\" _src=\"http://yanxuan.nosdn.127.net/5c24363b2cd4728d0c0ef19478bda3f5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b92e6be5e80ff4cf55d06b284ab784ee.jpg\" _src=\"http://yanxuan.nosdn.127.net/b92e6be5e80ff4cf55d06b284ab784ee.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e7137ebf6468571550adaa70a3c770eb.jpg\" _src=\"http://yanxuan.nosdn.127.net/e7137ebf6468571550adaa70a3c770eb.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/88b466104d4d8502c28029bd8a5852ec.jpg\" _src=\"http://yanxuan.nosdn.127.net/88b466104d4d8502c28029bd8a5852ec.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ccf54b36177613093209b78d992f50af.jpg\" _src=\"http://yanxuan.nosdn.127.net/ccf54b36177613093209b78d992f50af.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/eb37be13750edf70aec43d9be731eb10.jpg\" _src=\"http://yanxuan.nosdn.127.net/eb37be13750edf70aec43d9be731eb10.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9cdb3ef4a50634629885d163e8b91d71.jpg\" _src=\"http://yanxuan.nosdn.127.net/9cdb3ef4a50634629885d163e8b91d71.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/24e991af9b9704ff1b2963fd2e999763.jpg\" _src=\"http://yanxuan.nosdn.127.net/24e991af9b9704ff1b2963fd2e999763.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/77250c6dbf13b1b2955bf2f9ae44b454.jpg\" _src=\"http://yanxuan.nosdn.127.net/77250c6dbf13b1b2955bf2f9ae44b454.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b7dedee5ad49f66f01f88c8cd94786c6.jpg\" _src=\"http://yanxuan.nosdn.127.net/b7dedee5ad49f66f01f88c8cd94786c6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3c302e07c426c207a88ab703fda7f244.jpg\" _src=\"http://yanxuan.nosdn.127.net/3c302e07c426c207a88ab703fda7f244.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5285d43ecccf0d28afcacccdc3054461.jpg\" _src=\"http://yanxuan.nosdn.127.net/5285d43ecccf0d28afcacccdc3054461.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/24cc9d53907a67ee5564611f9649121f.jpg\" _src=\"http://yanxuan.nosdn.127.net/24cc9d53907a67ee5564611f9649121f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ad70628c1f27db2afa22874e9fad72e0.jpg\" _src=\"http://yanxuan.nosdn.127.net/ad70628c1f27db2afa22874e9fad72e0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/89277ed3ec4b8c34ae027c33d61cac53.jpg\" _src=\"http://yanxuan.nosdn.127.net/89277ed3ec4b8c34ae027c33d61cac53.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ff64316933f4fa3b0991f2ddeff84f91.jpg\" _src=\"http://yanxuan.nosdn.127.net/ff64316933f4fa3b0991f2ddeff84f91.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/201299d3c5ec454b605b1ea23259a999.jpg\" _src=\"http://yanxuan.nosdn.127.net/201299d3c5ec454b605b1ea23259a999.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/471c49adb955692d6bf571ec78a45bed.jpg\" _src=\"http://yanxuan.nosdn.127.net/471c49adb955692d6bf571ec78a45bed.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/53b525a3b77c6a51a0f2629e1d4cec79.jpg\" _src=\"http://yanxuan.nosdn.127.net/53b525a3b77c6a51a0f2629e1d4cec79.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/10ed5f6502699bd5dbf451cf503f91a1.jpg\" _src=\"http://yanxuan.nosdn.127.net/10ed5f6502699bd5dbf451cf503f91a1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/84b29a0e3877ce6a0c536e7de9451987.jpg\" _src=\"http://yanxuan.nosdn.127.net/84b29a0e3877ce6a0c536e7de9451987.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9518254ccd271857e43d5ebf8fa16cc9.jpg\" _src=\"http://yanxuan.nosdn.127.net/9518254ccd271857e43d5ebf8fa16cc9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8eda4c6e16f647c122c8e1fb72a5c296.jpg\" _src=\"http://yanxuan.nosdn.127.net/8eda4c6e16f647c122c8e1fb72a5c296.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9fa5cfdb4911b91bbb1ed617809dfd74.jpg\" _src=\"http://yanxuan.nosdn.127.net/9fa5cfdb4911b91bbb1ed617809dfd74.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1d5849257871c8cdd4cb35e8e012b4da.jpg\" _src=\"http://yanxuan.nosdn.127.net/1d5849257871c8cdd4cb35e8e012b4da.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/29ad636afec8d03bda3074611b8b4a2d.jpg\" _src=\"http://yanxuan.nosdn.127.net/29ad636afec8d03bda3074611b8b4a2d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/163404e599ff0fd71396efaabb32f660.jpg\" _src=\"http://yanxuan.nosdn.127.net/163404e599ff0fd71396efaabb32f660.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a7189a89979d51090a2c2492b716634f.jpg\" _src=\"http://yanxuan.nosdn.127.net/a7189a89979d51090a2c2492b716634f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d28aaf8c345118e16742dde54f2a70e7.jpg\" _src=\"http://yanxuan.nosdn.127.net/d28aaf8c345118e16742dde54f2a70e7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3e31e9df5a49f85cc18676f4ce97d118.jpg\" _src=\"http://yanxuan.nosdn.127.net/3e31e9df5a49f85cc18676f4ce97d118.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7aaed516f1280e923796c46b364fbc20.jpg\" _src=\"http://yanxuan.nosdn.127.net/7aaed516f1280e923796c46b364fbc20.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6bbb2299807545f2c96717276feb200a.jpg\" _src=\"http://yanxuan.nosdn.127.net/6bbb2299807545f2c96717276feb200a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4b6b989f53d9c5d9d5046226000c2f8f.jpg\" _src=\"http://yanxuan.nosdn.127.net/4b6b989f53d9c5d9d5046226000c2f8f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9a04c82669e08d0f884db98a63d2d268.jpg\" _src=\"http://yanxuan.nosdn.127.net/9a04c82669e08d0f884db98a63d2d268.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/19e6c5e17ed0490eb761c4e9cc207d13.jpg\" _src=\"http://yanxuan.nosdn.127.net/19e6c5e17ed0490eb761c4e9cc207d13.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '17', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/32ba9417c9d31c6ea686ec842df3ca61.jpg', 'http://yanxuan.nosdn.127.net/a3a92057f10e5e6e804c19ef495e3dee.png', '399.00', '2156', '1095010', '0.00', '限时购', '', '0.00', '0', '0', '0', '438.90', null, null, null, null);
  662. INSERT INTO `nideshop_goods` VALUES ('1092001', '1012003', '1092001', '星空原色水晶笔', '0', '100', '', '140颗原色水晶,璀璨如星', '', '1', '2017-08-30 11:40:11', '4', '0', '0', '0.00', '0.00', '0', '支', 'http://yanxuan.nosdn.127.net/9e6857c9205ddd5129c47c6e23a1b67c.png', 'http://yanxuan.nosdn.127.net/8e35b003ce7895c39eeb073b1f61b1d7.png', '29.00', '15295', '1097001', '0.00', '限时购', '', '0.00', '0', '0', '0', '31.90', null, null, null, null);
  663. INSERT INTO `nideshop_goods` VALUES ('1092005', '1012003', '1092005', '木韵檀香黄铜笔', '0', '100', '', '缅甸黑檀与黄铜的结合,彰显贵气', '', '1', '2017-08-30 11:40:11', '5', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/ab1992495e0370f09386d418ad45220d.png', 'http://yanxuan.nosdn.127.net/ab1992495e0370f09386d418ad45220d.png', '39.00', '3106', '1097008', '0.00', '限时购', '', '0.00', '0', '0', '0', '42.90', null, null, null, null);
  664. INSERT INTO `nideshop_goods` VALUES ('1092024', '1008008', '1092024', '双宫茧纱布亲肤手工蚕丝被', '0', '100', '', '手工匠心织造', '<p><video id=\"tmpVedio0\" class=\"edui-upload-video video-js vjs-default-skin video-js\" controls=\"\" preload=\"auto\" width=\"100%\" height=\"\" data-setup=\"{}\"><source src=\"http://yanxuan.nosdn.127.net/4bc94a640a469e2a701f4530cbf2868d.mp4\" type=\"video/mp4\"/></video>‍</p><p><img src=\"http://yanxuan.nosdn.127.net/12cc61a27bc734434a218b8cc07b214d.jpg\" _src=\"http://yanxuan.nosdn.127.net/12cc61a27bc734434a218b8cc07b214d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/857fc6fa8911c6427797145b9bb6ae6e.jpg\" _src=\"http://yanxuan.nosdn.127.net/857fc6fa8911c6427797145b9bb6ae6e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a113e8c2e1623ed7bb40e9090cbe155f.jpg\" _src=\"http://yanxuan.nosdn.127.net/a113e8c2e1623ed7bb40e9090cbe155f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d0e4903bb5271b173cc4bb08c86f7e5f.jpg\" _src=\"http://yanxuan.nosdn.127.net/d0e4903bb5271b173cc4bb08c86f7e5f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8d673570bf16e17d50154db6b374ac8f.jpg\" _src=\"http://yanxuan.nosdn.127.net/8d673570bf16e17d50154db6b374ac8f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e6536dc0e19f54d7f71b3bb2ab400e81.jpg\" _src=\"http://yanxuan.nosdn.127.net/e6536dc0e19f54d7f71b3bb2ab400e81.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/65bfe17e25d4f99f343cd9a98872f9b7.jpg\" _src=\"http://yanxuan.nosdn.127.net/65bfe17e25d4f99f343cd9a98872f9b7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b48eae0d7ea1fd323939ce05af73cbc1.jpg\" _src=\"http://yanxuan.nosdn.127.net/b48eae0d7ea1fd323939ce05af73cbc1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c7a6edefc081c303c9ace62b2caa7ea6.jpg\" _src=\"http://yanxuan.nosdn.127.net/c7a6edefc081c303c9ace62b2caa7ea6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e94d4d6abf57837c97c7bddfc19f2745.jpg\" _src=\"http://yanxuan.nosdn.127.net/e94d4d6abf57837c97c7bddfc19f2745.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/42c9406a28fc6ccfa7e42a15ca01af02.jpg\" _src=\"http://yanxuan.nosdn.127.net/42c9406a28fc6ccfa7e42a15ca01af02.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f02cc82b2b34ecad3d9bdd8f2a8398c7.jpg\" _src=\"http://yanxuan.nosdn.127.net/f02cc82b2b34ecad3d9bdd8f2a8398c7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9c33ae57de042c04645ed74523ddfc00.jpg\" _src=\"http://yanxuan.nosdn.127.net/9c33ae57de042c04645ed74523ddfc00.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e6b1c85d6f7eb06e90b2ec99ebb5ce6d.jpg\" _src=\"http://yanxuan.nosdn.127.net/e6b1c85d6f7eb06e90b2ec99ebb5ce6d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f7d4be39f58a15e3af9c57c39934b020.jpg\" _src=\"http://yanxuan.nosdn.127.net/f7d4be39f58a15e3af9c57c39934b020.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9f6c12a01a43030328db2a6fea92a1a2.jpg\" _src=\"http://yanxuan.nosdn.127.net/9f6c12a01a43030328db2a6fea92a1a2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6922fe294f7968453fd50f7c9418d6c4.jpg\" _src=\"http://yanxuan.nosdn.127.net/6922fe294f7968453fd50f7c9418d6c4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c54d9e1d0185acf9945f05773b45e336.jpg\" _src=\"http://yanxuan.nosdn.127.net/c54d9e1d0185acf9945f05773b45e336.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6c84e42086bda07a42ab7957e86c3e8f.jpg\" _src=\"http://yanxuan.nosdn.127.net/6c84e42086bda07a42ab7957e86c3e8f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/97905cbf70e960208ad59529e9c9d96a.jpg\" _src=\"http://yanxuan.nosdn.127.net/97905cbf70e960208ad59529e9c9d96a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4d20ea3cf22532281f5220d68fd56644.jpg\" _src=\"http://yanxuan.nosdn.127.net/4d20ea3cf22532281f5220d68fd56644.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c4f6aa61c6cbd9d8307bbe3df248ac86.jpg\" _src=\"http://yanxuan.nosdn.127.net/c4f6aa61c6cbd9d8307bbe3df248ac86.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/79af898960aeeeb5db1f93bad8b4f0c7.jpg\" _src=\"http://yanxuan.nosdn.127.net/79af898960aeeeb5db1f93bad8b4f0c7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d7307f590b71f3c70e9190c23015f19f.jpg\" _src=\"http://yanxuan.nosdn.127.net/d7307f590b71f3c70e9190c23015f19f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/70bab066f55050f2b2fa4e8f00bca265.jpg\" _src=\"http://yanxuan.nosdn.127.net/70bab066f55050f2b2fa4e8f00bca265.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/987835d0e28209afc539162b98a04cd9.jpg\" _src=\"http://yanxuan.nosdn.127.net/987835d0e28209afc539162b98a04cd9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1f3b06b5934aeac4efe1755d3a987c30.jpg\" _src=\"http://yanxuan.nosdn.127.net/1f3b06b5934aeac4efe1755d3a987c30.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6e27f4183d153a8cbf1a16acdfd171fb.jpg\" _src=\"http://yanxuan.nosdn.127.net/6e27f4183d153a8cbf1a16acdfd171fb.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3faa2a006894691dc2dd0a47718645f1.jpg\" _src=\"http://yanxuan.nosdn.127.net/3faa2a006894691dc2dd0a47718645f1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/230c7610de70ed83974dd4a57d0c700d.jpg\" _src=\"http://yanxuan.nosdn.127.net/230c7610de70ed83974dd4a57d0c700d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ecd9596f63b87c230ddab5b55a60f813.jpg\" _src=\"http://yanxuan.nosdn.127.net/ecd9596f63b87c230ddab5b55a60f813.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/96690003d2be2183f78e6ca88816ec8e.jpg\" _src=\"http://yanxuan.nosdn.127.net/96690003d2be2183f78e6ca88816ec8e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f94a58279084fa70e89124c135aaf48c.jpg\" _src=\"http://yanxuan.nosdn.127.net/f94a58279084fa70e89124c135aaf48c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1ac85b85d16ff2953fe0183a2c3fab2a.jpg\" _src=\"http://yanxuan.nosdn.127.net/1ac85b85d16ff2953fe0183a2c3fab2a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b43e793f03e20d8201dac6dd01d73215.jpg\" _src=\"http://yanxuan.nosdn.127.net/b43e793f03e20d8201dac6dd01d73215.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/725eaaa2edfaa0fd6688bb0a16acf7fd.jpg\" _src=\"http://yanxuan.nosdn.127.net/725eaaa2edfaa0fd6688bb0a16acf7fd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1a142ec7e60d0f510b8b7dffd66f8e8c.jpg\" _src=\"http://yanxuan.nosdn.127.net/1a142ec7e60d0f510b8b7dffd66f8e8c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a79e2c1314034c20fd77372c8f83a924.jpg\" _src=\"http://yanxuan.nosdn.127.net/a79e2c1314034c20fd77372c8f83a924.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4ce918f1fd0486e1e3dab4ce2edbece9.jpg\" _src=\"http://yanxuan.nosdn.127.net/4ce918f1fd0486e1e3dab4ce2edbece9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/464019e51c20c47849f92a319c1c6b6b.jpg\" _src=\"http://yanxuan.nosdn.127.net/464019e51c20c47849f92a319c1c6b6b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fd1ca477443ea80dd310cc0c8c903b82.jpg\" _src=\"http://yanxuan.nosdn.127.net/fd1ca477443ea80dd310cc0c8c903b82.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c5ed5e4827c7623fa0d4f360a10ee109.jpg\" _src=\"http://yanxuan.nosdn.127.net/c5ed5e4827c7623fa0d4f360a10ee109.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/eccc71760c31e25893235d11ff1310cd.jpg\" _src=\"http://yanxuan.nosdn.127.net/eccc71760c31e25893235d11ff1310cd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/059ca713a16298bb62d8b11fd91e5b2a.jpg\" _src=\"http://yanxuan.nosdn.127.net/059ca713a16298bb62d8b11fd91e5b2a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/36ae5438953dcbdb77b237d4ec6cfea1.jpg\" _src=\"http://yanxuan.nosdn.127.net/36ae5438953dcbdb77b237d4ec6cfea1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a5a1253ad74f94865c4f87ddc69ac721.jpg\" _src=\"http://yanxuan.nosdn.127.net/a5a1253ad74f94865c4f87ddc69ac721.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/765a73c655c2636eb4c6cb30e54a076b.jpg\" _src=\"http://yanxuan.nosdn.127.net/765a73c655c2636eb4c6cb30e54a076b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f11a95cd2c22e3397bff05606658a2c6.jpg\" _src=\"http://yanxuan.nosdn.127.net/f11a95cd2c22e3397bff05606658a2c6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1b14601b0465dbfb498c8d090c6a0795.jpg\" _src=\"http://yanxuan.nosdn.127.net/1b14601b0465dbfb498c8d090c6a0795.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0b9e0ebcd78cc2b783c5a7a4ad96466a.jpg\" _src=\"http://yanxuan.nosdn.127.net/0b9e0ebcd78cc2b783c5a7a4ad96466a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/083e4d0fe87c59d1c34b9929417acfa4.jpg\" _src=\"http://yanxuan.nosdn.127.net/083e4d0fe87c59d1c34b9929417acfa4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0dd4f4f8efc6846f7cc874e36c96a5f5.jpg\" _src=\"http://yanxuan.nosdn.127.net/0dd4f4f8efc6846f7cc874e36c96a5f5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/24821c54966d1405a7a289475d68b78a.jpg\" _src=\"http://yanxuan.nosdn.127.net/24821c54966d1405a7a289475d68b78a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8d3e5ce1382e33bd6b323e58613dc389.jpg\" _src=\"http://yanxuan.nosdn.127.net/8d3e5ce1382e33bd6b323e58613dc389.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '14', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/e76350101d1047dd463693ac84059b7c.png', 'http://yanxuan.nosdn.127.net/f245a86dcb9f455217241e437b203926.png', '1599.00', '254', '1097151', '0.00', '限时购', '', '0.00', '0', '0', '0', '1758.90', null, null, null, null);
  665. INSERT INTO `nideshop_goods` VALUES ('1092025', '1010002', '1092025', 'Let it go男式纯棉免洗内裤', '0', '100', '', '伽玛射线安心杀菌', '', '1', '2017-08-30 11:40:11', '2', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/3006cf6f854372683143571d3595dafc.jpg', 'http://yanxuan.nosdn.127.net/56a46e9a4832587471c0f9ad7c1b7d85.png', '19.90', '5656', '1097153', '0.00', '限时购', '', '0.00', '0', '0', '0', '21.89', null, null, null, null);
  666. INSERT INTO `nideshop_goods` VALUES ('1092026', '1010002', '1092026', 'Let it go女式纯棉免洗内裤', '0', '100', '', '100%纯棉,出行必备', '', '1', '2017-08-30 11:40:11', '1', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/203781d76d1b4dedf50fd769be857426.jpg', 'http://yanxuan.nosdn.127.net/83433f5a7ef69abda2544a53332a0fad.png', '19.90', '4144', '1097157', '0.00', '限时购', '', '0.00', '0', '0', '0', '21.89', null, null, null, null);
  667. INSERT INTO `nideshop_goods` VALUES ('1092038', '1017000', '1092038', '日式天然桐木材质猫抓板', '0', '100', '', '天然桐木,耐磨耐抓', '<p><img src=\"http://yanxuan.nosdn.127.net/8e51b9b1ead5c197d62182de7f62dab8.jpg\" _src=\"http://yanxuan.nosdn.127.net/8e51b9b1ead5c197d62182de7f62dab8.jpg\"/></p>', '1', '2017-08-30 11:40:11', '19', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/dd05b05070823563f646e6b0f5695f4a.jpg', 'http://yanxuan.nosdn.127.net/1aba9ed9c9160b9ca8e7de58ce4e46b1.png', '39.00', '136', '1097179', '0.00', '限时购', '', '0.00', '0', '0', '0', '42.90', null, null, null, null);
  668. INSERT INTO `nideshop_goods` VALUES ('1092039', '1017000', '1092039', '圆钵碗状高密材质猫抓板', '0', '100', '', '可抓可睡,一物两用', '<p><img src=\"http://yanxuan.nosdn.127.net/7f5a8783df659ea49722ea12304a5f63.jpg\" _src=\"http://yanxuan.nosdn.127.net/7f5a8783df659ea49722ea12304a5f63.jpg\"/></p>', '1', '2017-08-30 11:40:11', '18', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/0c961fa406197165cd8c418d8a2f44e0.jpg', 'http://yanxuan.nosdn.127.net/d8c18953bcb05f0b07d6b48e2d159ace.png', '59.00', '583', '1097180', '0.00', '限时购', '', '0.00', '0', '0', '0', '64.90', null, null, null, null);
  669. INSERT INTO `nideshop_goods` VALUES ('1093000', '1011004', '1093000', '月光曲·小木棉', '0', '100', '', '仿真PU,定格典雅', '<p><img src=\"http://yanxuan.nosdn.127.net/5b4f7b1c7645b54fb9135631775c44d1.jpg\" _src=\"http://yanxuan.nosdn.127.net/5b4f7b1c7645b54fb9135631775c44d1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/215030eb837b8d81ffa35de802dfb201.jpg\" _src=\"http://yanxuan.nosdn.127.net/215030eb837b8d81ffa35de802dfb201.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c9746b52778ec414fe557a7e9e6bb61c.jpg\" _src=\"http://yanxuan.nosdn.127.net/c9746b52778ec414fe557a7e9e6bb61c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bd8f269e2deb6d90ddb7e8f8ea2d96f7.jpg\" _src=\"http://yanxuan.nosdn.127.net/bd8f269e2deb6d90ddb7e8f8ea2d96f7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/30e8a8c6694f40c9bef39b32e0bb7721.jpg\" _src=\"http://yanxuan.nosdn.127.net/30e8a8c6694f40c9bef39b32e0bb7721.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/21bf19b684b80bb2d8ef8661d65d15df.jpg\" _src=\"http://yanxuan.nosdn.127.net/21bf19b684b80bb2d8ef8661d65d15df.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1fc84555c266ad2b42ea7d14809292e6.jpg\" _src=\"http://yanxuan.nosdn.127.net/1fc84555c266ad2b42ea7d14809292e6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e8b2d5eba9a2812870446dce43ea9111.jpg\" _src=\"http://yanxuan.nosdn.127.net/e8b2d5eba9a2812870446dce43ea9111.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/519eb590f329bd330622a4443d52e21c.jpg\" _src=\"http://yanxuan.nosdn.127.net/519eb590f329bd330622a4443d52e21c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f8bfe63c2eae43aab178e4eb08ae2294.jpg\" _src=\"http://yanxuan.nosdn.127.net/f8bfe63c2eae43aab178e4eb08ae2294.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6f837236ac348079f3910389c3bdadd7.jpg\" _src=\"http://yanxuan.nosdn.127.net/6f837236ac348079f3910389c3bdadd7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2de72436183e808a6da615cdb4743c87.jpg\" _src=\"http://yanxuan.nosdn.127.net/2de72436183e808a6da615cdb4743c87.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3138859c5896d0726e3b7186ac73f34d.jpg\" _src=\"http://yanxuan.nosdn.127.net/3138859c5896d0726e3b7186ac73f34d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/048abf054bd0373015abe44c8455b707.jpg\" _src=\"http://yanxuan.nosdn.127.net/048abf054bd0373015abe44c8455b707.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8d96ec29f78f8043ec48713a11deb52d.jpg\" _src=\"http://yanxuan.nosdn.127.net/8d96ec29f78f8043ec48713a11deb52d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a2493c9d7c48ee6ee53d12e946e8e4a3.jpg\" _src=\"http://yanxuan.nosdn.127.net/a2493c9d7c48ee6ee53d12e946e8e4a3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b937b14bf953bd64c5362353b8f5e055.jpg\" _src=\"http://yanxuan.nosdn.127.net/b937b14bf953bd64c5362353b8f5e055.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/dd6ff3a660a801918df6c01bf72ed27c.jpg\" _src=\"http://yanxuan.nosdn.127.net/dd6ff3a660a801918df6c01bf72ed27c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c215983e1f557db16b5db9f7e51ff14b.jpg\" _src=\"http://yanxuan.nosdn.127.net/c215983e1f557db16b5db9f7e51ff14b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/37730a86094625aae577ad68ebfb8253.jpg\" _src=\"http://yanxuan.nosdn.127.net/37730a86094625aae577ad68ebfb8253.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bde8a403526d11c307223a0253267a5f.jpg\" _src=\"http://yanxuan.nosdn.127.net/bde8a403526d11c307223a0253267a5f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0cd087a4443af8330dc7654648e88fec.jpg\" _src=\"http://yanxuan.nosdn.127.net/0cd087a4443af8330dc7654648e88fec.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/58f62a0d9ddcc8c0dd8d505005f3107c.jpg\" _src=\"http://yanxuan.nosdn.127.net/58f62a0d9ddcc8c0dd8d505005f3107c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/33d0518f396b352c061c7b695194bc0a.jpg\" _src=\"http://yanxuan.nosdn.127.net/33d0518f396b352c061c7b695194bc0a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/330d0261403d9d0ad11405d19d6bc15f.jpg\" _src=\"http://yanxuan.nosdn.127.net/330d0261403d9d0ad11405d19d6bc15f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6974e3ab2f18401859d4391958b344a8.jpg\" _src=\"http://yanxuan.nosdn.127.net/6974e3ab2f18401859d4391958b344a8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ac3159d7d6cc48f952bad1c4586c04d7.jpg\" _src=\"http://yanxuan.nosdn.127.net/ac3159d7d6cc48f952bad1c4586c04d7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/28c2321f53984accfcdc0cdf2761fbc3.jpg\" _src=\"http://yanxuan.nosdn.127.net/28c2321f53984accfcdc0cdf2761fbc3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ae31796c18b3ed25687e6fd12cb50c9d.jpg\" _src=\"http://yanxuan.nosdn.127.net/ae31796c18b3ed25687e6fd12cb50c9d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0a2b3a9b6aa7117d4bc67a516365b0c3.jpg\" _src=\"http://yanxuan.nosdn.127.net/0a2b3a9b6aa7117d4bc67a516365b0c3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fba9ea69f30ed059eea01934157e7016.jpg\" _src=\"http://yanxuan.nosdn.127.net/fba9ea69f30ed059eea01934157e7016.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/03b99b6c2ce16be772f09ee09356916d.jpg\" _src=\"http://yanxuan.nosdn.127.net/03b99b6c2ce16be772f09ee09356916d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/84b115d9acbaab972286dda97c1661e7.jpg\" _src=\"http://yanxuan.nosdn.127.net/84b115d9acbaab972286dda97c1661e7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5602f58cda58b4e7bad9cb248732e97f.jpg\" _src=\"http://yanxuan.nosdn.127.net/5602f58cda58b4e7bad9cb248732e97f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/18ed6a3403fb96e1bd208d393b1dcc5b.jpg\" _src=\"http://yanxuan.nosdn.127.net/18ed6a3403fb96e1bd208d393b1dcc5b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/37369ac790686de9cf0ddea2af1d045e.jpg\" _src=\"http://yanxuan.nosdn.127.net/37369ac790686de9cf0ddea2af1d045e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f57fa2a4c5fe4ca90480b619c0d188de.jpg\" _src=\"http://yanxuan.nosdn.127.net/f57fa2a4c5fe4ca90480b619c0d188de.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d21c94dc65efb8c92eeafb3ee1f75b79.jpg\" _src=\"http://yanxuan.nosdn.127.net/d21c94dc65efb8c92eeafb3ee1f75b79.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ae0d16dfa896f2b5a4681de0621870ba.jpg\" _src=\"http://yanxuan.nosdn.127.net/ae0d16dfa896f2b5a4681de0621870ba.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0ea54974c6f8eec823382abb383057f0.jpg\" _src=\"http://yanxuan.nosdn.127.net/0ea54974c6f8eec823382abb383057f0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/294e9a51f1692b456dfac753b46fa4c4.jpg\" _src=\"http://yanxuan.nosdn.127.net/294e9a51f1692b456dfac753b46fa4c4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8043ad0af70f60c9df2d2969de73c409.jpg\" _src=\"http://yanxuan.nosdn.127.net/8043ad0af70f60c9df2d2969de73c409.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/16f8a25987a31126420e3dee1c850cb1.jpg\" _src=\"http://yanxuan.nosdn.127.net/16f8a25987a31126420e3dee1c850cb1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/81ada0d29e8f96a844e3adce2b850c4e.jpg\" _src=\"http://yanxuan.nosdn.127.net/81ada0d29e8f96a844e3adce2b850c4e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8f40c62bd5e57b10992486fd76c8c3a7.jpg\" _src=\"http://yanxuan.nosdn.127.net/8f40c62bd5e57b10992486fd76c8c3a7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a2310c4f5f74a4fc252e8850cab0753b.jpg\" _src=\"http://yanxuan.nosdn.127.net/a2310c4f5f74a4fc252e8850cab0753b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/440ce6f17e9f55a2cb4ab75c67a11b72.jpg\" _src=\"http://yanxuan.nosdn.127.net/440ce6f17e9f55a2cb4ab75c67a11b72.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/eae892cfc10fa235e10a2146e4c62f18.jpg\" _src=\"http://yanxuan.nosdn.127.net/eae892cfc10fa235e10a2146e4c62f18.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c0ef2820f6d6283cc05b968d1835cfe9.jpg\" _src=\"http://yanxuan.nosdn.127.net/c0ef2820f6d6283cc05b968d1835cfe9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3ecc99d34f2974f50abcb75006eb1dee.jpg\" _src=\"http://yanxuan.nosdn.127.net/3ecc99d34f2974f50abcb75006eb1dee.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/710b02daf30326f75d0029da0651c953.jpg\" _src=\"http://yanxuan.nosdn.127.net/710b02daf30326f75d0029da0651c953.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/07c00e8f2b7ae873c5478b80c65f247e.jpg\" _src=\"http://yanxuan.nosdn.127.net/07c00e8f2b7ae873c5478b80c65f247e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ae6cf1147c23c8b0911346923a5602cf.jpg\" _src=\"http://yanxuan.nosdn.127.net/ae6cf1147c23c8b0911346923a5602cf.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3d2a31a9030beea78d1780a607647090.jpg\" _src=\"http://yanxuan.nosdn.127.net/3d2a31a9030beea78d1780a607647090.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ee86a9cc0d7dddc47ddef5ca69a166ef.jpg\" _src=\"http://yanxuan.nosdn.127.net/ee86a9cc0d7dddc47ddef5ca69a166ef.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c9b13a8de3031bbf68600acf1060a862.jpg\" _src=\"http://yanxuan.nosdn.127.net/c9b13a8de3031bbf68600acf1060a862.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0e7e5d9292e77c82fdc20b7e2d2abfc1.jpg\" _src=\"http://yanxuan.nosdn.127.net/0e7e5d9292e77c82fdc20b7e2d2abfc1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/52aff3d2d7f6737fed6c06e475b1a6d7.jpg\" _src=\"http://yanxuan.nosdn.127.net/52aff3d2d7f6737fed6c06e475b1a6d7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3bea2212caf8f2760084d06bf2f15910.jpg\" _src=\"http://yanxuan.nosdn.127.net/3bea2212caf8f2760084d06bf2f15910.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/edef2d2f9f2b032429dc141089a85664.jpg\" _src=\"http://yanxuan.nosdn.127.net/edef2d2f9f2b032429dc141089a85664.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/175f2c644c3238f1af8c23cf91c34d23.jpg\" _src=\"http://yanxuan.nosdn.127.net/175f2c644c3238f1af8c23cf91c34d23.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/79bd08c21f83de81caa65bf38f14c750.jpg\" _src=\"http://yanxuan.nosdn.127.net/79bd08c21f83de81caa65bf38f14c750.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/655320ee6dc49430442fbba81e44c41a.jpg\" _src=\"http://yanxuan.nosdn.127.net/655320ee6dc49430442fbba81e44c41a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/28a8c402c42e9671591167ab49ba6857.jpg\" _src=\"http://yanxuan.nosdn.127.net/28a8c402c42e9671591167ab49ba6857.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0eb1cb510d5f338af2b595d30da49b7f.jpg\" _src=\"http://yanxuan.nosdn.127.net/0eb1cb510d5f338af2b595d30da49b7f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/68a6ec175d2c46f0162f8de63add1189.jpg\" _src=\"http://yanxuan.nosdn.127.net/68a6ec175d2c46f0162f8de63add1189.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d0c72d3e82a13c65ef52d5a09f178d2e.jpg\" _src=\"http://yanxuan.nosdn.127.net/d0c72d3e82a13c65ef52d5a09f178d2e.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '7', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/2bbce4c2af1a9933d3e9a5132ff42a01.jpg', 'http://yanxuan.nosdn.127.net/1a22cc488390b616e75afbbd94db6584.png', '39.00', '8067', '1098000', '0.00', '限时购', '', '0.00', '0', '0', '0', '42.90', null, null, null, null);
  670. INSERT INTO `nideshop_goods` VALUES ('1093001', '1011004', '1093001', '月光曲·马蹄莲', '0', '100', '', '仿真PU,定格典雅', '<p>*温馨提示:若马蹄莲有些褶皱,可将白色花朵部分放入60-70℃的水中热10秒立刻拿出,可恢复原状。</p><p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; (注意:只针对马蹄莲白色花朵部分)</p><p><img src=\"http://yanxuan.nosdn.127.net/14c4de5b68fb2020a0264babd024c603.jpg\" _src=\"http://yanxuan.nosdn.127.net/14c4de5b68fb2020a0264babd024c603.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b7d4c10f37efe62df82a9d9ddcf5391d.jpg\" _src=\"http://yanxuan.nosdn.127.net/b7d4c10f37efe62df82a9d9ddcf5391d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/88704a0306ac60f7ed5465f1a52f7a97.jpg\" _src=\"http://yanxuan.nosdn.127.net/88704a0306ac60f7ed5465f1a52f7a97.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9e6f63dc6bd213450ee31307d521fc50.jpg\" _src=\"http://yanxuan.nosdn.127.net/9e6f63dc6bd213450ee31307d521fc50.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/843c898a55f5ba807ccfcde8171f6ab5.jpg\" _src=\"http://yanxuan.nosdn.127.net/843c898a55f5ba807ccfcde8171f6ab5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fe488f44863e3b1b55a94a8fb7d66468.jpg\" _src=\"http://yanxuan.nosdn.127.net/fe488f44863e3b1b55a94a8fb7d66468.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/86ea4ad80d5d9eb678f5845c5bd1f3df.jpg\" _src=\"http://yanxuan.nosdn.127.net/86ea4ad80d5d9eb678f5845c5bd1f3df.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/507427743783c8ad1e1e7acefe7ab16e.jpg\" _src=\"http://yanxuan.nosdn.127.net/507427743783c8ad1e1e7acefe7ab16e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/087ac3cee9d8bd4656969f40ff05bde1.jpg\" _src=\"http://yanxuan.nosdn.127.net/087ac3cee9d8bd4656969f40ff05bde1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d5756bce5084f0da0d65ee9ba2ac40a8.jpg\" _src=\"http://yanxuan.nosdn.127.net/d5756bce5084f0da0d65ee9ba2ac40a8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3823255dce16fc44337599b63351b02b.jpg\" _src=\"http://yanxuan.nosdn.127.net/3823255dce16fc44337599b63351b02b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9b152b2d010f933f515059e3ed9758b5.jpg\" _src=\"http://yanxuan.nosdn.127.net/9b152b2d010f933f515059e3ed9758b5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8fa95525f3e21af9ce526d27581cec4c.jpg\" _src=\"http://yanxuan.nosdn.127.net/8fa95525f3e21af9ce526d27581cec4c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e997646bc2f741071b5f06fedc2a409f.jpg\" _src=\"http://yanxuan.nosdn.127.net/e997646bc2f741071b5f06fedc2a409f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/360ca78e2b931542a920ac7219e93ad3.jpg\" _src=\"http://yanxuan.nosdn.127.net/360ca78e2b931542a920ac7219e93ad3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6e17fba13878001812d33e60c53a5bb0.jpg\" _src=\"http://yanxuan.nosdn.127.net/6e17fba13878001812d33e60c53a5bb0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b603073a532c7d16df0b09ff196d9516.jpg\" _src=\"http://yanxuan.nosdn.127.net/b603073a532c7d16df0b09ff196d9516.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0d14ee677f0cbad8146478f9bdf80b39.jpg\" _src=\"http://yanxuan.nosdn.127.net/0d14ee677f0cbad8146478f9bdf80b39.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bbb4839d17e5a4b49b16c2cb2a7a0bac.jpg\" _src=\"http://yanxuan.nosdn.127.net/bbb4839d17e5a4b49b16c2cb2a7a0bac.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a6e04bfeaa2be740610fb9ce274dcfed.jpg\" _src=\"http://yanxuan.nosdn.127.net/a6e04bfeaa2be740610fb9ce274dcfed.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/456c0767ef28a4ffd52bfdf2339998e8.jpg\" _src=\"http://yanxuan.nosdn.127.net/456c0767ef28a4ffd52bfdf2339998e8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b7fa3373676f27f95c5dff94f7bf5b42.jpg\" _src=\"http://yanxuan.nosdn.127.net/b7fa3373676f27f95c5dff94f7bf5b42.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/45b2e9c89455735fba95f9c75e0c99a2.jpg\" _src=\"http://yanxuan.nosdn.127.net/45b2e9c89455735fba95f9c75e0c99a2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6e7c23c1da969d6a92ecbad43a0f10e4.jpg\" _src=\"http://yanxuan.nosdn.127.net/6e7c23c1da969d6a92ecbad43a0f10e4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bbad0ce217bb20c7d93292ee789492f3.jpg\" _src=\"http://yanxuan.nosdn.127.net/bbad0ce217bb20c7d93292ee789492f3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/78b3c74a0fdf05bfcf62730c535ef2fb.jpg\" _src=\"http://yanxuan.nosdn.127.net/78b3c74a0fdf05bfcf62730c535ef2fb.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b76a95e96b3f862486bee6dfbaccdaab.jpg\" _src=\"http://yanxuan.nosdn.127.net/b76a95e96b3f862486bee6dfbaccdaab.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5ca838cfde190a22fa2ad0f8d55971b6.jpg\" _src=\"http://yanxuan.nosdn.127.net/5ca838cfde190a22fa2ad0f8d55971b6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/15f3d4996d1cba52763c30f26a78a04f.jpg\" _src=\"http://yanxuan.nosdn.127.net/15f3d4996d1cba52763c30f26a78a04f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0a2172c4f6744c1024079b48554907ae.jpg\" _src=\"http://yanxuan.nosdn.127.net/0a2172c4f6744c1024079b48554907ae.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/303125108bdfd52bcab6dfb1b0bd7029.jpg\" _src=\"http://yanxuan.nosdn.127.net/303125108bdfd52bcab6dfb1b0bd7029.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/83d7090ea963d133103a3bfcac61484d.jpg\" _src=\"http://yanxuan.nosdn.127.net/83d7090ea963d133103a3bfcac61484d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/eea591cfebdbb6cba0ae856e9a02894e.jpg\" _src=\"http://yanxuan.nosdn.127.net/eea591cfebdbb6cba0ae856e9a02894e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ab2cca8081ab4028778789e84b4a8c07.jpg\" _src=\"http://yanxuan.nosdn.127.net/ab2cca8081ab4028778789e84b4a8c07.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/12b1054eef2e784a993b4ccd01f240e5.jpg\" _src=\"http://yanxuan.nosdn.127.net/12b1054eef2e784a993b4ccd01f240e5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cde59e5ca29d69227359e0e326d6ff8b.jpg\" _src=\"http://yanxuan.nosdn.127.net/cde59e5ca29d69227359e0e326d6ff8b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/143ab0a0996071b335a20543ce9b7859.jpg\" _src=\"http://yanxuan.nosdn.127.net/143ab0a0996071b335a20543ce9b7859.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2bba82dcc5d4e446999fd2f53feea873.jpg\" _src=\"http://yanxuan.nosdn.127.net/2bba82dcc5d4e446999fd2f53feea873.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4ed53aff4e1511efbbb44276b86c04f3.jpg\" _src=\"http://yanxuan.nosdn.127.net/4ed53aff4e1511efbbb44276b86c04f3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7873136c7901142199933d698f8857c5.jpg\" _src=\"http://yanxuan.nosdn.127.net/7873136c7901142199933d698f8857c5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/35c9d0b967485ff7f6197c2767578271.jpg\" _src=\"http://yanxuan.nosdn.127.net/35c9d0b967485ff7f6197c2767578271.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6c7751f977b560b203978f53dd784f77.jpg\" _src=\"http://yanxuan.nosdn.127.net/6c7751f977b560b203978f53dd784f77.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/251f3e1aa29dfeef37a2c44f315a87d9.jpg\" _src=\"http://yanxuan.nosdn.127.net/251f3e1aa29dfeef37a2c44f315a87d9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/66d17ca9055cd144fea50657ea55d89a.jpg\" _src=\"http://yanxuan.nosdn.127.net/66d17ca9055cd144fea50657ea55d89a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3351f1a84e9700554add7719325ee7d0.jpg\" _src=\"http://yanxuan.nosdn.127.net/3351f1a84e9700554add7719325ee7d0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e647f67fd2581fdde7b77a6f4ba76f8b.jpg\" _src=\"http://yanxuan.nosdn.127.net/e647f67fd2581fdde7b77a6f4ba76f8b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/409de727c8353a60b27545ee1f4c9f62.jpg\" _src=\"http://yanxuan.nosdn.127.net/409de727c8353a60b27545ee1f4c9f62.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bd1705c641c3d1dc20d21ca02a45d57c.jpg\" _src=\"http://yanxuan.nosdn.127.net/bd1705c641c3d1dc20d21ca02a45d57c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1baac00858cd4e174301490c05aa2547.jpg\" _src=\"http://yanxuan.nosdn.127.net/1baac00858cd4e174301490c05aa2547.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9233b3612f978c00ca77b2bbb6258a17.jpg\" _src=\"http://yanxuan.nosdn.127.net/9233b3612f978c00ca77b2bbb6258a17.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/66925098d2c2bf8e6371395a74e5fd75.jpg\" _src=\"http://yanxuan.nosdn.127.net/66925098d2c2bf8e6371395a74e5fd75.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f5d209471e5d4c7f3cd44abcd969f017.jpg\" _src=\"http://yanxuan.nosdn.127.net/f5d209471e5d4c7f3cd44abcd969f017.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/54f7aa76e034ea98467e172e5247b52a.jpg\" _src=\"http://yanxuan.nosdn.127.net/54f7aa76e034ea98467e172e5247b52a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8871ba3e623365c2f0a5bfcbcfcc7df2.jpg\" _src=\"http://yanxuan.nosdn.127.net/8871ba3e623365c2f0a5bfcbcfcc7df2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/73353926afed90979ceb13f8db3cd789.jpg\" _src=\"http://yanxuan.nosdn.127.net/73353926afed90979ceb13f8db3cd789.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '8', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/14b420eb5422c73774020c2656ba9713.jpg', 'http://yanxuan.nosdn.127.net/71fede861c3641d570a89a65ccf4525f.png', '29.00', '7936', '1098001', '0.00', '限时购', '', '0.00', '0', '0', '0', '31.90', null, null, null, null);
  671. INSERT INTO `nideshop_goods` VALUES ('1093002', '1011004', '1093002', '月光曲·清水木棉', '0', '100', '', '仿真之美裹于精致玻璃', '<p><img src=\"http://yanxuan.nosdn.127.net/f7344fa03430c9e7608924f2396e9a3b.jpg\" _src=\"http://yanxuan.nosdn.127.net/f7344fa03430c9e7608924f2396e9a3b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ae8b2c0ab30afa202bb6569bc64fb05c.jpg\" _src=\"http://yanxuan.nosdn.127.net/ae8b2c0ab30afa202bb6569bc64fb05c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/260a1043d33c23222d0a643bcb78efa5.jpg\" _src=\"http://yanxuan.nosdn.127.net/260a1043d33c23222d0a643bcb78efa5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a2ac6fa26b02ccac9e77f469f2f81627.jpg\" _src=\"http://yanxuan.nosdn.127.net/a2ac6fa26b02ccac9e77f469f2f81627.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4f7db39e5c98c07104cfb1838b3a4606.jpg\" _src=\"http://yanxuan.nosdn.127.net/4f7db39e5c98c07104cfb1838b3a4606.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/03cd25c518409a45a6c6d22a6bb36f6b.jpg\" _src=\"http://yanxuan.nosdn.127.net/03cd25c518409a45a6c6d22a6bb36f6b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/baa155140eaf7efbdd7dcdba00bb1c59.jpg\" _src=\"http://yanxuan.nosdn.127.net/baa155140eaf7efbdd7dcdba00bb1c59.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8c9c6b4b7af2cf108b50d17015247429.jpg\" _src=\"http://yanxuan.nosdn.127.net/8c9c6b4b7af2cf108b50d17015247429.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c0fcd1ec7c1d0f5bf74a6ecdc288e9ee.jpg\" _src=\"http://yanxuan.nosdn.127.net/c0fcd1ec7c1d0f5bf74a6ecdc288e9ee.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8692aa87d719cb0b6e8e850b415d33ed.jpg\" _src=\"http://yanxuan.nosdn.127.net/8692aa87d719cb0b6e8e850b415d33ed.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/53ee60e2f229f6186f4b14ff2b28359d.jpg\" _src=\"http://yanxuan.nosdn.127.net/53ee60e2f229f6186f4b14ff2b28359d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e348fd6476d54cedb1acbef6510e4d59.jpg\" _src=\"http://yanxuan.nosdn.127.net/e348fd6476d54cedb1acbef6510e4d59.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b70cf32a96e3ba24d7d73d0d0b573d68.jpg\" _src=\"http://yanxuan.nosdn.127.net/b70cf32a96e3ba24d7d73d0d0b573d68.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f16474f1734554a39faad2c49d3e3367.jpg\" _src=\"http://yanxuan.nosdn.127.net/f16474f1734554a39faad2c49d3e3367.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d5b24698379ac242008ccd444c34ca37.jpg\" _src=\"http://yanxuan.nosdn.127.net/d5b24698379ac242008ccd444c34ca37.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/932dea95459ae481bad1adca3f649ab4.jpg\" _src=\"http://yanxuan.nosdn.127.net/932dea95459ae481bad1adca3f649ab4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1961bd3fbd169f3a9da38a33a52bdb95.jpg\" _src=\"http://yanxuan.nosdn.127.net/1961bd3fbd169f3a9da38a33a52bdb95.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/27122c54b2745f10b655a018ef167c94.jpg\" _src=\"http://yanxuan.nosdn.127.net/27122c54b2745f10b655a018ef167c94.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/958e02ebbde0e4e79805b0ab6cff54e5.jpg\" _src=\"http://yanxuan.nosdn.127.net/958e02ebbde0e4e79805b0ab6cff54e5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5a08733dc5f74f2be9e554f8a9721623.jpg\" _src=\"http://yanxuan.nosdn.127.net/5a08733dc5f74f2be9e554f8a9721623.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f1a9b63938e248d83c6ef21db2ab5464.jpg\" _src=\"http://yanxuan.nosdn.127.net/f1a9b63938e248d83c6ef21db2ab5464.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/acf2bc7c117b0619bcc0d4a2f77688a9.jpg\" _src=\"http://yanxuan.nosdn.127.net/acf2bc7c117b0619bcc0d4a2f77688a9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/af956b451c2f5c710e5802ca264ace3b.jpg\" _src=\"http://yanxuan.nosdn.127.net/af956b451c2f5c710e5802ca264ace3b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7a57eebbc20487a9627ed72efbaf77e7.jpg\" _src=\"http://yanxuan.nosdn.127.net/7a57eebbc20487a9627ed72efbaf77e7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/811d0feee6b594580828d1c0afa87004.jpg\" _src=\"http://yanxuan.nosdn.127.net/811d0feee6b594580828d1c0afa87004.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6094507a642ad35bcc6ff6094f786d46.jpg\" _src=\"http://yanxuan.nosdn.127.net/6094507a642ad35bcc6ff6094f786d46.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cc959993726c6f756923ab3a7e79f8ca.jpg\" _src=\"http://yanxuan.nosdn.127.net/cc959993726c6f756923ab3a7e79f8ca.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/847af1884da2988cb7dc72f4205bcbf7.jpg\" _src=\"http://yanxuan.nosdn.127.net/847af1884da2988cb7dc72f4205bcbf7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3cb47e4ab1d7afd5a61b548007a302d1.jpg\" _src=\"http://yanxuan.nosdn.127.net/3cb47e4ab1d7afd5a61b548007a302d1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/947c55e2df37a5806f1a2ea87cf4a8d1.jpg\" _src=\"http://yanxuan.nosdn.127.net/947c55e2df37a5806f1a2ea87cf4a8d1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9dea6bc310ebe6872a7655c550d825fd.jpg\" _src=\"http://yanxuan.nosdn.127.net/9dea6bc310ebe6872a7655c550d825fd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6890ba6f04ed5574c92cb2b24aaeb5f8.jpg\" _src=\"http://yanxuan.nosdn.127.net/6890ba6f04ed5574c92cb2b24aaeb5f8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3fc24ce0bb5969bd6774a8528cebfde5.jpg\" _src=\"http://yanxuan.nosdn.127.net/3fc24ce0bb5969bd6774a8528cebfde5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0d2c69d95f89632b0dcf342ddfe41def.jpg\" _src=\"http://yanxuan.nosdn.127.net/0d2c69d95f89632b0dcf342ddfe41def.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/147cb97075af63e6001701f73be05869.jpg\" _src=\"http://yanxuan.nosdn.127.net/147cb97075af63e6001701f73be05869.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c6006af9450c3e705aa8492102c33313.jpg\" _src=\"http://yanxuan.nosdn.127.net/c6006af9450c3e705aa8492102c33313.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b1f8b607eeca99a57915539207225fb8.jpg\" _src=\"http://yanxuan.nosdn.127.net/b1f8b607eeca99a57915539207225fb8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f1c11c60ac99591a6c38c285adc14c62.jpg\" _src=\"http://yanxuan.nosdn.127.net/f1c11c60ac99591a6c38c285adc14c62.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/072092ff06a84465883a9c0666bb7c41.jpg\" _src=\"http://yanxuan.nosdn.127.net/072092ff06a84465883a9c0666bb7c41.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6075177496003cb2a873425f315c0ac0.jpg\" _src=\"http://yanxuan.nosdn.127.net/6075177496003cb2a873425f315c0ac0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ad8b5858463e737515b52fd566ce3443.jpg\" _src=\"http://yanxuan.nosdn.127.net/ad8b5858463e737515b52fd566ce3443.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4fa88a238b9d4ff1ed3c527bcb54cdbe.jpg\" _src=\"http://yanxuan.nosdn.127.net/4fa88a238b9d4ff1ed3c527bcb54cdbe.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e73c0d99a3934634ab3f05d03c7b4bb6.jpg\" _src=\"http://yanxuan.nosdn.127.net/e73c0d99a3934634ab3f05d03c7b4bb6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0fe3d07b6291ad7c72fdf11df14642bf.jpg\" _src=\"http://yanxuan.nosdn.127.net/0fe3d07b6291ad7c72fdf11df14642bf.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/da37af40f71b3b5d1ace9badecc6f452.jpg\" _src=\"http://yanxuan.nosdn.127.net/da37af40f71b3b5d1ace9badecc6f452.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/43c18f4ddf398f8191f32453207fd7c0.jpg\" _src=\"http://yanxuan.nosdn.127.net/43c18f4ddf398f8191f32453207fd7c0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/795cb1b99501a45b51cb948132d4478e.jpg\" _src=\"http://yanxuan.nosdn.127.net/795cb1b99501a45b51cb948132d4478e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7b83c807d156eafcd75f2302cff0c335.jpg\" _src=\"http://yanxuan.nosdn.127.net/7b83c807d156eafcd75f2302cff0c335.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3af7559bee8204a678915ff745cb0db9.jpg\" _src=\"http://yanxuan.nosdn.127.net/3af7559bee8204a678915ff745cb0db9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ea4fb92585ea1b42f52974aeb6533359.jpg\" _src=\"http://yanxuan.nosdn.127.net/ea4fb92585ea1b42f52974aeb6533359.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5801bc264a549ccc28c8a6cbbc586070.jpg\" _src=\"http://yanxuan.nosdn.127.net/5801bc264a549ccc28c8a6cbbc586070.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/dab91f751ac4a3142ed4ebb5239b73b9.jpg\" _src=\"http://yanxuan.nosdn.127.net/dab91f751ac4a3142ed4ebb5239b73b9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b4f2fd647fd9816dc5ce9fa7520ee24b.jpg\" _src=\"http://yanxuan.nosdn.127.net/b4f2fd647fd9816dc5ce9fa7520ee24b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9f693ee866e239666f5c7257f5380149.jpg\" _src=\"http://yanxuan.nosdn.127.net/9f693ee866e239666f5c7257f5380149.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f2b0154f00a81c2a4d5f2c4bdfcc2e4c.jpg\" _src=\"http://yanxuan.nosdn.127.net/f2b0154f00a81c2a4d5f2c4bdfcc2e4c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/078b0baa26bfe33f8517425717904217.jpg\" _src=\"http://yanxuan.nosdn.127.net/078b0baa26bfe33f8517425717904217.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8722ea6b8b94a084327f43652bd36725.jpg\" _src=\"http://yanxuan.nosdn.127.net/8722ea6b8b94a084327f43652bd36725.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/12afaa904d2bf4d1b99c952b48b41877.jpg\" _src=\"http://yanxuan.nosdn.127.net/12afaa904d2bf4d1b99c952b48b41877.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/dba1cc41d9cba2118ef0c6acfb3bf7e4.jpg\" _src=\"http://yanxuan.nosdn.127.net/dba1cc41d9cba2118ef0c6acfb3bf7e4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f5cbff5bda3610d137839e60d19b70a8.jpg\" _src=\"http://yanxuan.nosdn.127.net/f5cbff5bda3610d137839e60d19b70a8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/85db07bb2753c51424187d62baff36e3.jpg\" _src=\"http://yanxuan.nosdn.127.net/85db07bb2753c51424187d62baff36e3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e85b5b64edc6e9254fa9291b58a94aa5.jpg\" _src=\"http://yanxuan.nosdn.127.net/e85b5b64edc6e9254fa9291b58a94aa5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b64f9e066aa66161b05d2e055739599e.jpg\" _src=\"http://yanxuan.nosdn.127.net/b64f9e066aa66161b05d2e055739599e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b9ba60f428dbb09d44a0480073a96e04.jpg\" _src=\"http://yanxuan.nosdn.127.net/b9ba60f428dbb09d44a0480073a96e04.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/dade0ed72bae5bfa019ba89db5c91bb5.jpg\" _src=\"http://yanxuan.nosdn.127.net/dade0ed72bae5bfa019ba89db5c91bb5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ebc93b3376de58dd6cead7568c97a1d4.jpg\" _src=\"http://yanxuan.nosdn.127.net/ebc93b3376de58dd6cead7568c97a1d4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/763f44ffec9e182324b46f1c4aeb0ae0.jpg\" _src=\"http://yanxuan.nosdn.127.net/763f44ffec9e182324b46f1c4aeb0ae0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/da4fce648e13fc32865f9eb812de0ca7.jpg\" _src=\"http://yanxuan.nosdn.127.net/da4fce648e13fc32865f9eb812de0ca7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2f435576c31011da4bfdd5eb8812f01d.jpg\" _src=\"http://yanxuan.nosdn.127.net/2f435576c31011da4bfdd5eb8812f01d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/34591cf9ab39eea855ff37b4998a432e.jpg\" _src=\"http://yanxuan.nosdn.127.net/34591cf9ab39eea855ff37b4998a432e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2f84d00a688840605788645d41397849.jpg\" _src=\"http://yanxuan.nosdn.127.net/2f84d00a688840605788645d41397849.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9f8d4e0cc9f80cb99c5c2073fd31f75f.jpg\" _src=\"http://yanxuan.nosdn.127.net/9f8d4e0cc9f80cb99c5c2073fd31f75f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5b099f7cc6fd06976edd575cafad2c49.jpg\" _src=\"http://yanxuan.nosdn.127.net/5b099f7cc6fd06976edd575cafad2c49.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4e7cb7b9ac22d6593f71672b121190c3.jpg\" _src=\"http://yanxuan.nosdn.127.net/4e7cb7b9ac22d6593f71672b121190c3.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '9', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/45dfa4d8dd08ea63b3d9e285321cd42e.jpg', 'http://yanxuan.nosdn.127.net/48d95e820628610fcdcda30570d4379c.png', '49.00', '7868', '1098002', '0.00', '限时购', '', '0.00', '0', '0', '0', '53.90', null, null, null, null);
  672. INSERT INTO `nideshop_goods` VALUES ('1097004', '1015000', '1097004', '原素系列实木餐桌', '0', '100', '', '素雅大气,结实不易蛀', '<p style=\"white-space: normal;\"><span style=\"color: rgb(255, 0, 0);\"><span style=\"font-weight: 700;\"><span style=\"font-family: 微软雅黑, sans-serif;\"></span></span></span></p><p style=\"white-space: normal;\"><br/></p><p style=\"white-space: normal;\"><span style=\"font-weight: 700;\"><span style=\"font-family: 微软雅黑, sans-serif;\"></span></span></p><p style=\"white-space: normal;\"><span style=\"font-weight: 700;\"><span style=\"font-family: 微软雅黑, sans-serif;\">温馨提示:</span></span><br/></p><p style=\"white-space: normal;\"><span style=\"font-family: 微软雅黑, sans-serif;\">1,由于<span style=\"font-weight: 700;\"><span style=\"color: red;\">安徽黄山市</span></span>和<span style=\"font-weight: 700;\"><span style=\"color: red;\">安徽宣城绩溪县</span></span>,要求所有木制品办理《植物检疫证书》,因此暂停向<span style=\"font-weight: 700;\"><span style=\"color: red;\">安徽黄山市</span></span>和<span style=\"font-weight: 700;\"><span style=\"color: red;\">安徽宣城绩溪县</span></span>运输家具,以上两地客户请注意不要购买,<span style=\"font-weight: 700;\"><span style=\"color: red;\">物流无法派送</span></span>,对此给您带来的不便,我们深表歉意!</span></p><p style=\"white-space: normal;\"><span style=\"font-family: 微软雅黑, sans-serif;\"></span></p><p style=\"white-space: normal;\">2,家具送货上门时请拆开包装,待组装完成后,仔细检查家具是否有磕碰,少件等问题,如有不满请拒收或进行异常签收,我们会保障您的权益。</p><p style=\"white-space: normal;\">3,因个人原因首次送货上门暂不安装,要求二次上门安装的,会额外收取费用,请您与安装服务公司进行协商。</p><p><img src=\"http://yanxuan.nosdn.127.net/6c2a6e4ab8410fc01ee9772c6f90db11.jpg\" _src=\"http://yanxuan.nosdn.127.net/6c2a6e4ab8410fc01ee9772c6f90db11.jpg\"/><br/></p><p><img src=\"http://yanxuan.nosdn.127.net/5c336a3e114806ba1518ccf3c6ff896d.jpg\" _src=\"http://yanxuan.nosdn.127.net/5c336a3e114806ba1518ccf3c6ff896d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/423aad8253c881d42cd6cfde720828da.jpg\" _src=\"http://yanxuan.nosdn.127.net/423aad8253c881d42cd6cfde720828da.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c915ce02ff7f9783ae08569f06bbb445.jpg\" _src=\"http://yanxuan.nosdn.127.net/c915ce02ff7f9783ae08569f06bbb445.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/64bc73e530ef711c2fba02419adb0b20.jpg\" _src=\"http://yanxuan.nosdn.127.net/64bc73e530ef711c2fba02419adb0b20.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/18345b24e0209b903e31220ba57db7b8.jpg\" _src=\"http://yanxuan.nosdn.127.net/18345b24e0209b903e31220ba57db7b8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1f82c372b1b5c9bd66d4f3369fc6e1e1.jpg\" _src=\"http://yanxuan.nosdn.127.net/1f82c372b1b5c9bd66d4f3369fc6e1e1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cb98016f6c38442d901fa2b2b59aa763.jpg\" _src=\"http://yanxuan.nosdn.127.net/cb98016f6c38442d901fa2b2b59aa763.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a498b82e14c46990fb162769922a3eb4.jpg\" _src=\"http://yanxuan.nosdn.127.net/a498b82e14c46990fb162769922a3eb4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6d6e780e10d1e056b4d3999e41818b93.jpg\" _src=\"http://yanxuan.nosdn.127.net/6d6e780e10d1e056b4d3999e41818b93.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/49387dc0b6355987a1d0beb2e44a1da4.jpg\" _src=\"http://yanxuan.nosdn.127.net/49387dc0b6355987a1d0beb2e44a1da4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5f18bb9ce939d41b9e4bc16cfe5bc149.jpg\" _src=\"http://yanxuan.nosdn.127.net/5f18bb9ce939d41b9e4bc16cfe5bc149.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e29f895f252d524000649fb12d8e6b15.jpg\" _src=\"http://yanxuan.nosdn.127.net/e29f895f252d524000649fb12d8e6b15.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2aaec92e2c3eb4b5b5a4af569b0112c6.jpg\" _src=\"http://yanxuan.nosdn.127.net/2aaec92e2c3eb4b5b5a4af569b0112c6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9d24e2d4396e738ffce8ded6edbd6300.jpg\" _src=\"http://yanxuan.nosdn.127.net/9d24e2d4396e738ffce8ded6edbd6300.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0fba99f330ddecc723486dbdc78ad618.jpg\" _src=\"http://yanxuan.nosdn.127.net/0fba99f330ddecc723486dbdc78ad618.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f34b5ddf302a3f19d04658183911b4e0.jpg\" _src=\"http://yanxuan.nosdn.127.net/f34b5ddf302a3f19d04658183911b4e0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3db899639cb936346e9df8fe1d2a431e.jpg\" _src=\"http://yanxuan.nosdn.127.net/3db899639cb936346e9df8fe1d2a431e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c3b73b7d54b288e4c88267d13c0cbe7c.jpg\" _src=\"http://yanxuan.nosdn.127.net/c3b73b7d54b288e4c88267d13c0cbe7c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cf008f5a39595bb04c2843a161ef3987.jpg\" _src=\"http://yanxuan.nosdn.127.net/cf008f5a39595bb04c2843a161ef3987.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a723cce55e61ee5181fa4e9a0b9ede76.jpg\" _src=\"http://yanxuan.nosdn.127.net/a723cce55e61ee5181fa4e9a0b9ede76.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/569c07bcc8b94c489b09fedb61c7c079.jpg\" _src=\"http://yanxuan.nosdn.127.net/569c07bcc8b94c489b09fedb61c7c079.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/eabc085eb1720439aeea147ab30c86aa.jpg\" _src=\"http://yanxuan.nosdn.127.net/eabc085eb1720439aeea147ab30c86aa.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b6128be9204c1ef1e3ad44a85869a5b6.jpg\" _src=\"http://yanxuan.nosdn.127.net/b6128be9204c1ef1e3ad44a85869a5b6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/159659f7d3bd9f9bdc6225412f3f674c.jpg\" _src=\"http://yanxuan.nosdn.127.net/159659f7d3bd9f9bdc6225412f3f674c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/81ca9c36f02b6592a4b4a1f6cc21c0bf.jpg\" _src=\"http://yanxuan.nosdn.127.net/81ca9c36f02b6592a4b4a1f6cc21c0bf.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2ee52e0fd46a1b9e810b6cff80080f11.jpg\" _src=\"http://yanxuan.nosdn.127.net/2ee52e0fd46a1b9e810b6cff80080f11.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/df2b5a4a9170a63464ffb44b1879bc96.jpg\" _src=\"http://yanxuan.nosdn.127.net/df2b5a4a9170a63464ffb44b1879bc96.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d83fff8bfa124e2ae060fe197adfaf72.jpg\" _src=\"http://yanxuan.nosdn.127.net/d83fff8bfa124e2ae060fe197adfaf72.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/08badb8966fc6aa02ce4d32446e333b7.jpg\" _src=\"http://yanxuan.nosdn.127.net/08badb8966fc6aa02ce4d32446e333b7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4ce6669b1554d8620688be52f8fb810d.jpg\" _src=\"http://yanxuan.nosdn.127.net/4ce6669b1554d8620688be52f8fb810d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4608ddce61f123e5253dbb12a99f6b0a.jpg\" _src=\"http://yanxuan.nosdn.127.net/4608ddce61f123e5253dbb12a99f6b0a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/74bd89bc99b6bfaa4c214ad276a88430.jpg\" _src=\"http://yanxuan.nosdn.127.net/74bd89bc99b6bfaa4c214ad276a88430.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d9e28bd1e7ac14e9b5647bb64c6b4a26.jpg\" _src=\"http://yanxuan.nosdn.127.net/d9e28bd1e7ac14e9b5647bb64c6b4a26.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/74e00c9d6aa2fc2399abefb88bdaf8a6.jpg\" _src=\"http://yanxuan.nosdn.127.net/74e00c9d6aa2fc2399abefb88bdaf8a6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ecb58ee8447ed2de29771847371fa3b8.jpg\" _src=\"http://yanxuan.nosdn.127.net/ecb58ee8447ed2de29771847371fa3b8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1ff83658f2776cee2b286bd368194afc.jpg\" _src=\"http://yanxuan.nosdn.127.net/1ff83658f2776cee2b286bd368194afc.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6b3114ead8fe1dc825b5d62f44cda82e.jpg\" _src=\"http://yanxuan.nosdn.127.net/6b3114ead8fe1dc825b5d62f44cda82e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e3a052106cf6fc407c6a8580a4e80d67.jpg\" _src=\"http://yanxuan.nosdn.127.net/e3a052106cf6fc407c6a8580a4e80d67.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3db7f13c06918c55072528de4aece440.jpg\" _src=\"http://yanxuan.nosdn.127.net/3db7f13c06918c55072528de4aece440.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3ded96e007d2170bf91c4bd4ea79bf2e.jpg\" _src=\"http://yanxuan.nosdn.127.net/3ded96e007d2170bf91c4bd4ea79bf2e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/951cd3cfc096254b6bf8317ab47d0fe5.jpg\" _src=\"http://yanxuan.nosdn.127.net/951cd3cfc096254b6bf8317ab47d0fe5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/184200ceb7b8dbdc9bae631e3a0581b0.jpg\" _src=\"http://yanxuan.nosdn.127.net/184200ceb7b8dbdc9bae631e3a0581b0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/29f3f6efa3231a5e99e9a44e5a24bb4b.jpg\" _src=\"http://yanxuan.nosdn.127.net/29f3f6efa3231a5e99e9a44e5a24bb4b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b35c5748efcfee1a5dc81c0810c7bd67.jpg\" _src=\"http://yanxuan.nosdn.127.net/b35c5748efcfee1a5dc81c0810c7bd67.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/88f2d0356bb555fde2fb6c25ae847c05.jpg\" _src=\"http://yanxuan.nosdn.127.net/88f2d0356bb555fde2fb6c25ae847c05.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7d6352f6108efbcb25254a67930145be.jpg\" _src=\"http://yanxuan.nosdn.127.net/7d6352f6108efbcb25254a67930145be.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/afe7d1831bb5b4531635147e2cd0e2d8.jpg\" _src=\"http://yanxuan.nosdn.127.net/afe7d1831bb5b4531635147e2cd0e2d8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8855e7dfae3a75e0f93d5fab95e946e2.jpg\" _src=\"http://yanxuan.nosdn.127.net/8855e7dfae3a75e0f93d5fab95e946e2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7f22fc5142275af46a2acf2fe9ad74a5.jpg\" _src=\"http://yanxuan.nosdn.127.net/7f22fc5142275af46a2acf2fe9ad74a5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f69939e5b9d256411a0d3e511b295e7d.jpg\" _src=\"http://yanxuan.nosdn.127.net/f69939e5b9d256411a0d3e511b295e7d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9ea6ba739ec736547003f5bdac653093.jpg\" _src=\"http://yanxuan.nosdn.127.net/9ea6ba739ec736547003f5bdac653093.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7360942dfe7203d20dce34fd1dc7a0ff.jpg\" _src=\"http://yanxuan.nosdn.127.net/7360942dfe7203d20dce34fd1dc7a0ff.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/294d34eb5d9abb585da5aab16472461d.jpg\" _src=\"http://yanxuan.nosdn.127.net/294d34eb5d9abb585da5aab16472461d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e0a9cdb30a20d61e53a00af1832a9926.jpg\" _src=\"http://yanxuan.nosdn.127.net/e0a9cdb30a20d61e53a00af1832a9926.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cde197a4dd2b0d082e71abfb31c0425c.jpg\" _src=\"http://yanxuan.nosdn.127.net/cde197a4dd2b0d082e71abfb31c0425c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ac3e7e8daac18b4e0b15e2eecde2f9bf.jpg\" _src=\"http://yanxuan.nosdn.127.net/ac3e7e8daac18b4e0b15e2eecde2f9bf.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8c6bfb287f89863151eae73cd8394099.jpg\" _src=\"http://yanxuan.nosdn.127.net/8c6bfb287f89863151eae73cd8394099.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e8a2ec3e30323ceca1ac405cbfd2170e.jpg\" _src=\"http://yanxuan.nosdn.127.net/e8a2ec3e30323ceca1ac405cbfd2170e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c58006153a790a6fec2eb5439ce2db58.jpg\" _src=\"http://yanxuan.nosdn.127.net/c58006153a790a6fec2eb5439ce2db58.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/117f9d0cd7e4977b74a27b909093ece7.jpg\" _src=\"http://yanxuan.nosdn.127.net/117f9d0cd7e4977b74a27b909093ece7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/770ccf0c391afca7adeac427f50c2ca8.jpg\" _src=\"http://yanxuan.nosdn.127.net/770ccf0c391afca7adeac427f50c2ca8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5d5876d20a5f24068bc3b2bb8c4d4a63.jpg\" _src=\"http://yanxuan.nosdn.127.net/5d5876d20a5f24068bc3b2bb8c4d4a63.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/69cd01bdf30848dfd26a15d37bee082e.jpg\" _src=\"http://yanxuan.nosdn.127.net/69cd01bdf30848dfd26a15d37bee082e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/37b518e86767eddf31b9c82ce996d4b7.jpg\" _src=\"http://yanxuan.nosdn.127.net/37b518e86767eddf31b9c82ce996d4b7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/423772dd88fabc3fe61da2e8d8e56b40.jpg\" _src=\"http://yanxuan.nosdn.127.net/423772dd88fabc3fe61da2e8d8e56b40.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '3', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/f25fc3baabefe2eedb9d442d792458c9.jpg', 'http://yanxuan.nosdn.127.net/54f822e9c542d20566c7f70f90d52ae6.png', '1699.00', '241', '1101009', '0.00', '限时购', '', '0.00', '0', '0', '0', '1868.90', null, null, null, null);
  673. INSERT INTO `nideshop_goods` VALUES ('1097005', '1015000', '1097005', '原素系列实木餐椅(两把)', '0', '100', '', '经典造型,贴合人体曲线', '<p><span style=\"color: rgb(255, 0, 0);\"><strong><span style=\"font-family: 微软雅黑, sans-serif;\"></span></strong></span></p><p style=\"white-space: normal;\"><br/></p><p style=\"white-space: normal;\"><span style=\"font-weight: 700;\"><span style=\"font-family: 微软雅黑, sans-serif;\"></span></span></p><p style=\"white-space: normal;\"><span style=\"font-weight: 700;\"><span style=\"font-family: 微软雅黑, sans-serif;\">温馨提示:</span></span><br/></p><p style=\"white-space: normal;\"><span style=\"font-family: 微软雅黑, sans-serif;\">1,由于<span style=\"font-weight: 700;\"><span style=\"color: red;\">安徽黄山市</span></span>和<span style=\"font-weight: 700;\"><span style=\"color: red;\">安徽宣城绩溪县</span></span>,要求所有木制品办理《植物检疫证书》,因此暂停向<span style=\"font-weight: 700;\"><span style=\"color: red;\">安徽黄山市</span></span>和<span style=\"font-weight: 700;\"><span style=\"color: red;\">安徽宣城绩溪县</span></span>运输家具,以上两地客户请注意不要购买,<span style=\"font-weight: 700;\"><span style=\"color: red;\">物流无法派送</span></span>,对此给您带来的不便,我们深表歉意!</span></p><p style=\"white-space: normal;\"><span style=\"font-family: 微软雅黑, sans-serif;\"></span></p><p style=\"white-space: normal;\">2,家具送货上门时请拆开包装,待组装完成后,仔细检查家具是否有磕碰,少件等问题,如有不满请拒收或进行异常签收,我们会保障您的权益。</p><p style=\"white-space: normal;\">3,因个人原因首次送货上门暂不安装,要求二次上门安装的,会额外收取费用,请您与安装服务公司进行协商。</p><p><img src=\"http://yanxuan.nosdn.127.net/58bf6aac499c5d9d9accf761762ec7fb.jpg\" _src=\"http://yanxuan.nosdn.127.net/58bf6aac499c5d9d9accf761762ec7fb.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7bb654d6c2771063498221154f811b12.jpg\" _src=\"http://yanxuan.nosdn.127.net/7bb654d6c2771063498221154f811b12.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e0bf43b6e826c8d16608430f5ceb787b.jpg\" _src=\"http://yanxuan.nosdn.127.net/e0bf43b6e826c8d16608430f5ceb787b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/59b3b4911827999beecf5a8dc0eacfa8.jpg\" _src=\"http://yanxuan.nosdn.127.net/59b3b4911827999beecf5a8dc0eacfa8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3300cd54cdbe61a3528f22279fd63daa.jpg\" _src=\"http://yanxuan.nosdn.127.net/3300cd54cdbe61a3528f22279fd63daa.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b36f76274e623bb591b593ebe1f99738.jpg\" _src=\"http://yanxuan.nosdn.127.net/b36f76274e623bb591b593ebe1f99738.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/51abb9433dc0b752382d33dc21386fd1.jpg\" _src=\"http://yanxuan.nosdn.127.net/51abb9433dc0b752382d33dc21386fd1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ec11039995a933d728b311ff8409c203.jpg\" _src=\"http://yanxuan.nosdn.127.net/ec11039995a933d728b311ff8409c203.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6dd084f6b918fc521ad155e4b47813bf.jpg\" _src=\"http://yanxuan.nosdn.127.net/6dd084f6b918fc521ad155e4b47813bf.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b8f15ccb74aa20559a45b114e6b4470a.jpg\" _src=\"http://yanxuan.nosdn.127.net/b8f15ccb74aa20559a45b114e6b4470a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b9898c60e890b8349c3fff64c1befea3.jpg\" _src=\"http://yanxuan.nosdn.127.net/b9898c60e890b8349c3fff64c1befea3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/645bfd1c5b1b4407f5036f38b557b32d.jpg\" _src=\"http://yanxuan.nosdn.127.net/645bfd1c5b1b4407f5036f38b557b32d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/90ce9ce1e836641a9b011eb3ecdf0364.jpg\" _src=\"http://yanxuan.nosdn.127.net/90ce9ce1e836641a9b011eb3ecdf0364.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/536c516a5a169f70873eb81a5053a306.jpg\" _src=\"http://yanxuan.nosdn.127.net/536c516a5a169f70873eb81a5053a306.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4015e9847e26323c38cb505c2fba729d.jpg\" _src=\"http://yanxuan.nosdn.127.net/4015e9847e26323c38cb505c2fba729d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/068ea22c6a20cfbd31d35b5125661712.jpg\" _src=\"http://yanxuan.nosdn.127.net/068ea22c6a20cfbd31d35b5125661712.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a81a479da7c9f8fd344c91603bb07ada.jpg\" _src=\"http://yanxuan.nosdn.127.net/a81a479da7c9f8fd344c91603bb07ada.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6b3aa284f5b152ed6bf0edec0bc08eb7.jpg\" _src=\"http://yanxuan.nosdn.127.net/6b3aa284f5b152ed6bf0edec0bc08eb7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fb1c5ba4c89d0e169cb9af89571d2fcb.jpg\" _src=\"http://yanxuan.nosdn.127.net/fb1c5ba4c89d0e169cb9af89571d2fcb.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f479985068f12a4905d57ea70edfe6d1.jpg\" _src=\"http://yanxuan.nosdn.127.net/f479985068f12a4905d57ea70edfe6d1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a381d64ce3f5f9ebca2bd40dc510e76f.jpg\" _src=\"http://yanxuan.nosdn.127.net/a381d64ce3f5f9ebca2bd40dc510e76f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d7c31b81df1919f5eccd92de190c67da.jpg\" _src=\"http://yanxuan.nosdn.127.net/d7c31b81df1919f5eccd92de190c67da.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/244ebfea06e5473851891e30d7055e4d.jpg\" _src=\"http://yanxuan.nosdn.127.net/244ebfea06e5473851891e30d7055e4d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d2785c4e714c30c29814550bd942415c.jpg\" _src=\"http://yanxuan.nosdn.127.net/d2785c4e714c30c29814550bd942415c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/65ed10397f720580749a1c500c59240f.jpg\" _src=\"http://yanxuan.nosdn.127.net/65ed10397f720580749a1c500c59240f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a3fbbe8fd89981becd6abf7193b8f49a.jpg\" _src=\"http://yanxuan.nosdn.127.net/a3fbbe8fd89981becd6abf7193b8f49a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1297f27f945f0681481b20269994059c.jpg\" _src=\"http://yanxuan.nosdn.127.net/1297f27f945f0681481b20269994059c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e9c6d112a727b4c9707e71b9b893af2a.jpg\" _src=\"http://yanxuan.nosdn.127.net/e9c6d112a727b4c9707e71b9b893af2a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/61b3613dd5c7c515053ebe1273e4645c.jpg\" _src=\"http://yanxuan.nosdn.127.net/61b3613dd5c7c515053ebe1273e4645c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d3153459bade75cd0b4a99170294a3ca.jpg\" _src=\"http://yanxuan.nosdn.127.net/d3153459bade75cd0b4a99170294a3ca.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/891961cb605de819fe61dfe7b6448c93.jpg\" _src=\"http://yanxuan.nosdn.127.net/891961cb605de819fe61dfe7b6448c93.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f8d9715282d599b7fa332757703d5cee.jpg\" _src=\"http://yanxuan.nosdn.127.net/f8d9715282d599b7fa332757703d5cee.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/06752acfd4d6fad664d4559f253f02c3.jpg\" _src=\"http://yanxuan.nosdn.127.net/06752acfd4d6fad664d4559f253f02c3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/47be359052af1c5cad58031260692f6f.jpg\" _src=\"http://yanxuan.nosdn.127.net/47be359052af1c5cad58031260692f6f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a0203f2d63a50b7a7c710edaea4e6721.jpg\" _src=\"http://yanxuan.nosdn.127.net/a0203f2d63a50b7a7c710edaea4e6721.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/70c426b0c294bec93b0cd9c1e74ffeaf.jpg\" _src=\"http://yanxuan.nosdn.127.net/70c426b0c294bec93b0cd9c1e74ffeaf.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/063fdee70371da221e4816c757e42b48.jpg\" _src=\"http://yanxuan.nosdn.127.net/063fdee70371da221e4816c757e42b48.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8778225dd221a88993c424681d123a72.jpg\" _src=\"http://yanxuan.nosdn.127.net/8778225dd221a88993c424681d123a72.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3ff4dcabe22e555a980e4d904d757cd8.jpg\" _src=\"http://yanxuan.nosdn.127.net/3ff4dcabe22e555a980e4d904d757cd8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7cf7d88745db43becc47cd604d191d3d.jpg\" _src=\"http://yanxuan.nosdn.127.net/7cf7d88745db43becc47cd604d191d3d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/378de7f6768ceb7364593943627cd5d5.jpg\" _src=\"http://yanxuan.nosdn.127.net/378de7f6768ceb7364593943627cd5d5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/39d96f8c4f9674c8e41dfd1495bea6ee.jpg\" _src=\"http://yanxuan.nosdn.127.net/39d96f8c4f9674c8e41dfd1495bea6ee.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cdf8093c4892eef9a28f5e117bb260f2.jpg\" _src=\"http://yanxuan.nosdn.127.net/cdf8093c4892eef9a28f5e117bb260f2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8c87def69ebacf3ce9c8ece630c69c78.jpg\" _src=\"http://yanxuan.nosdn.127.net/8c87def69ebacf3ce9c8ece630c69c78.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c53fe1ff2f377b4c9374cd28899928db.jpg\" _src=\"http://yanxuan.nosdn.127.net/c53fe1ff2f377b4c9374cd28899928db.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e27fb00d265e1bb0baa3f780201a69a4.jpg\" _src=\"http://yanxuan.nosdn.127.net/e27fb00d265e1bb0baa3f780201a69a4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a92cef1e4963271a9a42254efd9d8899.jpg\" _src=\"http://yanxuan.nosdn.127.net/a92cef1e4963271a9a42254efd9d8899.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8a88c5151d5a957a276596c2cab36d9d.jpg\" _src=\"http://yanxuan.nosdn.127.net/8a88c5151d5a957a276596c2cab36d9d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/936e13a87b280258d6be6bc2ef11e423.jpg\" _src=\"http://yanxuan.nosdn.127.net/936e13a87b280258d6be6bc2ef11e423.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6f31082e220dbb4bd6749d8624f27b7d.jpg\" _src=\"http://yanxuan.nosdn.127.net/6f31082e220dbb4bd6749d8624f27b7d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/98c0d16db110a6e7dc6475c01d25d437.jpg\" _src=\"http://yanxuan.nosdn.127.net/98c0d16db110a6e7dc6475c01d25d437.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/dc588c1440f3ba306a3f6f3c82c2a5ed.jpg\" _src=\"http://yanxuan.nosdn.127.net/dc588c1440f3ba306a3f6f3c82c2a5ed.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e6bd50414f175e6f4db4c3ee6ee98255.jpg\" _src=\"http://yanxuan.nosdn.127.net/e6bd50414f175e6f4db4c3ee6ee98255.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c7043c897bd2076baada21f858eb8ce2.jpg\" _src=\"http://yanxuan.nosdn.127.net/c7043c897bd2076baada21f858eb8ce2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e69bde9952f85724cd28a04851d92d7c.jpg\" _src=\"http://yanxuan.nosdn.127.net/e69bde9952f85724cd28a04851d92d7c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5825f1cab216275436125c5f689b6281.jpg\" _src=\"http://yanxuan.nosdn.127.net/5825f1cab216275436125c5f689b6281.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d85b3c1495ec3cbf540e6f9a644cdb26.jpg\" _src=\"http://yanxuan.nosdn.127.net/d85b3c1495ec3cbf540e6f9a644cdb26.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3d7e3e7273c336886cbdd11512cc1892.jpg\" _src=\"http://yanxuan.nosdn.127.net/3d7e3e7273c336886cbdd11512cc1892.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e9b78fb753069669bd0eb86a586842ea.jpg\" _src=\"http://yanxuan.nosdn.127.net/e9b78fb753069669bd0eb86a586842ea.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/21d84381b85cc5a11c341814aa4e1bb7.jpg\" _src=\"http://yanxuan.nosdn.127.net/21d84381b85cc5a11c341814aa4e1bb7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4270b5360a2213b3a23408c6e1158f37.jpg\" _src=\"http://yanxuan.nosdn.127.net/4270b5360a2213b3a23408c6e1158f37.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c8d9432187145bf941cd0f16475b9190.jpg\" _src=\"http://yanxuan.nosdn.127.net/c8d9432187145bf941cd0f16475b9190.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c6a96e9977b61695995548d5a445b13a.jpg\" _src=\"http://yanxuan.nosdn.127.net/c6a96e9977b61695995548d5a445b13a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/564847bca40c56d50e3bb5c58fe924f6.jpg\" _src=\"http://yanxuan.nosdn.127.net/564847bca40c56d50e3bb5c58fe924f6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/050aedf6afb6e64e147f38a3948a849f.jpg\" _src=\"http://yanxuan.nosdn.127.net/050aedf6afb6e64e147f38a3948a849f.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '4', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/78d2d4e121ada074a94e61bc02f077d3.jpg', 'http://yanxuan.nosdn.127.net/e5fd0724a05387615738173fb8f1570d.png', '1199.00', '497', '1101011', '0.00', '限时购', '', '0.00', '0', '0', '0', '1318.90', null, null, null, null);
  674. INSERT INTO `nideshop_goods` VALUES ('1097006', '1015000', '1097006', '原素系列折角实木圆桌', '0', '100', '', '经典桌角,美观稳固', '<p style=\"white-space: normal;\"><span style=\"color: rgb(255, 0, 0);\"><span style=\"font-weight: 700;\"><span style=\"font-family: 微软雅黑, sans-serif;\"></span></span></span></p><p style=\"white-space: normal;\"><br/></p><p style=\"white-space: normal;\"><span style=\"font-weight: 700;\"><span style=\"font-family: 微软雅黑, sans-serif;\"></span></span></p><p style=\"white-space: normal;\"><span style=\"font-weight: 700;\"><span style=\"font-family: 微软雅黑, sans-serif;\">温馨提示:</span></span><br/></p><p style=\"white-space: normal;\"><span style=\"font-family: 微软雅黑, sans-serif;\">1,由于<span style=\"font-weight: 700;\"><span style=\"color: red;\">安徽黄山市</span></span>和<span style=\"font-weight: 700;\"><span style=\"color: red;\">安徽宣城绩溪县</span></span>,要求所有木制品办理《植物检疫证书》,因此暂停向<span style=\"font-weight: 700;\"><span style=\"color: red;\">安徽黄山市</span></span>和<span style=\"font-weight: 700;\"><span style=\"color: red;\">安徽宣城绩溪县</span></span>运输家具,以上两地客户请注意不要购买,<span style=\"font-weight: 700;\"><span style=\"color: red;\">物流无法派送</span></span>,对此给您带来的不便,我们深表歉意!</span></p><p style=\"white-space: normal;\"><span style=\"font-family: 微软雅黑, sans-serif;\"></span></p><p style=\"white-space: normal;\">2,家具送货上门时请拆开包装,待组装完成后,仔细检查家具是否有磕碰,少件等问题,如有不满请拒收或进行异常签收,我们会保障您的权益。</p><p style=\"white-space: normal;\">3,因个人原因首次送货上门暂不安装,要求二次上门安装的,会额外收取费用,请您与安装服务公司进行协商。</p><p><img src=\"http://yanxuan.nosdn.127.net/d921d9fbd52e4db78d812a14850bc788.jpg\" _src=\"http://yanxuan.nosdn.127.net/d921d9fbd52e4db78d812a14850bc788.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1d0fec31eef9b4b2abe6e66140d45750.jpg\" _src=\"http://yanxuan.nosdn.127.net/1d0fec31eef9b4b2abe6e66140d45750.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/84032eeb2d5853254041d2b09f3dfb1c.jpg\" _src=\"http://yanxuan.nosdn.127.net/84032eeb2d5853254041d2b09f3dfb1c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/181e31d6232eadffe61e84e8dd661e5d.jpg\" _src=\"http://yanxuan.nosdn.127.net/181e31d6232eadffe61e84e8dd661e5d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/10c32e52c88cf226837c68ea46202b12.jpg\" _src=\"http://yanxuan.nosdn.127.net/10c32e52c88cf226837c68ea46202b12.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4e0bb20406c5bf1c2b4d412f7423aa77.jpg\" _src=\"http://yanxuan.nosdn.127.net/4e0bb20406c5bf1c2b4d412f7423aa77.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/dd51593d7836e22c3379045a74728cb0.jpg\" _src=\"http://yanxuan.nosdn.127.net/dd51593d7836e22c3379045a74728cb0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f04213fb9494e13616aacd62ed9e233d.jpg\" _src=\"http://yanxuan.nosdn.127.net/f04213fb9494e13616aacd62ed9e233d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b84faaea14fd448631b3c1d3a37e1fb3.jpg\" _src=\"http://yanxuan.nosdn.127.net/b84faaea14fd448631b3c1d3a37e1fb3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3e5e76933d2f479c7fa129ec6de6ba6a.jpg\" _src=\"http://yanxuan.nosdn.127.net/3e5e76933d2f479c7fa129ec6de6ba6a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/39dbbeb2e7064d453266d0d5e8ed4b56.jpg\" _src=\"http://yanxuan.nosdn.127.net/39dbbeb2e7064d453266d0d5e8ed4b56.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/058dff0add92b3ace4cdddec160c6dad.jpg\" _src=\"http://yanxuan.nosdn.127.net/058dff0add92b3ace4cdddec160c6dad.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a3a64eadda21dba3a5e7d5ad95c8bafe.jpg\" _src=\"http://yanxuan.nosdn.127.net/a3a64eadda21dba3a5e7d5ad95c8bafe.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cff9ed658d697e65b4b986c544eb52c0.jpg\" _src=\"http://yanxuan.nosdn.127.net/cff9ed658d697e65b4b986c544eb52c0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ee42f75f692c1b9f106e8d4a50061cdb.jpg\" _src=\"http://yanxuan.nosdn.127.net/ee42f75f692c1b9f106e8d4a50061cdb.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d9c49cafe6ddd219aefce7dcf0240b1b.jpg\" _src=\"http://yanxuan.nosdn.127.net/d9c49cafe6ddd219aefce7dcf0240b1b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4267ba52b1e0fe247e7c70eb0104bef2.jpg\" _src=\"http://yanxuan.nosdn.127.net/4267ba52b1e0fe247e7c70eb0104bef2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3c76a5d6ef41fd022d2d642e04f2c729.jpg\" _src=\"http://yanxuan.nosdn.127.net/3c76a5d6ef41fd022d2d642e04f2c729.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/74b522306cb49e5d028b84eb06578d88.jpg\" _src=\"http://yanxuan.nosdn.127.net/74b522306cb49e5d028b84eb06578d88.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/22fa66c09768c52f1d6529ee5dcbb7c3.jpg\" _src=\"http://yanxuan.nosdn.127.net/22fa66c09768c52f1d6529ee5dcbb7c3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a5025bd8a554a48a74c4ea39f242318e.jpg\" _src=\"http://yanxuan.nosdn.127.net/a5025bd8a554a48a74c4ea39f242318e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c9a035cf11a43c9a92564615e1aa6634.jpg\" _src=\"http://yanxuan.nosdn.127.net/c9a035cf11a43c9a92564615e1aa6634.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0e26964ef91a6b3fe11c35f7c7ef1b02.jpg\" _src=\"http://yanxuan.nosdn.127.net/0e26964ef91a6b3fe11c35f7c7ef1b02.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/95a6dd8da01e559079b644eeaf60cfec.jpg\" _src=\"http://yanxuan.nosdn.127.net/95a6dd8da01e559079b644eeaf60cfec.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/695bd45a00710700d516daa3dd2a9045.jpg\" _src=\"http://yanxuan.nosdn.127.net/695bd45a00710700d516daa3dd2a9045.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/dcdbe2ea52bc998a723713d31d28f0e2.jpg\" _src=\"http://yanxuan.nosdn.127.net/dcdbe2ea52bc998a723713d31d28f0e2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/829b9b9da00da641fab56afbf494a608.jpg\" _src=\"http://yanxuan.nosdn.127.net/829b9b9da00da641fab56afbf494a608.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/306463fdf94b0b7ddc0543271e9eec1e.jpg\" _src=\"http://yanxuan.nosdn.127.net/306463fdf94b0b7ddc0543271e9eec1e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e0a664d56450ea41699b469e11b3191b.jpg\" _src=\"http://yanxuan.nosdn.127.net/e0a664d56450ea41699b469e11b3191b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bfe6a883b89e254361bc0f63106f129c.jpg\" _src=\"http://yanxuan.nosdn.127.net/bfe6a883b89e254361bc0f63106f129c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/640f28756128cd9ac1caa69a65e1d037.jpg\" _src=\"http://yanxuan.nosdn.127.net/640f28756128cd9ac1caa69a65e1d037.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ab0f1b1dfd0bf03f0980789a3b5b231d.jpg\" _src=\"http://yanxuan.nosdn.127.net/ab0f1b1dfd0bf03f0980789a3b5b231d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/32bfb8a814466bb73730bfc29e91686a.jpg\" _src=\"http://yanxuan.nosdn.127.net/32bfb8a814466bb73730bfc29e91686a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bdb84db96ff9309924436e31c45f4c2b.jpg\" _src=\"http://yanxuan.nosdn.127.net/bdb84db96ff9309924436e31c45f4c2b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2c01dc4a48b90fa14ed0389507f7f6f1.jpg\" _src=\"http://yanxuan.nosdn.127.net/2c01dc4a48b90fa14ed0389507f7f6f1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fd3d400330befffaf4292590567832ec.jpg\" _src=\"http://yanxuan.nosdn.127.net/fd3d400330befffaf4292590567832ec.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d24311e7c08d3150db1289209b006f2a.jpg\" _src=\"http://yanxuan.nosdn.127.net/d24311e7c08d3150db1289209b006f2a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7c4ac5d679937b78eb06123b1306e0cc.jpg\" _src=\"http://yanxuan.nosdn.127.net/7c4ac5d679937b78eb06123b1306e0cc.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/33c38f8f6376da9e925df8ee9453a0fe.jpg\" _src=\"http://yanxuan.nosdn.127.net/33c38f8f6376da9e925df8ee9453a0fe.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/eed96d78a12e02e1a8166b5bea129e0c.jpg\" _src=\"http://yanxuan.nosdn.127.net/eed96d78a12e02e1a8166b5bea129e0c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3ee3e1d8f819a767040bcaaad018918e.jpg\" _src=\"http://yanxuan.nosdn.127.net/3ee3e1d8f819a767040bcaaad018918e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7a091b92872aaa1f648d2f20dc8bc1e8.jpg\" _src=\"http://yanxuan.nosdn.127.net/7a091b92872aaa1f648d2f20dc8bc1e8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6ed0e281deb3eb7eb8b7a852a881ca82.jpg\" _src=\"http://yanxuan.nosdn.127.net/6ed0e281deb3eb7eb8b7a852a881ca82.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/185bec777e4ec73015b903c2f543c1a6.jpg\" _src=\"http://yanxuan.nosdn.127.net/185bec777e4ec73015b903c2f543c1a6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6fc9b90f09ac6fd5b6a58cd4ff43fc55.jpg\" _src=\"http://yanxuan.nosdn.127.net/6fc9b90f09ac6fd5b6a58cd4ff43fc55.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5fb02e7b3525962671e7737059c74adb.jpg\" _src=\"http://yanxuan.nosdn.127.net/5fb02e7b3525962671e7737059c74adb.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b2203f84b325605f1a4d110d4f902b27.jpg\" _src=\"http://yanxuan.nosdn.127.net/b2203f84b325605f1a4d110d4f902b27.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7e301503abf99370cd578ce676e76c58.jpg\" _src=\"http://yanxuan.nosdn.127.net/7e301503abf99370cd578ce676e76c58.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e27b3e29f096cfdbe7399a54feb45de5.jpg\" _src=\"http://yanxuan.nosdn.127.net/e27b3e29f096cfdbe7399a54feb45de5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8025864e41ebf9ec17412dbc442b28cf.jpg\" _src=\"http://yanxuan.nosdn.127.net/8025864e41ebf9ec17412dbc442b28cf.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ef5642f3926481d9896a995aebb22db0.jpg\" _src=\"http://yanxuan.nosdn.127.net/ef5642f3926481d9896a995aebb22db0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/dbbb88c09f63f2bbb536825a8b5b0d59.jpg\" _src=\"http://yanxuan.nosdn.127.net/dbbb88c09f63f2bbb536825a8b5b0d59.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/63a3e0da3faa2201b066ea643b978b0b.jpg\" _src=\"http://yanxuan.nosdn.127.net/63a3e0da3faa2201b066ea643b978b0b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4c939e0c60f49c0e68404de82c8715da.jpg\" _src=\"http://yanxuan.nosdn.127.net/4c939e0c60f49c0e68404de82c8715da.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/19b292b838a542e513a945aad4e570d8.jpg\" _src=\"http://yanxuan.nosdn.127.net/19b292b838a542e513a945aad4e570d8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/685f110f22edb7f76de957dd15bde938.jpg\" _src=\"http://yanxuan.nosdn.127.net/685f110f22edb7f76de957dd15bde938.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5d561a175b38e6aa9edc6c28852e194f.jpg\" _src=\"http://yanxuan.nosdn.127.net/5d561a175b38e6aa9edc6c28852e194f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ab5e9feb91653a8a4a42f360a46d5480.jpg\" _src=\"http://yanxuan.nosdn.127.net/ab5e9feb91653a8a4a42f360a46d5480.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3bee201c8e1874fc2e1f3ea623bce333.jpg\" _src=\"http://yanxuan.nosdn.127.net/3bee201c8e1874fc2e1f3ea623bce333.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '13', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/bcf2a72face2c4221dfdc9b3c97d4062.png', 'http://yanxuan.nosdn.127.net/bcf2a72face2c4221dfdc9b3c97d4062.png', '999.00', '2', '1101012', '0.00', '限时购', '', '0.00', '0', '0', '0', '1098.90', null, null, null, null);
  675. INSERT INTO `nideshop_goods` VALUES ('1097007', '1015000', '1097007', '原素系列立式实木圆桌', '0', '100', '', '优雅木纹,结实不易蛀', '<p><span style=\"font-size: 18px; color: rgb(0, 0, 0);\"></span></p><p><strong><span style=\";font-family:&#39;微软雅黑&#39;,sans-serif\"></span></strong></p><p style=\"white-space: normal;\"><span style=\"color: rgb(255, 0, 0);\"><span style=\"font-weight: 700;\"><span style=\"font-family: 微软雅黑, sans-serif;\"></span></span></span></p><p style=\"white-space: normal;\"><br/></p><p style=\"white-space: normal;\"><span style=\"font-weight: 700;\"><span style=\"font-family: 微软雅黑, sans-serif;\"></span></span></p><p style=\"white-space: normal;\"><span style=\"font-weight: 700;\"><span style=\"font-family: 微软雅黑, sans-serif;\">温馨提示:</span></span><br/></p><p style=\"white-space: normal;\"><span style=\"font-family: 微软雅黑, sans-serif;\">1,由于<span style=\"font-weight: 700;\"><span style=\"color: red;\">安徽黄山市</span></span>和<span style=\"font-weight: 700;\"><span style=\"color: red;\">安徽宣城绩溪县</span></span>,要求所有木制品办理《植物检疫证书》,因此暂停向<span style=\"font-weight: 700;\"><span style=\"color: red;\">安徽黄山市</span></span>和<span style=\"font-weight: 700;\"><span style=\"color: red;\">安徽宣城绩溪县</span></span>运输家具,以上两地客户请注意不要购买,<span style=\"font-weight: 700;\"><span style=\"color: red;\">物流无法派送</span></span>,对此给您带来的不便,我们深表歉意!</span></p><p style=\"white-space: normal;\"><span style=\"font-family: 微软雅黑, sans-serif;\"></span></p><p style=\"white-space: normal;\">2,家具送货上门时请拆开包装,待组装完成后,仔细检查家具是否有磕碰,少件等问题,如有不满请拒收或进行异常签收,我们会保障您的权益。</p><p style=\"white-space: normal;\">3,因个人原因首次送货上门暂不安装,要求二次上门安装的,会额外收取费用,请您与安装服务公司进行协商。</p><p><img src=\"http://yanxuan.nosdn.127.net/367118c1d5564aa47528fb65a0c29dd0.jpg\" _src=\"http://yanxuan.nosdn.127.net/367118c1d5564aa47528fb65a0c29dd0.jpg\"/><br/></p><p><img src=\"http://yanxuan.nosdn.127.net/fc166ec8dde64dfc7ab728e281f95273.jpg\" _src=\"http://yanxuan.nosdn.127.net/fc166ec8dde64dfc7ab728e281f95273.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/65fcfb06d85562eff6846847b98ac002.jpg\" _src=\"http://yanxuan.nosdn.127.net/65fcfb06d85562eff6846847b98ac002.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5d59f3db5fa6ee01611e673e116b2c6b.jpg\" _src=\"http://yanxuan.nosdn.127.net/5d59f3db5fa6ee01611e673e116b2c6b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a74f444dac37f86dacfa992a9a5316fb.jpg\" _src=\"http://yanxuan.nosdn.127.net/a74f444dac37f86dacfa992a9a5316fb.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d5225491814eadd7596d12352adfab7b.jpg\" _src=\"http://yanxuan.nosdn.127.net/d5225491814eadd7596d12352adfab7b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8b7ed296551aa2b6a67687d89bd1ced0.jpg\" _src=\"http://yanxuan.nosdn.127.net/8b7ed296551aa2b6a67687d89bd1ced0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bdb9f42e6ac02e2f35fac16b5c59ea10.jpg\" _src=\"http://yanxuan.nosdn.127.net/bdb9f42e6ac02e2f35fac16b5c59ea10.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0890c40221e0db832dfee56d31fd85f5.jpg\" _src=\"http://yanxuan.nosdn.127.net/0890c40221e0db832dfee56d31fd85f5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/da314ee4f81aa83f38ae3420f375e607.jpg\" _src=\"http://yanxuan.nosdn.127.net/da314ee4f81aa83f38ae3420f375e607.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c9f91ab9db7875a2ce7d040f4dffd98e.jpg\" _src=\"http://yanxuan.nosdn.127.net/c9f91ab9db7875a2ce7d040f4dffd98e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/37965f4fce6ca5de5fcc8580c16bc2b8.jpg\" _src=\"http://yanxuan.nosdn.127.net/37965f4fce6ca5de5fcc8580c16bc2b8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/65fc17e1d15ac6067a94677b77e134e3.jpg\" _src=\"http://yanxuan.nosdn.127.net/65fc17e1d15ac6067a94677b77e134e3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/40084e9ec2045dc43fed5acb8c5b89f7.jpg\" _src=\"http://yanxuan.nosdn.127.net/40084e9ec2045dc43fed5acb8c5b89f7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7e0df0d3fc2318263cfd3d817473a3d4.jpg\" _src=\"http://yanxuan.nosdn.127.net/7e0df0d3fc2318263cfd3d817473a3d4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4ba21bd75e4546637ff12ec750227634.jpg\" _src=\"http://yanxuan.nosdn.127.net/4ba21bd75e4546637ff12ec750227634.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b31e479876493cbc3da04c145ecbbbf7.jpg\" _src=\"http://yanxuan.nosdn.127.net/b31e479876493cbc3da04c145ecbbbf7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4a32b5093ce20aa9300fa5ccac95f281.jpg\" _src=\"http://yanxuan.nosdn.127.net/4a32b5093ce20aa9300fa5ccac95f281.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b42c8542e5d04ddfcbc120a9ffe7b51c.jpg\" _src=\"http://yanxuan.nosdn.127.net/b42c8542e5d04ddfcbc120a9ffe7b51c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a959e58b12d559a2fec30c945d941e27.jpg\" _src=\"http://yanxuan.nosdn.127.net/a959e58b12d559a2fec30c945d941e27.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/02ce8bad5bfde1ce4df36c75113b6deb.jpg\" _src=\"http://yanxuan.nosdn.127.net/02ce8bad5bfde1ce4df36c75113b6deb.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/85411c07a0d067b14325294ff9772810.jpg\" _src=\"http://yanxuan.nosdn.127.net/85411c07a0d067b14325294ff9772810.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/04da2f032b0763db53b7a1680b37c046.jpg\" _src=\"http://yanxuan.nosdn.127.net/04da2f032b0763db53b7a1680b37c046.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2190737c115276814c72a3cb0158a919.jpg\" _src=\"http://yanxuan.nosdn.127.net/2190737c115276814c72a3cb0158a919.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/814fbb7a0893d108c7dff32c64743ab3.jpg\" _src=\"http://yanxuan.nosdn.127.net/814fbb7a0893d108c7dff32c64743ab3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f86402674a01e595253095a8e9907646.jpg\" _src=\"http://yanxuan.nosdn.127.net/f86402674a01e595253095a8e9907646.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a280df005fe14b11505c6fedacb8e44e.jpg\" _src=\"http://yanxuan.nosdn.127.net/a280df005fe14b11505c6fedacb8e44e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/51a94eee1f55de52b54c7d590c055f3e.jpg\" _src=\"http://yanxuan.nosdn.127.net/51a94eee1f55de52b54c7d590c055f3e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cc91b63444988fe6a948d7b08af164e4.jpg\" _src=\"http://yanxuan.nosdn.127.net/cc91b63444988fe6a948d7b08af164e4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8509bd077c6965429602dd39367a4d97.jpg\" _src=\"http://yanxuan.nosdn.127.net/8509bd077c6965429602dd39367a4d97.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5a1f18c47c25c3a1e8014a048133cb5a.jpg\" _src=\"http://yanxuan.nosdn.127.net/5a1f18c47c25c3a1e8014a048133cb5a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9ab093dc8ade370d55c6521a0823810c.jpg\" _src=\"http://yanxuan.nosdn.127.net/9ab093dc8ade370d55c6521a0823810c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9b6e028886b3216ff76aceccd93e4125.jpg\" _src=\"http://yanxuan.nosdn.127.net/9b6e028886b3216ff76aceccd93e4125.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c4bf8df40407833ac0558c2f77f13d5f.jpg\" _src=\"http://yanxuan.nosdn.127.net/c4bf8df40407833ac0558c2f77f13d5f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/18e4c34c66cdfa5939fc77cbfca3ed19.jpg\" _src=\"http://yanxuan.nosdn.127.net/18e4c34c66cdfa5939fc77cbfca3ed19.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5a5bf1b22caa0fb02df77f23c48c0a5a.jpg\" _src=\"http://yanxuan.nosdn.127.net/5a5bf1b22caa0fb02df77f23c48c0a5a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/28f05e88413bf95e4cbaeb049ac9aab5.jpg\" _src=\"http://yanxuan.nosdn.127.net/28f05e88413bf95e4cbaeb049ac9aab5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4074f5c0c813f5a8134a6e3cc8b54758.jpg\" _src=\"http://yanxuan.nosdn.127.net/4074f5c0c813f5a8134a6e3cc8b54758.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2fbddf5ea8c146eeb624203c324fcec2.jpg\" _src=\"http://yanxuan.nosdn.127.net/2fbddf5ea8c146eeb624203c324fcec2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0cc22af1d34c33ed1cdca4150e1fc645.jpg\" _src=\"http://yanxuan.nosdn.127.net/0cc22af1d34c33ed1cdca4150e1fc645.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/534d778c9455c42c57bd00ac0c259e41.jpg\" _src=\"http://yanxuan.nosdn.127.net/534d778c9455c42c57bd00ac0c259e41.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/29909b90ee2fe86c4ad37f325183fcf3.jpg\" _src=\"http://yanxuan.nosdn.127.net/29909b90ee2fe86c4ad37f325183fcf3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1e417eb47ead00163e6410edc0d59c2b.jpg\" _src=\"http://yanxuan.nosdn.127.net/1e417eb47ead00163e6410edc0d59c2b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/056962c567f22c2f3f9172e109923410.jpg\" _src=\"http://yanxuan.nosdn.127.net/056962c567f22c2f3f9172e109923410.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/41e35152ba347077604080f19c8de53e.jpg\" _src=\"http://yanxuan.nosdn.127.net/41e35152ba347077604080f19c8de53e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d5d944f6433f98554ddb145ae354605d.jpg\" _src=\"http://yanxuan.nosdn.127.net/d5d944f6433f98554ddb145ae354605d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7cee90d97a3565b9e8ea197aeeea0091.jpg\" _src=\"http://yanxuan.nosdn.127.net/7cee90d97a3565b9e8ea197aeeea0091.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/051901b3ba8cbb08a8382b693cd6e901.jpg\" _src=\"http://yanxuan.nosdn.127.net/051901b3ba8cbb08a8382b693cd6e901.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4767dc0d2d18d2af1bb93a9096cea9e0.jpg\" _src=\"http://yanxuan.nosdn.127.net/4767dc0d2d18d2af1bb93a9096cea9e0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/468e614a59bca5147c608cd45f21d488.jpg\" _src=\"http://yanxuan.nosdn.127.net/468e614a59bca5147c608cd45f21d488.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/07041ca071e6a8b68c3026c3d0c92d4e.jpg\" _src=\"http://yanxuan.nosdn.127.net/07041ca071e6a8b68c3026c3d0c92d4e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/24df4f2a5b09e0a4d627c87d198d5900.jpg\" _src=\"http://yanxuan.nosdn.127.net/24df4f2a5b09e0a4d627c87d198d5900.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/120860ece798ec9da64cc7cf4eb638e0.jpg\" _src=\"http://yanxuan.nosdn.127.net/120860ece798ec9da64cc7cf4eb638e0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c5c17351e0082a9ea3b2aa4139706d33.jpg\" _src=\"http://yanxuan.nosdn.127.net/c5c17351e0082a9ea3b2aa4139706d33.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/66567f0373ba8ae7ac6ac710e3103732.jpg\" _src=\"http://yanxuan.nosdn.127.net/66567f0373ba8ae7ac6ac710e3103732.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b1561e14de9f5557517da732c0e5b822.jpg\" _src=\"http://yanxuan.nosdn.127.net/b1561e14de9f5557517da732c0e5b822.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/86dd804d27210acdf6e9aa6ab9ad9a80.jpg\" _src=\"http://yanxuan.nosdn.127.net/86dd804d27210acdf6e9aa6ab9ad9a80.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/914ec349deb99f80f2b651b0a626dad3.jpg\" _src=\"http://yanxuan.nosdn.127.net/914ec349deb99f80f2b651b0a626dad3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3652b8995b5a389a052b917063667c5a.jpg\" _src=\"http://yanxuan.nosdn.127.net/3652b8995b5a389a052b917063667c5a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b8c2a25368fe117e0388c3b56bfb2f73.jpg\" _src=\"http://yanxuan.nosdn.127.net/b8c2a25368fe117e0388c3b56bfb2f73.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/caa35f0dbf239856e9abefe3516f0699.jpg\" _src=\"http://yanxuan.nosdn.127.net/caa35f0dbf239856e9abefe3516f0699.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d4833cc47ffaa8618c1c624e75d394ae.jpg\" _src=\"http://yanxuan.nosdn.127.net/d4833cc47ffaa8618c1c624e75d394ae.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/87e94a52553c2b720fcd8d498fb132e3.jpg\" _src=\"http://yanxuan.nosdn.127.net/87e94a52553c2b720fcd8d498fb132e3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a3fddb7d49565ba8f5b0fcd818678fcb.jpg\" _src=\"http://yanxuan.nosdn.127.net/a3fddb7d49565ba8f5b0fcd818678fcb.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '12', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/f542b847b5cca146c34b2dff0c0a1d7e.jpg', 'http://yanxuan.nosdn.127.net/b6e132180679b0673486145decc89aa3.png', '759.00', '10', '1101013', '0.00', '限时购', '', '0.00', '0', '0', '0', '834.90', null, null, null, null);
  676. INSERT INTO `nideshop_goods` VALUES ('1097009', '1015000', '1097009', '原素系列实木书桌', '0', '100', '', '无胶龙凤口工艺,经久耐用', '<p style=\"white-space: normal;\"><br/></p><p style=\"white-space: normal;\"><span style=\"font-weight: 700;\"><span style=\"font-family: 微软雅黑, sans-serif;\"></span></span></p><p style=\"white-space: normal;\"><span style=\"font-weight: 700;\"><span style=\"font-family: 微软雅黑, sans-serif;\">温馨提示:</span></span><br/></p><p style=\"white-space: normal;\"><span style=\"font-family: 微软雅黑, sans-serif;\">1,由于<span style=\"font-weight: 700;\"><span style=\"color: red;\">安徽黄山市</span></span>和<span style=\"font-weight: 700;\"><span style=\"color: red;\">安徽宣城绩溪县</span></span>,要求所有木制品办理《植物检疫证书》,因此暂停向<span style=\"font-weight: 700;\"><span style=\"color: red;\">安徽黄山市</span></span>和<span style=\"font-weight: 700;\"><span style=\"color: red;\">安徽宣城绩溪县</span></span>运输家具,以上两地客户请注意不要购买,<span style=\"font-weight: 700;\"><span style=\"color: red;\">物流无法派送</span></span>,对此给您带来的不便,我们深表歉意!</span></p><p style=\"white-space: normal;\"><span style=\"font-family: 微软雅黑, sans-serif;\"></span></p><p style=\"white-space: normal;\">2,家具送货上门时请拆开包装,待组装完成后,仔细检查家具是否有磕碰,少件等问题,如有不满请拒收或进行异常签收,我们会保障您的权益。</p><p style=\"white-space: normal;\">3,因个人原因首次送货上门暂不安装,要求二次上门安装的,会额外收取费用,请您与安装服务公司进行协商。</p><p><img src=\"http://yanxuan.nosdn.127.net/88132c09bb46fd56c3736a78bde5c062.jpg\" _src=\"http://yanxuan.nosdn.127.net/88132c09bb46fd56c3736a78bde5c062.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/43171af9decffd112b6fbfdf47ea7c9f.jpg\" _src=\"http://yanxuan.nosdn.127.net/43171af9decffd112b6fbfdf47ea7c9f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1299da36c3cd3b8f337e9d8c1bb7dfd7.jpg\" _src=\"http://yanxuan.nosdn.127.net/1299da36c3cd3b8f337e9d8c1bb7dfd7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/725661defd33ad42cd094f27310028d3.jpg\" _src=\"http://yanxuan.nosdn.127.net/725661defd33ad42cd094f27310028d3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a6c0d23a9ae2d5d51f29653645217527.jpg\" _src=\"http://yanxuan.nosdn.127.net/a6c0d23a9ae2d5d51f29653645217527.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0e8d9fb319da6309189f840a42483a6d.jpg\" _src=\"http://yanxuan.nosdn.127.net/0e8d9fb319da6309189f840a42483a6d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3b5d5d008caee37dd093e4a97def928c.jpg\" _src=\"http://yanxuan.nosdn.127.net/3b5d5d008caee37dd093e4a97def928c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/19262e7e1f5a25d58cbbc3074d9f5f46.jpg\" _src=\"http://yanxuan.nosdn.127.net/19262e7e1f5a25d58cbbc3074d9f5f46.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/156398c313dc43c534f902a9fc44282f.jpg\" _src=\"http://yanxuan.nosdn.127.net/156398c313dc43c534f902a9fc44282f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/dc0a7c483729329ce4ff40b4102600ec.jpg\" _src=\"http://yanxuan.nosdn.127.net/dc0a7c483729329ce4ff40b4102600ec.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c24ae4580b31a8018301773b4100feef.jpg\" _src=\"http://yanxuan.nosdn.127.net/c24ae4580b31a8018301773b4100feef.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3da0e8e4fb5889646c7f7426524ae8be.jpg\" _src=\"http://yanxuan.nosdn.127.net/3da0e8e4fb5889646c7f7426524ae8be.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9eaac645f1b9a72b5c608f2097d8ae6a.jpg\" _src=\"http://yanxuan.nosdn.127.net/9eaac645f1b9a72b5c608f2097d8ae6a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4953079263239d6a5d5db13bdc84ba3f.jpg\" _src=\"http://yanxuan.nosdn.127.net/4953079263239d6a5d5db13bdc84ba3f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f7b5f7d040dbe2b81b8afd2f750494c3.jpg\" _src=\"http://yanxuan.nosdn.127.net/f7b5f7d040dbe2b81b8afd2f750494c3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/95840331fdbec4ddcfe23e107c3a689d.jpg\" _src=\"http://yanxuan.nosdn.127.net/95840331fdbec4ddcfe23e107c3a689d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9d32b40b09aee96c287e52e1648f54e4.jpg\" _src=\"http://yanxuan.nosdn.127.net/9d32b40b09aee96c287e52e1648f54e4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cb4b7b9c03df2956efb1de4cef85ede0.jpg\" _src=\"http://yanxuan.nosdn.127.net/cb4b7b9c03df2956efb1de4cef85ede0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/370c4b37af7f0b172415d7a41f956ecf.jpg\" _src=\"http://yanxuan.nosdn.127.net/370c4b37af7f0b172415d7a41f956ecf.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8a8d988f501085612d40aa5a861dc600.jpg\" _src=\"http://yanxuan.nosdn.127.net/8a8d988f501085612d40aa5a861dc600.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d32cc594b9c7f9ddb999841e47a658f0.jpg\" _src=\"http://yanxuan.nosdn.127.net/d32cc594b9c7f9ddb999841e47a658f0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/43d1130a30ec3b2f71198e43803ff563.jpg\" _src=\"http://yanxuan.nosdn.127.net/43d1130a30ec3b2f71198e43803ff563.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e1f72a1b595bf4b215a2da88989daaf9.jpg\" _src=\"http://yanxuan.nosdn.127.net/e1f72a1b595bf4b215a2da88989daaf9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6476a6ec20137b3d2e7b5d1834d133cc.jpg\" _src=\"http://yanxuan.nosdn.127.net/6476a6ec20137b3d2e7b5d1834d133cc.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/83a6d0c9c10d826e0216030290024224.jpg\" _src=\"http://yanxuan.nosdn.127.net/83a6d0c9c10d826e0216030290024224.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/831989c6e8aa9af783cc0955be193cc0.jpg\" _src=\"http://yanxuan.nosdn.127.net/831989c6e8aa9af783cc0955be193cc0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4d9f7d0bc8fd7b9b03000d060cf95465.jpg\" _src=\"http://yanxuan.nosdn.127.net/4d9f7d0bc8fd7b9b03000d060cf95465.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/721b53bc8fd1a0c236d45168c3f5366b.jpg\" _src=\"http://yanxuan.nosdn.127.net/721b53bc8fd1a0c236d45168c3f5366b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ca98b9829f5a74d09e8c7cda717bc9b0.jpg\" _src=\"http://yanxuan.nosdn.127.net/ca98b9829f5a74d09e8c7cda717bc9b0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fe3a4daa2f5b18e566387b980b57c1e5.jpg\" _src=\"http://yanxuan.nosdn.127.net/fe3a4daa2f5b18e566387b980b57c1e5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5dabf0028ba770f1bdefddc4f4f1a226.jpg\" _src=\"http://yanxuan.nosdn.127.net/5dabf0028ba770f1bdefddc4f4f1a226.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/16338e9c712c3ec1f9103593f8be4eb4.jpg\" _src=\"http://yanxuan.nosdn.127.net/16338e9c712c3ec1f9103593f8be4eb4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/791d8c24267ea09bd41aa2b91c06dbc6.jpg\" _src=\"http://yanxuan.nosdn.127.net/791d8c24267ea09bd41aa2b91c06dbc6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9d7288a80b9d75a6aeb6c41dd1245788.jpg\" _src=\"http://yanxuan.nosdn.127.net/9d7288a80b9d75a6aeb6c41dd1245788.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bd59b7c730c9ca13891822ec4a47a649.jpg\" _src=\"http://yanxuan.nosdn.127.net/bd59b7c730c9ca13891822ec4a47a649.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0a0c045e21d154b18ecac752e36dac0c.jpg\" _src=\"http://yanxuan.nosdn.127.net/0a0c045e21d154b18ecac752e36dac0c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5ea95b32db696ba29ec2f2b036693495.jpg\" _src=\"http://yanxuan.nosdn.127.net/5ea95b32db696ba29ec2f2b036693495.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/92515ffca2aaf56d7da8b083a8f2dcde.jpg\" _src=\"http://yanxuan.nosdn.127.net/92515ffca2aaf56d7da8b083a8f2dcde.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/41397343f3bd8e21ec0c8f36f770419c.jpg\" _src=\"http://yanxuan.nosdn.127.net/41397343f3bd8e21ec0c8f36f770419c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2d60e173e42f532c17b756312b4dd0f6.jpg\" _src=\"http://yanxuan.nosdn.127.net/2d60e173e42f532c17b756312b4dd0f6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/15770106961833c500769780ac0f05de.jpg\" _src=\"http://yanxuan.nosdn.127.net/15770106961833c500769780ac0f05de.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4fd4eae67f57be5f6e8eb8d87d9ce44f.jpg\" _src=\"http://yanxuan.nosdn.127.net/4fd4eae67f57be5f6e8eb8d87d9ce44f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/685272414d85ad4ecc27d4e48feeadcf.jpg\" _src=\"http://yanxuan.nosdn.127.net/685272414d85ad4ecc27d4e48feeadcf.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e8e6b764dbc2ebd7dcd1d1371674484d.jpg\" _src=\"http://yanxuan.nosdn.127.net/e8e6b764dbc2ebd7dcd1d1371674484d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3cb43de2db26ee4261aaa74a5b1e2c73.jpg\" _src=\"http://yanxuan.nosdn.127.net/3cb43de2db26ee4261aaa74a5b1e2c73.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e0241c52950f344d3ba47819fe64a809.jpg\" _src=\"http://yanxuan.nosdn.127.net/e0241c52950f344d3ba47819fe64a809.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/695620b47efabdc9b1123a30e49e4d05.jpg\" _src=\"http://yanxuan.nosdn.127.net/695620b47efabdc9b1123a30e49e4d05.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6dcf7e61c2d24a0cc1cc719ca95e89ec.jpg\" _src=\"http://yanxuan.nosdn.127.net/6dcf7e61c2d24a0cc1cc719ca95e89ec.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/57de5837078cd91ffe8d8553b323637e.jpg\" _src=\"http://yanxuan.nosdn.127.net/57de5837078cd91ffe8d8553b323637e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e0925305320f94a71f1f645cc0e7691a.jpg\" _src=\"http://yanxuan.nosdn.127.net/e0925305320f94a71f1f645cc0e7691a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1ccb44bb49e396c3175676ef81eca063.jpg\" _src=\"http://yanxuan.nosdn.127.net/1ccb44bb49e396c3175676ef81eca063.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/666c01818dbbe5aeda82338fd0f7c697.jpg\" _src=\"http://yanxuan.nosdn.127.net/666c01818dbbe5aeda82338fd0f7c697.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/73b7998aaf4fbcc2ec2954e06ac31c6a.jpg\" _src=\"http://yanxuan.nosdn.127.net/73b7998aaf4fbcc2ec2954e06ac31c6a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5383e7be82613881d7177a64804323be.jpg\" _src=\"http://yanxuan.nosdn.127.net/5383e7be82613881d7177a64804323be.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4d9c0ed671c167b633e7c657524422f4.jpg\" _src=\"http://yanxuan.nosdn.127.net/4d9c0ed671c167b633e7c657524422f4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b944b0ab2f7f9f5ccbd09f445f2d3a41.jpg\" _src=\"http://yanxuan.nosdn.127.net/b944b0ab2f7f9f5ccbd09f445f2d3a41.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b84a7b8388d8a9e4441534339b42f412.jpg\" _src=\"http://yanxuan.nosdn.127.net/b84a7b8388d8a9e4441534339b42f412.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7c1223dcdb4e71f09a518801cf3e1832.jpg\" _src=\"http://yanxuan.nosdn.127.net/7c1223dcdb4e71f09a518801cf3e1832.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/197ce8b7030968369f86b0a0e066f423.jpg\" _src=\"http://yanxuan.nosdn.127.net/197ce8b7030968369f86b0a0e066f423.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/45f326c8baddfaddd5af24addd675063.jpg\" _src=\"http://yanxuan.nosdn.127.net/45f326c8baddfaddd5af24addd675063.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c7ad2b6157dc6662f523e91e2ed30d06.jpg\" _src=\"http://yanxuan.nosdn.127.net/c7ad2b6157dc6662f523e91e2ed30d06.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/25228437f15a686d5087f0287d3adedd.jpg\" _src=\"http://yanxuan.nosdn.127.net/25228437f15a686d5087f0287d3adedd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e2b784f461b4a1b31b201310ff2582b8.jpg\" _src=\"http://yanxuan.nosdn.127.net/e2b784f461b4a1b31b201310ff2582b8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f2c5a90c31ee82a862abf51b8a6ac73c.jpg\" _src=\"http://yanxuan.nosdn.127.net/f2c5a90c31ee82a862abf51b8a6ac73c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f9796cd6f11c1f26dc96406f2a17cd9c.jpg\" _src=\"http://yanxuan.nosdn.127.net/f9796cd6f11c1f26dc96406f2a17cd9c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/db9cfbd40e7d9eb20dfaeaf6f5d7faf3.jpg\" _src=\"http://yanxuan.nosdn.127.net/db9cfbd40e7d9eb20dfaeaf6f5d7faf3.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '7', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/5cf97d669f7632068b04c23c168fdab9.jpg', 'http://yanxuan.nosdn.127.net/e7b68189ef2f77a28110c3fc7ca5a697.png', '1599.00', '402', '1101016', '0.00', '限时购', '', '0.00', '0', '0', '0', '1758.90', null, null, null, null);
  677. INSERT INTO `nideshop_goods` VALUES ('1097011', '1015000', '1097011', '原素系列1.8米实木床', '0', '100', '', '优选实木,环保喷漆', '<p><strong><span style=\"font-family:&#39;微软雅黑&#39;,sans-serif\"></span></strong></p><p><strong><span style=\"font-size:19px;font-family:&#39;微软雅黑&#39;,sans-serif\"></span></strong></p><p><strong><span style=\";font-family:&#39;微软雅黑&#39;,sans-serif\"></span></strong></p><p style=\"white-space: normal;\"><span style=\"color: rgb(255, 0, 0);\"><span style=\"font-weight: 700;\"><span style=\"font-family: 微软雅黑, sans-serif;\"></span></span></span></p><p style=\"white-space: normal;\"><br/></p><p style=\"white-space: normal;\"><span style=\"font-weight: 700;\"><span style=\"font-family: 微软雅黑, sans-serif;\"></span></span></p><p style=\"white-space: normal;\"><span style=\"font-weight: 700;\"><span style=\"font-family: 微软雅黑, sans-serif;\">温馨提示:</span></span><br/></p><p style=\"white-space: normal;\"><span style=\"font-family: 微软雅黑, sans-serif;\">1,由于<span style=\"font-weight: 700;\"><span style=\"color: red;\">安徽黄山市</span></span>和<span style=\"font-weight: 700;\"><span style=\"color: red;\">安徽宣城绩溪县</span></span>,要求所有木制品办理《植物检疫证书》,因此暂停向<span style=\"font-weight: 700;\"><span style=\"color: red;\">安徽黄山市</span></span>和<span style=\"font-weight: 700;\"><span style=\"color: red;\">安徽宣城绩溪县</span></span>运输家具,以上两地客户请注意不要购买,<span style=\"font-weight: 700;\"><span style=\"color: red;\">物流无法派送</span></span>,对此给您带来的不便,我们深表歉意!</span></p><p style=\"white-space: normal;\"><span style=\"font-family: 微软雅黑, sans-serif;\"></span></p><p style=\"white-space: normal;\">2,家具送货上门时请拆开包装,待组装完成后,仔细检查家具是否有磕碰,少件等问题,如有不满请拒收或进行异常签收,我们会保障您的权益。</p><p style=\"white-space: normal;\">3,因个人原因首次送货上门暂不安装,要求二次上门安装的,会额外收取费用,请您与安装服务公司进行协商。</p><p><img src=\"http://yanxuan.nosdn.127.net/25b48074ebc6b7819a694e825b4a1675.jpg\" _src=\"http://yanxuan.nosdn.127.net/25b48074ebc6b7819a694e825b4a1675.jpg\"/><br/></p><p><img src=\"http://yanxuan.nosdn.127.net/443f573c96e998c45a148ae928044d68.jpg\" _src=\"http://yanxuan.nosdn.127.net/443f573c96e998c45a148ae928044d68.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4e35ee3265475cd294ccb239298aa601.jpg\" _src=\"http://yanxuan.nosdn.127.net/4e35ee3265475cd294ccb239298aa601.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/84637fca3838f302f994bb01fcf373e5.jpg\" _src=\"http://yanxuan.nosdn.127.net/84637fca3838f302f994bb01fcf373e5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6561b8db485f04e17f1e983315e1b3ac.jpg\" _src=\"http://yanxuan.nosdn.127.net/6561b8db485f04e17f1e983315e1b3ac.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/caeeea9996d4394a8c0f5f6e6de13220.jpg\" _src=\"http://yanxuan.nosdn.127.net/caeeea9996d4394a8c0f5f6e6de13220.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/69fb823bc30d13933fdfb4419992ca2b.jpg\" _src=\"http://yanxuan.nosdn.127.net/69fb823bc30d13933fdfb4419992ca2b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/95ef650961f9650d22aa44a47a61f2d7.jpg\" _src=\"http://yanxuan.nosdn.127.net/95ef650961f9650d22aa44a47a61f2d7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fa0c6b0e9b41c37b00ef04491fd51f62.jpg\" _src=\"http://yanxuan.nosdn.127.net/fa0c6b0e9b41c37b00ef04491fd51f62.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c6118bb435efa9623650801d6d248e03.jpg\" _src=\"http://yanxuan.nosdn.127.net/c6118bb435efa9623650801d6d248e03.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/25c6c5e2044dc6012f23782546243dbf.jpg\" _src=\"http://yanxuan.nosdn.127.net/25c6c5e2044dc6012f23782546243dbf.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d6ca845173f260a9304ae2c36f7fb286.jpg\" _src=\"http://yanxuan.nosdn.127.net/d6ca845173f260a9304ae2c36f7fb286.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/375a682e134f438139f1c79a9879c035.jpg\" _src=\"http://yanxuan.nosdn.127.net/375a682e134f438139f1c79a9879c035.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5e58c21fc0fd54cd6dcad4b2a34aa9b9.jpg\" _src=\"http://yanxuan.nosdn.127.net/5e58c21fc0fd54cd6dcad4b2a34aa9b9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bb2c3f51c58101ced4e0114c20228187.jpg\" _src=\"http://yanxuan.nosdn.127.net/bb2c3f51c58101ced4e0114c20228187.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/54b4350b0a3e2d4f32aac2297a95f960.jpg\" _src=\"http://yanxuan.nosdn.127.net/54b4350b0a3e2d4f32aac2297a95f960.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2d6829e37e9a99d7d40814375efabbc3.jpg\" _src=\"http://yanxuan.nosdn.127.net/2d6829e37e9a99d7d40814375efabbc3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5ee4cb66e726b8af96bb8fcb95f2e097.jpg\" _src=\"http://yanxuan.nosdn.127.net/5ee4cb66e726b8af96bb8fcb95f2e097.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1583759ecedb69d3e145f5aa30e83322.jpg\" _src=\"http://yanxuan.nosdn.127.net/1583759ecedb69d3e145f5aa30e83322.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7742363de23c364a479a059497d20621.jpg\" _src=\"http://yanxuan.nosdn.127.net/7742363de23c364a479a059497d20621.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3e2b07a00c072d7eda424389eb4b2c98.jpg\" _src=\"http://yanxuan.nosdn.127.net/3e2b07a00c072d7eda424389eb4b2c98.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/97e1dd6398f8d929dc22fa77b3af3048.jpg\" _src=\"http://yanxuan.nosdn.127.net/97e1dd6398f8d929dc22fa77b3af3048.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/165f05d010a1ca0fd107bb49761c7871.jpg\" _src=\"http://yanxuan.nosdn.127.net/165f05d010a1ca0fd107bb49761c7871.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a62b372ebe917afe660b86baf1bc4ed7.jpg\" _src=\"http://yanxuan.nosdn.127.net/a62b372ebe917afe660b86baf1bc4ed7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ee262ad88b9947ed502a999b16ce0fae.jpg\" _src=\"http://yanxuan.nosdn.127.net/ee262ad88b9947ed502a999b16ce0fae.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9087dcde6bd8018568fac07513fc5736.jpg\" _src=\"http://yanxuan.nosdn.127.net/9087dcde6bd8018568fac07513fc5736.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3d6e0f85847cf8d32a1ada5166ac5b4e.jpg\" _src=\"http://yanxuan.nosdn.127.net/3d6e0f85847cf8d32a1ada5166ac5b4e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/eb5c0235162c2ea23ab2d41a5728d738.jpg\" _src=\"http://yanxuan.nosdn.127.net/eb5c0235162c2ea23ab2d41a5728d738.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/171c6873ffc09e4749587202d5b90283.jpg\" _src=\"http://yanxuan.nosdn.127.net/171c6873ffc09e4749587202d5b90283.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/65ae6c826d0a2881986e0d6c79ce88c0.jpg\" _src=\"http://yanxuan.nosdn.127.net/65ae6c826d0a2881986e0d6c79ce88c0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/239c0532fc74277e37eb48d30a1ffdcf.jpg\" _src=\"http://yanxuan.nosdn.127.net/239c0532fc74277e37eb48d30a1ffdcf.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5dc0992efc50819e5bcd8ded67f72b21.jpg\" _src=\"http://yanxuan.nosdn.127.net/5dc0992efc50819e5bcd8ded67f72b21.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/79f835dee51dfebff826322e02702536.jpg\" _src=\"http://yanxuan.nosdn.127.net/79f835dee51dfebff826322e02702536.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/12faaa008eb01af33a7290013cef9432.jpg\" _src=\"http://yanxuan.nosdn.127.net/12faaa008eb01af33a7290013cef9432.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9e4273ea5f8db5f22aa7e528869809f0.jpg\" _src=\"http://yanxuan.nosdn.127.net/9e4273ea5f8db5f22aa7e528869809f0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ef16497eb1ff1c3d6d5b5e9b2846b5c3.jpg\" _src=\"http://yanxuan.nosdn.127.net/ef16497eb1ff1c3d6d5b5e9b2846b5c3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/37ba0ca96d08ddd6539f641f6ae104cf.jpg\" _src=\"http://yanxuan.nosdn.127.net/37ba0ca96d08ddd6539f641f6ae104cf.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6b1525ac453dca22948124139a965adf.jpg\" _src=\"http://yanxuan.nosdn.127.net/6b1525ac453dca22948124139a965adf.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/734f333508e556b9dbbbd13dcbd55165.jpg\" _src=\"http://yanxuan.nosdn.127.net/734f333508e556b9dbbbd13dcbd55165.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4a3b49adb1e143e1d85f20c4bd08c771.jpg\" _src=\"http://yanxuan.nosdn.127.net/4a3b49adb1e143e1d85f20c4bd08c771.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/122848144b1a5ab8f0549b9e2b58797c.jpg\" _src=\"http://yanxuan.nosdn.127.net/122848144b1a5ab8f0549b9e2b58797c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4eefa34083fdc0095e079484a079ec9b.jpg\" _src=\"http://yanxuan.nosdn.127.net/4eefa34083fdc0095e079484a079ec9b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8c5c2ed91c345083c36c04edac3017d5.jpg\" _src=\"http://yanxuan.nosdn.127.net/8c5c2ed91c345083c36c04edac3017d5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8efcd5370561d2a9aa7e38036dc9f26a.jpg\" _src=\"http://yanxuan.nosdn.127.net/8efcd5370561d2a9aa7e38036dc9f26a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/485de6226b63772f9da8c74d66e1a785.jpg\" _src=\"http://yanxuan.nosdn.127.net/485de6226b63772f9da8c74d66e1a785.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/32c8b4bf19bae3aef7064aa0d9043c3b.jpg\" _src=\"http://yanxuan.nosdn.127.net/32c8b4bf19bae3aef7064aa0d9043c3b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3af4220eed1c8b875bee478f4f12b5f3.jpg\" _src=\"http://yanxuan.nosdn.127.net/3af4220eed1c8b875bee478f4f12b5f3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d9a31eb8c7221442e29fdd7bedff777d.jpg\" _src=\"http://yanxuan.nosdn.127.net/d9a31eb8c7221442e29fdd7bedff777d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/dfa80c2bb4b41ad1f4f2d9b3379c23e1.jpg\" _src=\"http://yanxuan.nosdn.127.net/dfa80c2bb4b41ad1f4f2d9b3379c23e1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1dd8138a57410e080139be38c9151549.jpg\" _src=\"http://yanxuan.nosdn.127.net/1dd8138a57410e080139be38c9151549.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ef479caa6cade6fad11b472e7d88b32d.jpg\" _src=\"http://yanxuan.nosdn.127.net/ef479caa6cade6fad11b472e7d88b32d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ca1274dba63b3724363013f0889d27d2.jpg\" _src=\"http://yanxuan.nosdn.127.net/ca1274dba63b3724363013f0889d27d2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ef8630d2570b39482323005f17856f2f.jpg\" _src=\"http://yanxuan.nosdn.127.net/ef8630d2570b39482323005f17856f2f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4310dae760926e986ad306497b75d502.jpg\" _src=\"http://yanxuan.nosdn.127.net/4310dae760926e986ad306497b75d502.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e8fc3b621830f3250b178c0280338d3e.jpg\" _src=\"http://yanxuan.nosdn.127.net/e8fc3b621830f3250b178c0280338d3e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a7dd45ccd5d58ad39cf689c8c0fc3421.jpg\" _src=\"http://yanxuan.nosdn.127.net/a7dd45ccd5d58ad39cf689c8c0fc3421.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/dd84fa8e26379ed62b898d37f38b2966.jpg\" _src=\"http://yanxuan.nosdn.127.net/dd84fa8e26379ed62b898d37f38b2966.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0b6c3fc3cdb1a8094a6b996ea7e1b2f8.jpg\" _src=\"http://yanxuan.nosdn.127.net/0b6c3fc3cdb1a8094a6b996ea7e1b2f8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3563863f4c84f7bb03ee7149040703a8.jpg\" _src=\"http://yanxuan.nosdn.127.net/3563863f4c84f7bb03ee7149040703a8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/86a88e931b695c0debba11096c6c147c.jpg\" _src=\"http://yanxuan.nosdn.127.net/86a88e931b695c0debba11096c6c147c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/378a2655e2eb74b1acb53bec21990328.jpg\" _src=\"http://yanxuan.nosdn.127.net/378a2655e2eb74b1acb53bec21990328.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c211cf4c59a1e130ab95ddaf349a2d9b.jpg\" _src=\"http://yanxuan.nosdn.127.net/c211cf4c59a1e130ab95ddaf349a2d9b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8fe46e709449593e186603f018b9d523.jpg\" _src=\"http://yanxuan.nosdn.127.net/8fe46e709449593e186603f018b9d523.jpg\" style=\"\"/></p><p><span style=\";font-family:&#39;微软雅黑&#39;,sans-serif\"></span><br/></p>', '1', '2017-08-30 11:40:11', '8', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/ddbe8ccfd223207921aaae7ebfac711a.jpg', 'http://yanxuan.nosdn.127.net/fea36ef2514c904f4f45f1975f37f289.png', '3899.00', '171', '1101020', '0.00', '限时购', '', '0.00', '0', '0', '0', '4288.90', null, null, null, null);
  678. INSERT INTO `nideshop_goods` VALUES ('1097012', '1015000', '1097012', '原素系列实木床头柜', '0', '100', '', '优选实木环保喷漆', '<p style=\"white-space: normal;\"><span style=\"color: rgb(255, 0, 0);\"><span style=\"font-weight: 700;\"><span style=\"font-family: 微软雅黑, sans-serif;\"></span></span></span></p><p style=\"white-space: normal;\"><br/></p><p style=\"white-space: normal;\"><span style=\"font-weight: 700;\"><span style=\"font-family: 微软雅黑, sans-serif;\"></span></span></p><p style=\"white-space: normal;\"><span style=\"font-weight: 700;\"><span style=\"font-family: 微软雅黑, sans-serif;\">温馨提示:</span></span><br/></p><p style=\"white-space: normal;\"><span style=\"font-family: 微软雅黑, sans-serif;\">1,由于<span style=\"font-weight: 700;\"><span style=\"color: red;\">安徽黄山市</span></span>和<span style=\"font-weight: 700;\"><span style=\"color: red;\">安徽宣城绩溪县</span></span>,要求所有木制品办理《植物检疫证书》,因此暂停向<span style=\"font-weight: 700;\"><span style=\"color: red;\">安徽黄山市</span></span>和<span style=\"font-weight: 700;\"><span style=\"color: red;\">安徽宣城绩溪县</span></span>运输家具,以上两地客户请注意不要购买,<span style=\"font-weight: 700;\"><span style=\"color: red;\">物流无法派送</span></span>,对此给您带来的不便,我们深表歉意!</span></p><p style=\"white-space: normal;\"><span style=\"font-family: 微软雅黑, sans-serif;\"></span></p><p style=\"white-space: normal;\">2,家具送货上门时请拆开包装,待组装完成后,仔细检查家具是否有磕碰,少件等问题,如有不满请拒收或进行异常签收,我们会保障您的权益。</p><p style=\"white-space: normal;\">3,因个人原因首次送货上门暂不安装,要求二次上门安装的,会额外收取费用,请您与安装服务公司进行协商。</p><p><img src=\"http://yanxuan.nosdn.127.net/238979c72b45c63ef0c26cc3f208c24a.jpg\" _src=\"http://yanxuan.nosdn.127.net/238979c72b45c63ef0c26cc3f208c24a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d6a6406660c4bb14aa5aa32ced2475d7.jpg\" _src=\"http://yanxuan.nosdn.127.net/d6a6406660c4bb14aa5aa32ced2475d7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1c6f4a141b15b9d5fb09081e2ee007c7.jpg\" _src=\"http://yanxuan.nosdn.127.net/1c6f4a141b15b9d5fb09081e2ee007c7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/899dbf43caa50235a4c718a801b4f64d.jpg\" _src=\"http://yanxuan.nosdn.127.net/899dbf43caa50235a4c718a801b4f64d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9591f4fa45d1cef7ecff6d3247b53a78.jpg\" _src=\"http://yanxuan.nosdn.127.net/9591f4fa45d1cef7ecff6d3247b53a78.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/509fa0f4c705a906b456c16681418cb1.jpg\" _src=\"http://yanxuan.nosdn.127.net/509fa0f4c705a906b456c16681418cb1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b9f46c0f718844a88102e9bfe1b3d501.jpg\" _src=\"http://yanxuan.nosdn.127.net/b9f46c0f718844a88102e9bfe1b3d501.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d5f8bbffd2090ecdbe92d53d9ce61953.jpg\" _src=\"http://yanxuan.nosdn.127.net/d5f8bbffd2090ecdbe92d53d9ce61953.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0650a0798bdddede6022860db1e6f4a3.jpg\" _src=\"http://yanxuan.nosdn.127.net/0650a0798bdddede6022860db1e6f4a3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/51d71823797efe66fb69f6de3ceca2bf.jpg\" _src=\"http://yanxuan.nosdn.127.net/51d71823797efe66fb69f6de3ceca2bf.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c9cb565e337069f9e51f39404aeaf1b9.jpg\" _src=\"http://yanxuan.nosdn.127.net/c9cb565e337069f9e51f39404aeaf1b9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d9009e63d05b4d89efd0965b8b5e23b4.jpg\" _src=\"http://yanxuan.nosdn.127.net/d9009e63d05b4d89efd0965b8b5e23b4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7f75e1707d99f9422534e58a959fee95.jpg\" _src=\"http://yanxuan.nosdn.127.net/7f75e1707d99f9422534e58a959fee95.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7fd8d9b751a18c54324d585419ab1bd9.jpg\" _src=\"http://yanxuan.nosdn.127.net/7fd8d9b751a18c54324d585419ab1bd9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/19ee4851b74de9c57ad61f735f375d92.jpg\" _src=\"http://yanxuan.nosdn.127.net/19ee4851b74de9c57ad61f735f375d92.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/654f10d84c0497f3ae5e041eb97f4c05.jpg\" _src=\"http://yanxuan.nosdn.127.net/654f10d84c0497f3ae5e041eb97f4c05.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/915c6a22fdf515046fa91af4691defe4.jpg\" _src=\"http://yanxuan.nosdn.127.net/915c6a22fdf515046fa91af4691defe4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/df0c8dcdfabd8a95fa29a867e3255c29.jpg\" _src=\"http://yanxuan.nosdn.127.net/df0c8dcdfabd8a95fa29a867e3255c29.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/582c0162501a42e0e0a7328d5feb3106.jpg\" _src=\"http://yanxuan.nosdn.127.net/582c0162501a42e0e0a7328d5feb3106.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c42982318f69d3346ec2a82a14540e29.jpg\" _src=\"http://yanxuan.nosdn.127.net/c42982318f69d3346ec2a82a14540e29.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2e3ac2d640de7f07d154fbfdc1cc9f7c.jpg\" _src=\"http://yanxuan.nosdn.127.net/2e3ac2d640de7f07d154fbfdc1cc9f7c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ff4a616ec16e16636438daa4c5a0aedd.jpg\" _src=\"http://yanxuan.nosdn.127.net/ff4a616ec16e16636438daa4c5a0aedd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/09afec9d5a321dc66e6353ed4f1f0a88.jpg\" _src=\"http://yanxuan.nosdn.127.net/09afec9d5a321dc66e6353ed4f1f0a88.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/06ac3ec8f269aafd50280d69d0ace542.jpg\" _src=\"http://yanxuan.nosdn.127.net/06ac3ec8f269aafd50280d69d0ace542.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/13390514772fa5c0511cf877384c5967.jpg\" _src=\"http://yanxuan.nosdn.127.net/13390514772fa5c0511cf877384c5967.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e5def98ab674d3e7ba552f7953b4d0ce.jpg\" _src=\"http://yanxuan.nosdn.127.net/e5def98ab674d3e7ba552f7953b4d0ce.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f1c0a68da2c5bc6dfe2edb083c4e6857.jpg\" _src=\"http://yanxuan.nosdn.127.net/f1c0a68da2c5bc6dfe2edb083c4e6857.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/984dc2d147c24a010d834faab8c1b490.jpg\" _src=\"http://yanxuan.nosdn.127.net/984dc2d147c24a010d834faab8c1b490.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cc9af77bb88eed9a275f62d54d253565.jpg\" _src=\"http://yanxuan.nosdn.127.net/cc9af77bb88eed9a275f62d54d253565.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cf45035c5ad6ab556a323e9394a5a343.jpg\" _src=\"http://yanxuan.nosdn.127.net/cf45035c5ad6ab556a323e9394a5a343.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/092b9c36d92c0b934f0f735f6a002870.jpg\" _src=\"http://yanxuan.nosdn.127.net/092b9c36d92c0b934f0f735f6a002870.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a254dc606f602a0b6b2c6d44bdc469d7.jpg\" _src=\"http://yanxuan.nosdn.127.net/a254dc606f602a0b6b2c6d44bdc469d7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/105f9d8225bb1419ad74f1d086bd6e5d.jpg\" _src=\"http://yanxuan.nosdn.127.net/105f9d8225bb1419ad74f1d086bd6e5d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a44ec7f133fe4287b13826b57c5abffd.jpg\" _src=\"http://yanxuan.nosdn.127.net/a44ec7f133fe4287b13826b57c5abffd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/030796ac206bcd42b67978845b447b12.jpg\" _src=\"http://yanxuan.nosdn.127.net/030796ac206bcd42b67978845b447b12.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9a94af3b8d46322ac6462a5f82956b40.jpg\" _src=\"http://yanxuan.nosdn.127.net/9a94af3b8d46322ac6462a5f82956b40.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6265c235aea2e46abb491893f03f140e.jpg\" _src=\"http://yanxuan.nosdn.127.net/6265c235aea2e46abb491893f03f140e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d8ae1848d01a8838e45a6e617eef1688.jpg\" _src=\"http://yanxuan.nosdn.127.net/d8ae1848d01a8838e45a6e617eef1688.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5e15ff8e4623cd04d7b00f8ef4d8e483.jpg\" _src=\"http://yanxuan.nosdn.127.net/5e15ff8e4623cd04d7b00f8ef4d8e483.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e0a3d1531a63dd4759e0d9f7ac95867c.jpg\" _src=\"http://yanxuan.nosdn.127.net/e0a3d1531a63dd4759e0d9f7ac95867c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f79dd58a774e67c00130d627fa27432f.jpg\" _src=\"http://yanxuan.nosdn.127.net/f79dd58a774e67c00130d627fa27432f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3d21aed141eec8a35473421c944bc11f.jpg\" _src=\"http://yanxuan.nosdn.127.net/3d21aed141eec8a35473421c944bc11f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/84a05603d247ac7844e34303c331cda7.jpg\" _src=\"http://yanxuan.nosdn.127.net/84a05603d247ac7844e34303c331cda7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/04e9e06a31fefbf7367ea1b2f6568f13.jpg\" _src=\"http://yanxuan.nosdn.127.net/04e9e06a31fefbf7367ea1b2f6568f13.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3b7296733795bfaec5e8e6e4912e9a86.jpg\" _src=\"http://yanxuan.nosdn.127.net/3b7296733795bfaec5e8e6e4912e9a86.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f52d17c64c1811724d6da9da99681f35.jpg\" _src=\"http://yanxuan.nosdn.127.net/f52d17c64c1811724d6da9da99681f35.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/57d5404f47a37bf0b493ad221673eaf4.jpg\" _src=\"http://yanxuan.nosdn.127.net/57d5404f47a37bf0b493ad221673eaf4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/51aa72f915854b188685815911cb7142.jpg\" _src=\"http://yanxuan.nosdn.127.net/51aa72f915854b188685815911cb7142.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b2c870921c25b954f0002f7ecd87f65a.jpg\" _src=\"http://yanxuan.nosdn.127.net/b2c870921c25b954f0002f7ecd87f65a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/46652beff7453ea7d7a8cb328e970096.jpg\" _src=\"http://yanxuan.nosdn.127.net/46652beff7453ea7d7a8cb328e970096.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/dca90945bcb58dbe42aae95fb2f13d05.jpg\" _src=\"http://yanxuan.nosdn.127.net/dca90945bcb58dbe42aae95fb2f13d05.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/dcdc8097c0601d33d0d38ddee071eac5.jpg\" _src=\"http://yanxuan.nosdn.127.net/dcdc8097c0601d33d0d38ddee071eac5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3de10373c9564e19227b36bb87b4c54c.jpg\" _src=\"http://yanxuan.nosdn.127.net/3de10373c9564e19227b36bb87b4c54c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/aed6b405c05dfb6ba99d962eb0e5595a.jpg\" _src=\"http://yanxuan.nosdn.127.net/aed6b405c05dfb6ba99d962eb0e5595a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6ee8db965663cb56bf72db129f31538e.jpg\" _src=\"http://yanxuan.nosdn.127.net/6ee8db965663cb56bf72db129f31538e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9772abcdc399359fd3c7a3d085d118f5.jpg\" _src=\"http://yanxuan.nosdn.127.net/9772abcdc399359fd3c7a3d085d118f5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9a02d075328c85343150f8f7bfdf7574.jpg\" _src=\"http://yanxuan.nosdn.127.net/9a02d075328c85343150f8f7bfdf7574.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e5ea9f0e6abaf5cf57507b41c87de88f.jpg\" _src=\"http://yanxuan.nosdn.127.net/e5ea9f0e6abaf5cf57507b41c87de88f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1baa7efe96e3fc9e07525e91441ea046.jpg\" _src=\"http://yanxuan.nosdn.127.net/1baa7efe96e3fc9e07525e91441ea046.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a7375e9cb1bcf2467aba09fbecaf116f.jpg\" _src=\"http://yanxuan.nosdn.127.net/a7375e9cb1bcf2467aba09fbecaf116f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/184eb6d8a1008b7f1e5d748de8a84cff.jpg\" _src=\"http://yanxuan.nosdn.127.net/184eb6d8a1008b7f1e5d748de8a84cff.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/730b15a3d8cce55ea086ea43554894ac.jpg\" _src=\"http://yanxuan.nosdn.127.net/730b15a3d8cce55ea086ea43554894ac.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8094d38182cc2b81e18c1917bf239978.jpg\" _src=\"http://yanxuan.nosdn.127.net/8094d38182cc2b81e18c1917bf239978.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e7942e6a1899d7a5d2948f86abdfbaba.jpg\" _src=\"http://yanxuan.nosdn.127.net/e7942e6a1899d7a5d2948f86abdfbaba.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5420bc44ee4354b3e5871bc17e525cb8.jpg\" _src=\"http://yanxuan.nosdn.127.net/5420bc44ee4354b3e5871bc17e525cb8.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '9', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/2d2011f2901fd6ab732fb866dd115c6f.jpg', 'http://yanxuan.nosdn.127.net/d659d5ce0efaa9baa43abb6e34a1d9fe.png', '999.00', '499', '1101021', '0.00', '限时购', '', '0.00', '0', '0', '0', '1098.90', null, null, null, null);
  679. INSERT INTO `nideshop_goods` VALUES ('1097013', '1015000', '1097013', '原素系列实木五斗柜', '0', '100', '', '造型经典,收纳的得力助手', '<p style=\"white-space: normal;\"><span style=\"color: rgb(255, 0, 0);\"><span style=\"font-weight: 700;\"><span style=\"font-family: 微软雅黑, sans-serif;\"></span></span></span></p><p style=\"white-space: normal;\"><br/></p><p style=\"white-space: normal;\"><span style=\"font-weight: 700;\"><span style=\"font-family: 微软雅黑, sans-serif;\"></span></span></p><p style=\"white-space: normal;\"><span style=\"font-weight: 700;\"><span style=\"font-family: 微软雅黑, sans-serif;\">温馨提示:</span></span><br/></p><p style=\"white-space: normal;\"><span style=\"font-family: 微软雅黑, sans-serif;\">1,由于<span style=\"font-weight: 700;\"><span style=\"color: red;\">安徽黄山市</span></span>和<span style=\"font-weight: 700;\"><span style=\"color: red;\">安徽宣城绩溪县</span></span>,要求所有木制品办理《植物检疫证书》,因此暂停向<span style=\"font-weight: 700;\"><span style=\"color: red;\">安徽黄山市</span></span>和<span style=\"font-weight: 700;\"><span style=\"color: red;\">安徽宣城绩溪县</span></span>运输家具,以上两地客户请注意不要购买,<span style=\"font-weight: 700;\"><span style=\"color: red;\">物流无法派送</span></span>,对此给您带来的不便,我们深表歉意!</span></p><p style=\"white-space: normal;\"><span style=\"font-family: 微软雅黑, sans-serif;\"></span></p><p style=\"white-space: normal;\">2,家具送货上门时请拆开包装,待组装完成后,仔细检查家具是否有磕碰,少件等问题,如有不满请拒收或进行异常签收,我们会保障您的权益。</p><p style=\"white-space: normal;\">3,因个人原因首次送货上门暂不安装,要求二次上门安装的,会额外收取费用,请您与安装服务公司进行协商。</p><p><img src=\"http://yanxuan.nosdn.127.net/dc2db7dbdf8fc64ec212c7787d797584.jpg\" _src=\"http://yanxuan.nosdn.127.net/dc2db7dbdf8fc64ec212c7787d797584.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d41eb0097f889c8a12f4017f773d4abd.jpg\" _src=\"http://yanxuan.nosdn.127.net/d41eb0097f889c8a12f4017f773d4abd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/70f7c00b74aa8b36d910a4da85235b3a.jpg\" _src=\"http://yanxuan.nosdn.127.net/70f7c00b74aa8b36d910a4da85235b3a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7761512bfdfb4a193cb95341aa1ae4a5.jpg\" _src=\"http://yanxuan.nosdn.127.net/7761512bfdfb4a193cb95341aa1ae4a5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b797463f12bb5eb2cbb579edf8bb944a.jpg\" _src=\"http://yanxuan.nosdn.127.net/b797463f12bb5eb2cbb579edf8bb944a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3bdb99e123342fff3ad6d81cfb1e1745.jpg\" _src=\"http://yanxuan.nosdn.127.net/3bdb99e123342fff3ad6d81cfb1e1745.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c9e1ffd4df8a56a4f9faf3f581d947dc.jpg\" _src=\"http://yanxuan.nosdn.127.net/c9e1ffd4df8a56a4f9faf3f581d947dc.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1c6d3bd8ce53ab8a4c1353859b1dde18.jpg\" _src=\"http://yanxuan.nosdn.127.net/1c6d3bd8ce53ab8a4c1353859b1dde18.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/631c3fe003418edb9eb5cec8d28a2561.jpg\" _src=\"http://yanxuan.nosdn.127.net/631c3fe003418edb9eb5cec8d28a2561.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8bf5f009be9301d14944a2b51822e76f.jpg\" _src=\"http://yanxuan.nosdn.127.net/8bf5f009be9301d14944a2b51822e76f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b616b92608df8dd75db3735e1a22b4de.jpg\" _src=\"http://yanxuan.nosdn.127.net/b616b92608df8dd75db3735e1a22b4de.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/727a3c97d8017ab0b2060538568a4966.jpg\" _src=\"http://yanxuan.nosdn.127.net/727a3c97d8017ab0b2060538568a4966.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/798be4a5f6f44c5f5ce7c1971606e906.jpg\" _src=\"http://yanxuan.nosdn.127.net/798be4a5f6f44c5f5ce7c1971606e906.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6c46f4165a866c879ca876b78863da6d.jpg\" _src=\"http://yanxuan.nosdn.127.net/6c46f4165a866c879ca876b78863da6d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/67194ec73a2f07887d884ea9db3479ec.jpg\" _src=\"http://yanxuan.nosdn.127.net/67194ec73a2f07887d884ea9db3479ec.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f6c6db271981d780292897db54dacee7.jpg\" _src=\"http://yanxuan.nosdn.127.net/f6c6db271981d780292897db54dacee7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fee182b0b2baffb54bf98962c998ce72.jpg\" _src=\"http://yanxuan.nosdn.127.net/fee182b0b2baffb54bf98962c998ce72.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/dfdf78844362f1be4c6e1db6b25b3695.jpg\" _src=\"http://yanxuan.nosdn.127.net/dfdf78844362f1be4c6e1db6b25b3695.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/92b7ac1f8a02d49e029563f511461b76.jpg\" _src=\"http://yanxuan.nosdn.127.net/92b7ac1f8a02d49e029563f511461b76.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6da54ea8b7832d761e8cb658953d9f2d.jpg\" _src=\"http://yanxuan.nosdn.127.net/6da54ea8b7832d761e8cb658953d9f2d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/24fb5114468000b0c2612edd1bef33e8.jpg\" _src=\"http://yanxuan.nosdn.127.net/24fb5114468000b0c2612edd1bef33e8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8ec58b360c13e517d7c8c53adcac8775.jpg\" _src=\"http://yanxuan.nosdn.127.net/8ec58b360c13e517d7c8c53adcac8775.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1d4de4815851edf7c6e4e19cc9d41ce5.jpg\" _src=\"http://yanxuan.nosdn.127.net/1d4de4815851edf7c6e4e19cc9d41ce5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8ee1042a9f3b1f9ed45f75159b0c29ca.jpg\" _src=\"http://yanxuan.nosdn.127.net/8ee1042a9f3b1f9ed45f75159b0c29ca.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/afb4fe1697eaf9546f8b767443edf93e.jpg\" _src=\"http://yanxuan.nosdn.127.net/afb4fe1697eaf9546f8b767443edf93e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/72957c944e643192531839bd4e231b2d.jpg\" _src=\"http://yanxuan.nosdn.127.net/72957c944e643192531839bd4e231b2d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4083055f1894143c045bfecc48b29296.jpg\" _src=\"http://yanxuan.nosdn.127.net/4083055f1894143c045bfecc48b29296.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/011638f8b7a1aa127867883b6388ae74.jpg\" _src=\"http://yanxuan.nosdn.127.net/011638f8b7a1aa127867883b6388ae74.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0c77c193d57081d4a8e4525439cb4a71.jpg\" _src=\"http://yanxuan.nosdn.127.net/0c77c193d57081d4a8e4525439cb4a71.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d1915621fa0354b5a9420c6359109a27.jpg\" _src=\"http://yanxuan.nosdn.127.net/d1915621fa0354b5a9420c6359109a27.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e3b3308400d5e211a81e687670810d77.jpg\" _src=\"http://yanxuan.nosdn.127.net/e3b3308400d5e211a81e687670810d77.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0c46c1d1402b9a77b91974c359be56f5.jpg\" _src=\"http://yanxuan.nosdn.127.net/0c46c1d1402b9a77b91974c359be56f5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5e535a12daed7c39c4aa5570fb2625d8.jpg\" _src=\"http://yanxuan.nosdn.127.net/5e535a12daed7c39c4aa5570fb2625d8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/801eca75c0eb42306fd7406b2ae618a2.jpg\" _src=\"http://yanxuan.nosdn.127.net/801eca75c0eb42306fd7406b2ae618a2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f0f886e08c4462409b89bd8fd396330a.jpg\" _src=\"http://yanxuan.nosdn.127.net/f0f886e08c4462409b89bd8fd396330a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6c624ad00f8e30b16f849682b106efe4.jpg\" _src=\"http://yanxuan.nosdn.127.net/6c624ad00f8e30b16f849682b106efe4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b6c97dd61baee5163990bba13da47bfb.jpg\" _src=\"http://yanxuan.nosdn.127.net/b6c97dd61baee5163990bba13da47bfb.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/175b48dd90fdf48ad11fb3adb14eefb8.jpg\" _src=\"http://yanxuan.nosdn.127.net/175b48dd90fdf48ad11fb3adb14eefb8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4f7b484f6f73e2219e3795ea1c703372.jpg\" _src=\"http://yanxuan.nosdn.127.net/4f7b484f6f73e2219e3795ea1c703372.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1298aa4a32821fed86a187772f91e501.jpg\" _src=\"http://yanxuan.nosdn.127.net/1298aa4a32821fed86a187772f91e501.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4b2ad158eaa25dfd41e5b06adbf1b407.jpg\" _src=\"http://yanxuan.nosdn.127.net/4b2ad158eaa25dfd41e5b06adbf1b407.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d89dd00f1caf4d526249adc4181a2e99.jpg\" _src=\"http://yanxuan.nosdn.127.net/d89dd00f1caf4d526249adc4181a2e99.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3298f143fb2b26c3b7bb523a31cb1757.jpg\" _src=\"http://yanxuan.nosdn.127.net/3298f143fb2b26c3b7bb523a31cb1757.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4fd8ecae65b6f2505b264ca213a82440.jpg\" _src=\"http://yanxuan.nosdn.127.net/4fd8ecae65b6f2505b264ca213a82440.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a9837402a142180692b46b889223cca5.jpg\" _src=\"http://yanxuan.nosdn.127.net/a9837402a142180692b46b889223cca5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a34341d9cfc27a5604a510338922f475.jpg\" _src=\"http://yanxuan.nosdn.127.net/a34341d9cfc27a5604a510338922f475.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e0a2b385526d3f2327a3a5b16febec6d.jpg\" _src=\"http://yanxuan.nosdn.127.net/e0a2b385526d3f2327a3a5b16febec6d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ff499476410f1b33271430961c863f8a.jpg\" _src=\"http://yanxuan.nosdn.127.net/ff499476410f1b33271430961c863f8a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e399836357b7e389da29ba89c1881f35.jpg\" _src=\"http://yanxuan.nosdn.127.net/e399836357b7e389da29ba89c1881f35.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/76fe162e6babc3312560093add8fe80a.jpg\" _src=\"http://yanxuan.nosdn.127.net/76fe162e6babc3312560093add8fe80a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7036e822a0e9ad3c58307b688116b0e0.jpg\" _src=\"http://yanxuan.nosdn.127.net/7036e822a0e9ad3c58307b688116b0e0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2b6a7c6e1534b312b73122ae278c3011.jpg\" _src=\"http://yanxuan.nosdn.127.net/2b6a7c6e1534b312b73122ae278c3011.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5a89a02a091760d926cb76fdb23e5f4c.jpg\" _src=\"http://yanxuan.nosdn.127.net/5a89a02a091760d926cb76fdb23e5f4c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7fb7c5bad6e1e4d15db7a8f0d2b85968.jpg\" _src=\"http://yanxuan.nosdn.127.net/7fb7c5bad6e1e4d15db7a8f0d2b85968.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f5b686aafaa6c919b5e73e9ab7f1c3e0.jpg\" _src=\"http://yanxuan.nosdn.127.net/f5b686aafaa6c919b5e73e9ab7f1c3e0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/23e4f3e92053652b14cc838c51cc6aa6.jpg\" _src=\"http://yanxuan.nosdn.127.net/23e4f3e92053652b14cc838c51cc6aa6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5114b8851071720dfa1cad81bd1f4e30.jpg\" _src=\"http://yanxuan.nosdn.127.net/5114b8851071720dfa1cad81bd1f4e30.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5dd7d1a57fd99b7b13afb02ae12f21ad.jpg\" _src=\"http://yanxuan.nosdn.127.net/5dd7d1a57fd99b7b13afb02ae12f21ad.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/eea52eb6087118139f01a612346a7afa.jpg\" _src=\"http://yanxuan.nosdn.127.net/eea52eb6087118139f01a612346a7afa.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b61875f598deca70970aa7f95b3f682e.jpg\" _src=\"http://yanxuan.nosdn.127.net/b61875f598deca70970aa7f95b3f682e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6d9c6c13c1e4203b1bd00879f65b9117.jpg\" _src=\"http://yanxuan.nosdn.127.net/6d9c6c13c1e4203b1bd00879f65b9117.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ef19f548f29f1025b4c99ed1bda93bb6.jpg\" _src=\"http://yanxuan.nosdn.127.net/ef19f548f29f1025b4c99ed1bda93bb6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/62b153529c6690d937964f49f89c7efb.jpg\" _src=\"http://yanxuan.nosdn.127.net/62b153529c6690d937964f49f89c7efb.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '10', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/b5a76d361f0c2fd353a49c25ba2c5497.jpg', 'http://yanxuan.nosdn.127.net/2fa8cb066a356f47a3f0814e99fee7f2.png', '2699.00', '454', '1101022', '0.00', '限时购', '', '0.00', '0', '0', '0', '2968.90', null, null, null, null);
  680. INSERT INTO `nideshop_goods` VALUES ('1097014', '1015000', '1097014', '原素系列实木多抽柜', '0', '100', '', '造型简约,拥有极高实用性', '<p style=\"white-space: normal;\"><span style=\"color: rgb(255, 0, 0);\"><span style=\"font-weight: 700;\"><span style=\"font-family: 微软雅黑, sans-serif;\"></span></span></span></p><p style=\"white-space: normal;\"><br/></p><p style=\"white-space: normal;\"><span style=\"font-weight: 700;\"><span style=\"font-family: 微软雅黑, sans-serif;\"></span></span></p><p style=\"white-space: normal;\"><span style=\"font-weight: 700;\"><span style=\"font-family: 微软雅黑, sans-serif;\">温馨提示:</span></span><br/></p><p style=\"white-space: normal;\"><span style=\"font-family: 微软雅黑, sans-serif;\">1,由于<span style=\"font-weight: 700;\"><span style=\"color: red;\">安徽黄山市</span></span>和<span style=\"font-weight: 700;\"><span style=\"color: red;\">安徽宣城绩溪县</span></span>,要求所有木制品办理《植物检疫证书》,因此暂停向<span style=\"font-weight: 700;\"><span style=\"color: red;\">安徽黄山市</span></span>和<span style=\"font-weight: 700;\"><span style=\"color: red;\">安徽宣城绩溪县</span></span>运输家具,以上两地客户请注意不要购买,<span style=\"font-weight: 700;\"><span style=\"color: red;\">物流无法派送</span></span>,对此给您带来的不便,我们深表歉意!</span></p><p style=\"white-space: normal;\"><span style=\"font-family: 微软雅黑, sans-serif;\"></span></p><p style=\"white-space: normal;\">2,家具送货上门时请拆开包装,待组装完成后,仔细检查家具是否有磕碰,少件等问题,如有不满请拒收或进行异常签收,我们会保障您的权益。</p><p style=\"white-space: normal;\">3,因个人原因首次送货上门暂不安装,要求二次上门安装的,会额外收取费用,请您与安装服务公司进行协商。</p><p><img src=\"http://yanxuan.nosdn.127.net/ef99349c5eb83e54b478eec3fa65a310.jpg\" _src=\"http://yanxuan.nosdn.127.net/ef99349c5eb83e54b478eec3fa65a310.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/762eb77e92abe416a06faad8ddb35583.jpg\" _src=\"http://yanxuan.nosdn.127.net/762eb77e92abe416a06faad8ddb35583.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6a3073565d50e6782bf0d7599156cc8d.jpg\" _src=\"http://yanxuan.nosdn.127.net/6a3073565d50e6782bf0d7599156cc8d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8222d9dc821459c8ad41aa7de68d558f.jpg\" _src=\"http://yanxuan.nosdn.127.net/8222d9dc821459c8ad41aa7de68d558f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1259063900c9b116aecfccd874ddcfeb.jpg\" _src=\"http://yanxuan.nosdn.127.net/1259063900c9b116aecfccd874ddcfeb.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8529d9e746ac3a436d70e85f9161324f.jpg\" _src=\"http://yanxuan.nosdn.127.net/8529d9e746ac3a436d70e85f9161324f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3527b3c73c93a31387391c854852abcf.jpg\" _src=\"http://yanxuan.nosdn.127.net/3527b3c73c93a31387391c854852abcf.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/660afcd62a4cff3f3718d5787ffcab87.jpg\" _src=\"http://yanxuan.nosdn.127.net/660afcd62a4cff3f3718d5787ffcab87.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d8afbad6710682c1cf65942d7277357d.jpg\" _src=\"http://yanxuan.nosdn.127.net/d8afbad6710682c1cf65942d7277357d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/633e43127b97ff9013e878c7e6ff582a.jpg\" _src=\"http://yanxuan.nosdn.127.net/633e43127b97ff9013e878c7e6ff582a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e69b288ad072eafa78d3b79ddadb50d1.jpg\" _src=\"http://yanxuan.nosdn.127.net/e69b288ad072eafa78d3b79ddadb50d1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6bd1b14140f2d45de97af450b2d538e4.jpg\" _src=\"http://yanxuan.nosdn.127.net/6bd1b14140f2d45de97af450b2d538e4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3f248ed3aa76314be7e6ad9fd2e5ff05.jpg\" _src=\"http://yanxuan.nosdn.127.net/3f248ed3aa76314be7e6ad9fd2e5ff05.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f56e66a67f2a67383519a5a5c3d15aca.jpg\" _src=\"http://yanxuan.nosdn.127.net/f56e66a67f2a67383519a5a5c3d15aca.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e26670843fc8c1ecb68772b1c174f776.jpg\" _src=\"http://yanxuan.nosdn.127.net/e26670843fc8c1ecb68772b1c174f776.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7d985448edf5e42b8f2fbf398e7db73a.jpg\" _src=\"http://yanxuan.nosdn.127.net/7d985448edf5e42b8f2fbf398e7db73a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7b4a4e6074cec4b33e277cd8c25e2a5e.jpg\" _src=\"http://yanxuan.nosdn.127.net/7b4a4e6074cec4b33e277cd8c25e2a5e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d509990b252361e8130edbf9159c2174.jpg\" _src=\"http://yanxuan.nosdn.127.net/d509990b252361e8130edbf9159c2174.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4f92e1d8429907261fedee84659b8950.jpg\" _src=\"http://yanxuan.nosdn.127.net/4f92e1d8429907261fedee84659b8950.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d56545b368cc333ec7c321a6143d7e6a.jpg\" _src=\"http://yanxuan.nosdn.127.net/d56545b368cc333ec7c321a6143d7e6a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ce66819b53a451883045d322742652c0.jpg\" _src=\"http://yanxuan.nosdn.127.net/ce66819b53a451883045d322742652c0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/963c3642c771fc61999ec18fb7d7eabc.jpg\" _src=\"http://yanxuan.nosdn.127.net/963c3642c771fc61999ec18fb7d7eabc.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cf2e680711049910648b4530d96e0a03.jpg\" _src=\"http://yanxuan.nosdn.127.net/cf2e680711049910648b4530d96e0a03.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f3ff55ea5e7beb3b0314d1e1836dc0ff.jpg\" _src=\"http://yanxuan.nosdn.127.net/f3ff55ea5e7beb3b0314d1e1836dc0ff.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5138e0a83de877a28cd208f30ff9977e.jpg\" _src=\"http://yanxuan.nosdn.127.net/5138e0a83de877a28cd208f30ff9977e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f5465e86f2fd8887d2fdc8a780f42411.jpg\" _src=\"http://yanxuan.nosdn.127.net/f5465e86f2fd8887d2fdc8a780f42411.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7de1f14338addd00eb6741ce73ea155a.jpg\" _src=\"http://yanxuan.nosdn.127.net/7de1f14338addd00eb6741ce73ea155a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/920417b3dd55449942d561391f53a1bd.jpg\" _src=\"http://yanxuan.nosdn.127.net/920417b3dd55449942d561391f53a1bd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/48775e406649e90fa88da650d2840d13.jpg\" _src=\"http://yanxuan.nosdn.127.net/48775e406649e90fa88da650d2840d13.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/860f0ec1334472f3afb6a2ceffb96f3a.jpg\" _src=\"http://yanxuan.nosdn.127.net/860f0ec1334472f3afb6a2ceffb96f3a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e6c0733584a6a6785124c6e11331f0d1.jpg\" _src=\"http://yanxuan.nosdn.127.net/e6c0733584a6a6785124c6e11331f0d1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cdec357b9997a5d4fdf46e2168927198.jpg\" _src=\"http://yanxuan.nosdn.127.net/cdec357b9997a5d4fdf46e2168927198.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3181ed09c8c96a7c06f3c008b4f39185.jpg\" _src=\"http://yanxuan.nosdn.127.net/3181ed09c8c96a7c06f3c008b4f39185.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6b87b67b653e03dc4eeaead46fa6ee94.jpg\" _src=\"http://yanxuan.nosdn.127.net/6b87b67b653e03dc4eeaead46fa6ee94.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4313e76ac21af69e217f0c01da9236ac.jpg\" _src=\"http://yanxuan.nosdn.127.net/4313e76ac21af69e217f0c01da9236ac.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/40668f39aecde7d82fed6b1aa0aae167.jpg\" _src=\"http://yanxuan.nosdn.127.net/40668f39aecde7d82fed6b1aa0aae167.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/859901f9e06ca2fe1f3452d3d0bdfb05.jpg\" _src=\"http://yanxuan.nosdn.127.net/859901f9e06ca2fe1f3452d3d0bdfb05.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/705f06f1574da8e0d3426f7ddfe0c94f.jpg\" _src=\"http://yanxuan.nosdn.127.net/705f06f1574da8e0d3426f7ddfe0c94f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ac96aaabf1ef2eabb93c0b2e37ac82bf.jpg\" _src=\"http://yanxuan.nosdn.127.net/ac96aaabf1ef2eabb93c0b2e37ac82bf.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4343c28a9dda3e5909817ef7ec10b772.jpg\" _src=\"http://yanxuan.nosdn.127.net/4343c28a9dda3e5909817ef7ec10b772.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2013629b638725ec1f267bac2435c20b.jpg\" _src=\"http://yanxuan.nosdn.127.net/2013629b638725ec1f267bac2435c20b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c55424ee7156a077a475baaa3fa65b96.jpg\" _src=\"http://yanxuan.nosdn.127.net/c55424ee7156a077a475baaa3fa65b96.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/dcece03933901f9ac6c4f9d9e3447ec0.jpg\" _src=\"http://yanxuan.nosdn.127.net/dcece03933901f9ac6c4f9d9e3447ec0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/417d92b9326be44d14f1b8993079ebdb.jpg\" _src=\"http://yanxuan.nosdn.127.net/417d92b9326be44d14f1b8993079ebdb.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2fb0108eae01559802740c0d01cae5bc.jpg\" _src=\"http://yanxuan.nosdn.127.net/2fb0108eae01559802740c0d01cae5bc.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3c929794b0d347bf5403d234b37db5ca.jpg\" _src=\"http://yanxuan.nosdn.127.net/3c929794b0d347bf5403d234b37db5ca.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4aeb21ac1546937ae3945e4e11442ee8.jpg\" _src=\"http://yanxuan.nosdn.127.net/4aeb21ac1546937ae3945e4e11442ee8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/19b637e0dfc1a91aa2c399d3f38022c7.jpg\" _src=\"http://yanxuan.nosdn.127.net/19b637e0dfc1a91aa2c399d3f38022c7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3ece55d9b9f686a7ccfa819047929bc3.jpg\" _src=\"http://yanxuan.nosdn.127.net/3ece55d9b9f686a7ccfa819047929bc3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/261884870cb1b96467a44274d3e14cd7.jpg\" _src=\"http://yanxuan.nosdn.127.net/261884870cb1b96467a44274d3e14cd7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ab839173c1e5ddc477f09fe141bcad05.jpg\" _src=\"http://yanxuan.nosdn.127.net/ab839173c1e5ddc477f09fe141bcad05.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d1686ba353fc15365a8c9ae8851e59ad.jpg\" _src=\"http://yanxuan.nosdn.127.net/d1686ba353fc15365a8c9ae8851e59ad.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fbb7b58343d252f6e390e6c691fb01b0.jpg\" _src=\"http://yanxuan.nosdn.127.net/fbb7b58343d252f6e390e6c691fb01b0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e3687f04750278c839cbda303dc66665.jpg\" _src=\"http://yanxuan.nosdn.127.net/e3687f04750278c839cbda303dc66665.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/55e96d7f34c87fcb91ca8e6bd9d29f0c.jpg\" _src=\"http://yanxuan.nosdn.127.net/55e96d7f34c87fcb91ca8e6bd9d29f0c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a184b659e8eb6044a3abb0dc268d6c75.jpg\" _src=\"http://yanxuan.nosdn.127.net/a184b659e8eb6044a3abb0dc268d6c75.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/db96bea8d127274ea0b644b356189065.jpg\" _src=\"http://yanxuan.nosdn.127.net/db96bea8d127274ea0b644b356189065.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4f1a64b6e6e7cd4402da98eaa7df1078.jpg\" _src=\"http://yanxuan.nosdn.127.net/4f1a64b6e6e7cd4402da98eaa7df1078.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4f110f01c2296fb8a5afb6683d4fa709.jpg\" _src=\"http://yanxuan.nosdn.127.net/4f110f01c2296fb8a5afb6683d4fa709.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/80d37527aa5ca88128b83d1a001c4acb.jpg\" _src=\"http://yanxuan.nosdn.127.net/80d37527aa5ca88128b83d1a001c4acb.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/040d932689fa4d9d50f605861e577c66.jpg\" _src=\"http://yanxuan.nosdn.127.net/040d932689fa4d9d50f605861e577c66.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8fc0b276bc30d9b97c6a3247ea387ffe.jpg\" _src=\"http://yanxuan.nosdn.127.net/8fc0b276bc30d9b97c6a3247ea387ffe.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/045810b852d55f7329116c401a31b189.jpg\" _src=\"http://yanxuan.nosdn.127.net/045810b852d55f7329116c401a31b189.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/72be8acaecda6612ddcd72bc8c6105a3.jpg\" _src=\"http://yanxuan.nosdn.127.net/72be8acaecda6612ddcd72bc8c6105a3.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '11', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/39930be3b58671c3f5e0d6c1c1ac9b1f.jpg', 'http://yanxuan.nosdn.127.net/308184b7b1965470d58b5c92e9bcc4b0.png', '4199.00', '150', '1101023', '0.00', '限时购', '', '0.00', '0', '0', '0', '4618.90', null, null, null, null);
  681. INSERT INTO `nideshop_goods` VALUES ('1097016', '1015000', '1097016', '原素系列1.8米实木电视柜', '0', '100', '', '经典木纹,结实不易蛀', '<p style=\"white-space: normal;\"><span style=\"color: rgb(255, 0, 0);\"><span style=\"font-weight: 700;\"><span style=\"font-family: 微软雅黑, sans-serif;\"></span></span></span></p><p style=\"white-space: normal;\"><br/></p><p style=\"white-space: normal;\"><span style=\"font-weight: 700;\"><span style=\"font-family: 微软雅黑, sans-serif;\"></span></span></p><p style=\"white-space: normal;\"><span style=\"font-weight: 700;\"><span style=\"font-family: 微软雅黑, sans-serif;\">温馨提示:</span></span><br/></p><p style=\"white-space: normal;\"><span style=\"font-family: 微软雅黑, sans-serif;\">1,由于<span style=\"font-weight: 700;\"><span style=\"color: red;\">安徽黄山市</span></span>和<span style=\"font-weight: 700;\"><span style=\"color: red;\">安徽宣城绩溪县</span></span>,要求所有木制品办理《植物检疫证书》,因此暂停向<span style=\"font-weight: 700;\"><span style=\"color: red;\">安徽黄山市</span></span>和<span style=\"font-weight: 700;\"><span style=\"color: red;\">安徽宣城绩溪县</span></span>运输家具,以上两地客户请注意不要购买,<span style=\"font-weight: 700;\"><span style=\"color: red;\">物流无法派送</span></span>,对此给您带来的不便,我们深表歉意!</span></p><p style=\"white-space: normal;\"><span style=\"font-family: 微软雅黑, sans-serif;\"></span></p><p style=\"white-space: normal;\">2,家具送货上门时请拆开包装,待组装完成后,仔细检查家具是否有磕碰,少件等问题,如有不满请拒收或进行异常签收,我们会保障您的权益。</p><p style=\"white-space: normal;\">3,因个人原因首次送货上门暂不安装,要求二次上门安装的,会额外收取费用,请您与安装服务公司进行协商。</p><p><img src=\"http://yanxuan.nosdn.127.net/44b6e7dc5b6c81d2ab52965d4277069f.jpg\" _src=\"http://yanxuan.nosdn.127.net/44b6e7dc5b6c81d2ab52965d4277069f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bcca6fe2d34bf2f9deb0648f71520f30.jpg\" _src=\"http://yanxuan.nosdn.127.net/bcca6fe2d34bf2f9deb0648f71520f30.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/aabddf6f4c7a53e3eba126e4b276fff4.jpg\" _src=\"http://yanxuan.nosdn.127.net/aabddf6f4c7a53e3eba126e4b276fff4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4a3cc2cb018b860f64f4751455df03db.jpg\" _src=\"http://yanxuan.nosdn.127.net/4a3cc2cb018b860f64f4751455df03db.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a6c930edc71fb258e502960a17a49d60.jpg\" _src=\"http://yanxuan.nosdn.127.net/a6c930edc71fb258e502960a17a49d60.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/26937caee8633848c0e43ecf64159e1e.jpg\" _src=\"http://yanxuan.nosdn.127.net/26937caee8633848c0e43ecf64159e1e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7ce3eefbfae7df5c2ece6f9d5b1d5ddc.jpg\" _src=\"http://yanxuan.nosdn.127.net/7ce3eefbfae7df5c2ece6f9d5b1d5ddc.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d97ae87e7f5677530ce0e23445fb6c47.jpg\" _src=\"http://yanxuan.nosdn.127.net/d97ae87e7f5677530ce0e23445fb6c47.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4a688f1c4296e3df7b3125043e6b287b.jpg\" _src=\"http://yanxuan.nosdn.127.net/4a688f1c4296e3df7b3125043e6b287b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1a22a64c9fd560a37c7368cb940cdf39.jpg\" _src=\"http://yanxuan.nosdn.127.net/1a22a64c9fd560a37c7368cb940cdf39.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a37794473dc3d10bb87b1511cfb157e0.jpg\" _src=\"http://yanxuan.nosdn.127.net/a37794473dc3d10bb87b1511cfb157e0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3f8c08a400891e0d727cce3e02f2a9cc.jpg\" _src=\"http://yanxuan.nosdn.127.net/3f8c08a400891e0d727cce3e02f2a9cc.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3a9b95b81dc87ade2dae8455dfa70f71.jpg\" _src=\"http://yanxuan.nosdn.127.net/3a9b95b81dc87ade2dae8455dfa70f71.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a318f83f7e741a57d2c371add04bdcb7.jpg\" _src=\"http://yanxuan.nosdn.127.net/a318f83f7e741a57d2c371add04bdcb7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0bf6a1072b4211ebe786d02f79bf9f9f.jpg\" _src=\"http://yanxuan.nosdn.127.net/0bf6a1072b4211ebe786d02f79bf9f9f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6366e7ee9e1d6f870d9ec224be204393.jpg\" _src=\"http://yanxuan.nosdn.127.net/6366e7ee9e1d6f870d9ec224be204393.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/92a8acf9892bb8be48d05b00f2b06287.jpg\" _src=\"http://yanxuan.nosdn.127.net/92a8acf9892bb8be48d05b00f2b06287.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0ac784566dbca7db0397d65511a415bd.jpg\" _src=\"http://yanxuan.nosdn.127.net/0ac784566dbca7db0397d65511a415bd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a63f8fc1b71bf2f2fc058be514f9bb0b.jpg\" _src=\"http://yanxuan.nosdn.127.net/a63f8fc1b71bf2f2fc058be514f9bb0b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b304440c45568fdf2a884bbd7c1d862f.jpg\" _src=\"http://yanxuan.nosdn.127.net/b304440c45568fdf2a884bbd7c1d862f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/00225ba12a7b1875a3552124638b3fb5.jpg\" _src=\"http://yanxuan.nosdn.127.net/00225ba12a7b1875a3552124638b3fb5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9e3d391896a17264363649dbd2d230ac.jpg\" _src=\"http://yanxuan.nosdn.127.net/9e3d391896a17264363649dbd2d230ac.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e85fff39a870f0065dcaedd7090295d4.jpg\" _src=\"http://yanxuan.nosdn.127.net/e85fff39a870f0065dcaedd7090295d4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/76c2eb79d09058f144770a3e3ed454da.jpg\" _src=\"http://yanxuan.nosdn.127.net/76c2eb79d09058f144770a3e3ed454da.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f6984afaebcdea88c71859c6ab5c81a2.jpg\" _src=\"http://yanxuan.nosdn.127.net/f6984afaebcdea88c71859c6ab5c81a2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/da21ae14501b6623d526c1833bf3dc1f.jpg\" _src=\"http://yanxuan.nosdn.127.net/da21ae14501b6623d526c1833bf3dc1f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9b5c29fdc5661e7eebe1ac488606bb8b.jpg\" _src=\"http://yanxuan.nosdn.127.net/9b5c29fdc5661e7eebe1ac488606bb8b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/17be6bb120caaa67e01f4ff2f4c7bc78.jpg\" _src=\"http://yanxuan.nosdn.127.net/17be6bb120caaa67e01f4ff2f4c7bc78.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/538e87bdf30f230b75903a730f94e620.jpg\" _src=\"http://yanxuan.nosdn.127.net/538e87bdf30f230b75903a730f94e620.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/126ec76486adf5fc1dc0230034726e48.jpg\" _src=\"http://yanxuan.nosdn.127.net/126ec76486adf5fc1dc0230034726e48.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/95da7cddda7a7ebf4f36fc08b06832f1.jpg\" _src=\"http://yanxuan.nosdn.127.net/95da7cddda7a7ebf4f36fc08b06832f1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9fb8f3ce1ab9cd3b2e4fcd53e696a944.jpg\" _src=\"http://yanxuan.nosdn.127.net/9fb8f3ce1ab9cd3b2e4fcd53e696a944.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/22b0e01eacf86ab7823feea43bd4d0be.jpg\" _src=\"http://yanxuan.nosdn.127.net/22b0e01eacf86ab7823feea43bd4d0be.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/13972e19bcf8b0f41a68d4c274647e53.jpg\" _src=\"http://yanxuan.nosdn.127.net/13972e19bcf8b0f41a68d4c274647e53.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f5e8268da72bb8ff8015a7b01bda6a8a.jpg\" _src=\"http://yanxuan.nosdn.127.net/f5e8268da72bb8ff8015a7b01bda6a8a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f7a1aa60d75a80af1e68a744bd3e123e.jpg\" _src=\"http://yanxuan.nosdn.127.net/f7a1aa60d75a80af1e68a744bd3e123e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/56a09cc322e51db98f651ea83a7ae8aa.jpg\" _src=\"http://yanxuan.nosdn.127.net/56a09cc322e51db98f651ea83a7ae8aa.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d2c7ac5c5bd979b1954f7d333f2c1ee1.jpg\" _src=\"http://yanxuan.nosdn.127.net/d2c7ac5c5bd979b1954f7d333f2c1ee1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/45bf007e71b1e95b6b3c6c6d28c0b8be.jpg\" _src=\"http://yanxuan.nosdn.127.net/45bf007e71b1e95b6b3c6c6d28c0b8be.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/313454239e6634684a0d0cc0fe3d1e32.jpg\" _src=\"http://yanxuan.nosdn.127.net/313454239e6634684a0d0cc0fe3d1e32.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a00dcf4350a1fd53bbad22201fb18c86.jpg\" _src=\"http://yanxuan.nosdn.127.net/a00dcf4350a1fd53bbad22201fb18c86.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8f3cef060508ea355880f0e20499ce2b.jpg\" _src=\"http://yanxuan.nosdn.127.net/8f3cef060508ea355880f0e20499ce2b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/36d01093773b7f39bf5101fdc35b2213.jpg\" _src=\"http://yanxuan.nosdn.127.net/36d01093773b7f39bf5101fdc35b2213.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c199ec2930f47473a99b15f4391c18a9.jpg\" _src=\"http://yanxuan.nosdn.127.net/c199ec2930f47473a99b15f4391c18a9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/63c1381ec4738b5d4dc1acac15422e92.jpg\" _src=\"http://yanxuan.nosdn.127.net/63c1381ec4738b5d4dc1acac15422e92.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/23c89550b230dee4a20921f4f0483952.jpg\" _src=\"http://yanxuan.nosdn.127.net/23c89550b230dee4a20921f4f0483952.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4de06540256e87372f470b3687dafdf4.jpg\" _src=\"http://yanxuan.nosdn.127.net/4de06540256e87372f470b3687dafdf4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d54b68e9dafd399cee92e7ca05549380.jpg\" _src=\"http://yanxuan.nosdn.127.net/d54b68e9dafd399cee92e7ca05549380.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/dcfc93486d1c038857da4fd4520071e4.jpg\" _src=\"http://yanxuan.nosdn.127.net/dcfc93486d1c038857da4fd4520071e4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cbb98e1c909d9dee01113698b0443c44.jpg\" _src=\"http://yanxuan.nosdn.127.net/cbb98e1c909d9dee01113698b0443c44.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1cf5e7dad6e7f852e2e62ff9ace0cd11.jpg\" _src=\"http://yanxuan.nosdn.127.net/1cf5e7dad6e7f852e2e62ff9ace0cd11.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/51d6247fe63d021e1c7d14eb4a88fb68.jpg\" _src=\"http://yanxuan.nosdn.127.net/51d6247fe63d021e1c7d14eb4a88fb68.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c7813e01f85c84e337b0f4166684f4bf.jpg\" _src=\"http://yanxuan.nosdn.127.net/c7813e01f85c84e337b0f4166684f4bf.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8b74ef03be759d25e51db6fd0f7af132.jpg\" _src=\"http://yanxuan.nosdn.127.net/8b74ef03be759d25e51db6fd0f7af132.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e0d827799c22c17972e0efbf789ae006.jpg\" _src=\"http://yanxuan.nosdn.127.net/e0d827799c22c17972e0efbf789ae006.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b6966951b50edc83e6921fcdb6555568.jpg\" _src=\"http://yanxuan.nosdn.127.net/b6966951b50edc83e6921fcdb6555568.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/58be70e959a829f8ba297dcfc123ddc2.jpg\" _src=\"http://yanxuan.nosdn.127.net/58be70e959a829f8ba297dcfc123ddc2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/300f3edcb171aa84c859812b5753ffdd.jpg\" _src=\"http://yanxuan.nosdn.127.net/300f3edcb171aa84c859812b5753ffdd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/905332c0591fc457b45fbb20359d5438.jpg\" _src=\"http://yanxuan.nosdn.127.net/905332c0591fc457b45fbb20359d5438.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6060be7ea7012cbfbaf10d052d086c7b.jpg\" _src=\"http://yanxuan.nosdn.127.net/6060be7ea7012cbfbaf10d052d086c7b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/051e2c5ee2245183e3e860c406de857f.jpg\" _src=\"http://yanxuan.nosdn.127.net/051e2c5ee2245183e3e860c406de857f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/36c381f0d73d2e1ee47ce1e631bf25ef.jpg\" _src=\"http://yanxuan.nosdn.127.net/36c381f0d73d2e1ee47ce1e631bf25ef.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5993aa4449716cca44eb3b985fe7c083.jpg\" _src=\"http://yanxuan.nosdn.127.net/5993aa4449716cca44eb3b985fe7c083.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '6', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/e3ac2f6017945ac341a3df5b63fde1f7.jpg', 'http://yanxuan.nosdn.127.net/a7e6df722b82ad1b0158adcbdcf30df9.png', '2799.00', '452', '1101026', '0.00', '限时购', '', '0.00', '0', '0', '0', '3078.90', null, null, null, null);
  682. INSERT INTO `nideshop_goods` VALUES ('1097017', '1015000', '1097017', '原素系列柜式实木茶几', '0', '100', '', '山形木纹,经典优雅', '<p><strong><span style=\";font-family:&#39;微软雅黑&#39;,sans-serif\"></span></strong></p><p style=\"white-space: normal;\"><span style=\"color: rgb(255, 0, 0);\"><span style=\"font-weight: 700;\"><span style=\"font-family: 微软雅黑, sans-serif;\"></span></span></span></p><p style=\"white-space: normal;\"><br/></p><p style=\"white-space: normal;\"><span style=\"font-weight: 700;\"><span style=\"font-family: 微软雅黑, sans-serif;\"></span></span></p><p style=\"white-space: normal;\"><span style=\"font-weight: 700;\"><span style=\"font-family: 微软雅黑, sans-serif;\">温馨提示:</span></span><br/></p><p style=\"white-space: normal;\"><span style=\"font-family: 微软雅黑, sans-serif;\">1,由于<span style=\"font-weight: 700;\"><span style=\"color: red;\">安徽黄山市</span></span>和<span style=\"font-weight: 700;\"><span style=\"color: red;\">安徽宣城绩溪县</span></span>,要求所有木制品办理《植物检疫证书》,因此暂停向<span style=\"font-weight: 700;\"><span style=\"color: red;\">安徽黄山市</span></span>和<span style=\"font-weight: 700;\"><span style=\"color: red;\">安徽宣城绩溪县</span></span>运输家具,以上两地客户请注意不要购买,<span style=\"font-weight: 700;\"><span style=\"color: red;\">物流无法派送</span></span>,对此给您带来的不便,我们深表歉意!</span></p><p style=\"white-space: normal;\"><span style=\"font-family: 微软雅黑, sans-serif;\"></span></p><p style=\"white-space: normal;\">2,家具送货上门时请拆开包装,待组装完成后,仔细检查家具是否有磕碰,少件等问题,如有不满请拒收或进行异常签收,我们会保障您的权益。</p><p style=\"white-space: normal;\">3,因个人原因首次送货上门暂不安装,要求二次上门安装的,会额外收取费用,请您与安装服务公司进行协商。</p><p><img src=\"http://yanxuan.nosdn.127.net/841d0245c3c293c098a145782488282f.jpg\" _src=\"http://yanxuan.nosdn.127.net/841d0245c3c293c098a145782488282f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/002898cb089ad88e1abc63ddcf643b23.jpg\" _src=\"http://yanxuan.nosdn.127.net/002898cb089ad88e1abc63ddcf643b23.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ad23b01cae88f09dd983516207ce3861.jpg\" _src=\"http://yanxuan.nosdn.127.net/ad23b01cae88f09dd983516207ce3861.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d0d8e8dd42109e803133242b877fb32b.jpg\" _src=\"http://yanxuan.nosdn.127.net/d0d8e8dd42109e803133242b877fb32b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/aa23960ab3667c12f4e4ea859d2367cf.jpg\" _src=\"http://yanxuan.nosdn.127.net/aa23960ab3667c12f4e4ea859d2367cf.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/17e0d578f0ebe4382b82f7b611963f8c.jpg\" _src=\"http://yanxuan.nosdn.127.net/17e0d578f0ebe4382b82f7b611963f8c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4444dc7a8c6a0ef8ea34a24036ebf80a.jpg\" _src=\"http://yanxuan.nosdn.127.net/4444dc7a8c6a0ef8ea34a24036ebf80a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4bad5cb0f13c145ba19a0b9bd6ce01b6.jpg\" _src=\"http://yanxuan.nosdn.127.net/4bad5cb0f13c145ba19a0b9bd6ce01b6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e0be64c0c6a38b8bd18eeaf791a0ebd4.jpg\" _src=\"http://yanxuan.nosdn.127.net/e0be64c0c6a38b8bd18eeaf791a0ebd4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c77bd07085abe7f2091ba7beefd680e3.jpg\" _src=\"http://yanxuan.nosdn.127.net/c77bd07085abe7f2091ba7beefd680e3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/54259cd72a15918cddf08bda2a947f2a.jpg\" _src=\"http://yanxuan.nosdn.127.net/54259cd72a15918cddf08bda2a947f2a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a55cba8c61795a33962c3c09944583c0.jpg\" _src=\"http://yanxuan.nosdn.127.net/a55cba8c61795a33962c3c09944583c0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2b44ef9f2febea836a4304a8c1668732.jpg\" _src=\"http://yanxuan.nosdn.127.net/2b44ef9f2febea836a4304a8c1668732.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1c9438b10357f0104cc34fcf34e94385.jpg\" _src=\"http://yanxuan.nosdn.127.net/1c9438b10357f0104cc34fcf34e94385.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a3cb8c4054046e9d3b29b4137d3ac12b.jpg\" _src=\"http://yanxuan.nosdn.127.net/a3cb8c4054046e9d3b29b4137d3ac12b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4a2fcaba246296ecbe02efd78ce96f2e.jpg\" _src=\"http://yanxuan.nosdn.127.net/4a2fcaba246296ecbe02efd78ce96f2e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/806394a28ca3ae2c2764915d7782474f.jpg\" _src=\"http://yanxuan.nosdn.127.net/806394a28ca3ae2c2764915d7782474f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/62afa297c045f34be45f70ca38cd9fa8.jpg\" _src=\"http://yanxuan.nosdn.127.net/62afa297c045f34be45f70ca38cd9fa8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/36d8d1e21236aaab71a6577885211094.jpg\" _src=\"http://yanxuan.nosdn.127.net/36d8d1e21236aaab71a6577885211094.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b07d3aa8633e3868ce21758511a29a2b.jpg\" _src=\"http://yanxuan.nosdn.127.net/b07d3aa8633e3868ce21758511a29a2b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/34d2c9575927e78edc22c5743c95e3af.jpg\" _src=\"http://yanxuan.nosdn.127.net/34d2c9575927e78edc22c5743c95e3af.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/07ae428baefa5af751d9b8bd2d69b2ab.jpg\" _src=\"http://yanxuan.nosdn.127.net/07ae428baefa5af751d9b8bd2d69b2ab.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/628e973a1596886f63c7d615be90b235.jpg\" _src=\"http://yanxuan.nosdn.127.net/628e973a1596886f63c7d615be90b235.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8d6b0f8948523c65945bb61d36b90ed0.jpg\" _src=\"http://yanxuan.nosdn.127.net/8d6b0f8948523c65945bb61d36b90ed0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2734227815c9afaa127e962ef7383688.jpg\" _src=\"http://yanxuan.nosdn.127.net/2734227815c9afaa127e962ef7383688.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d4120d4a10d0af37a6c21a93a90b313a.jpg\" _src=\"http://yanxuan.nosdn.127.net/d4120d4a10d0af37a6c21a93a90b313a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9e4493cf8485e9f57d843db48f972ffc.jpg\" _src=\"http://yanxuan.nosdn.127.net/9e4493cf8485e9f57d843db48f972ffc.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ef76a92c0cf8546f509815e030eab5d6.jpg\" _src=\"http://yanxuan.nosdn.127.net/ef76a92c0cf8546f509815e030eab5d6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ab2fe9eb2bdf1a14228b30bbc48b51cf.jpg\" _src=\"http://yanxuan.nosdn.127.net/ab2fe9eb2bdf1a14228b30bbc48b51cf.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e592f842000465d9ee258796213463d1.jpg\" _src=\"http://yanxuan.nosdn.127.net/e592f842000465d9ee258796213463d1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2b44f0c61c5064c73159283fa083bfd4.jpg\" _src=\"http://yanxuan.nosdn.127.net/2b44f0c61c5064c73159283fa083bfd4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4cd92b89f49e036f29fcb760ec43620d.jpg\" _src=\"http://yanxuan.nosdn.127.net/4cd92b89f49e036f29fcb760ec43620d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/344d391a8f49df91334bbd9b92ffdb74.jpg\" _src=\"http://yanxuan.nosdn.127.net/344d391a8f49df91334bbd9b92ffdb74.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cb2c7b3e0bc070c6fafa3124c0d0e1a1.jpg\" _src=\"http://yanxuan.nosdn.127.net/cb2c7b3e0bc070c6fafa3124c0d0e1a1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a8f33436750f6979e7bc8d3b063d6b4b.jpg\" _src=\"http://yanxuan.nosdn.127.net/a8f33436750f6979e7bc8d3b063d6b4b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/734abf2642b4b6d1758b090da76e6bd7.jpg\" _src=\"http://yanxuan.nosdn.127.net/734abf2642b4b6d1758b090da76e6bd7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8b65e79b70b7ba95b952d41fe4d6049a.jpg\" _src=\"http://yanxuan.nosdn.127.net/8b65e79b70b7ba95b952d41fe4d6049a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ef22b52ba666ac6027511874cf6d2a5c.jpg\" _src=\"http://yanxuan.nosdn.127.net/ef22b52ba666ac6027511874cf6d2a5c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/09d642d719505973c084194da921bfc3.jpg\" _src=\"http://yanxuan.nosdn.127.net/09d642d719505973c084194da921bfc3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/67143c94cd2d5ce3b2d98c7b44e5d82a.jpg\" _src=\"http://yanxuan.nosdn.127.net/67143c94cd2d5ce3b2d98c7b44e5d82a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/82bc7d5e4efa2cc0cf8a2f688a4cf2f2.jpg\" _src=\"http://yanxuan.nosdn.127.net/82bc7d5e4efa2cc0cf8a2f688a4cf2f2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bcc87da6b0b8188753898379480fef5f.jpg\" _src=\"http://yanxuan.nosdn.127.net/bcc87da6b0b8188753898379480fef5f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e92cf0c3678425bb5637ee506ff9e146.jpg\" _src=\"http://yanxuan.nosdn.127.net/e92cf0c3678425bb5637ee506ff9e146.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d2052c09588cca803a6d9f741f0202e7.jpg\" _src=\"http://yanxuan.nosdn.127.net/d2052c09588cca803a6d9f741f0202e7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a684f5a95c259965494f989af45a2499.jpg\" _src=\"http://yanxuan.nosdn.127.net/a684f5a95c259965494f989af45a2499.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/81cfd3f623164f158203c2d2622ad3bb.jpg\" _src=\"http://yanxuan.nosdn.127.net/81cfd3f623164f158203c2d2622ad3bb.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fed14ad7c4fea2f7c4da28a0b597c988.jpg\" _src=\"http://yanxuan.nosdn.127.net/fed14ad7c4fea2f7c4da28a0b597c988.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bda3ced5296582c66353f100ab801e7e.jpg\" _src=\"http://yanxuan.nosdn.127.net/bda3ced5296582c66353f100ab801e7e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6d38146b1fb1c23806d4737a3d2770cc.jpg\" _src=\"http://yanxuan.nosdn.127.net/6d38146b1fb1c23806d4737a3d2770cc.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/837bba6263b0228b5d764fa224ac7f68.jpg\" _src=\"http://yanxuan.nosdn.127.net/837bba6263b0228b5d764fa224ac7f68.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6ade8dbc66d4c00f0bfc4c18f15d800a.jpg\" _src=\"http://yanxuan.nosdn.127.net/6ade8dbc66d4c00f0bfc4c18f15d800a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6a257a7e42071267775ce1028a51641c.jpg\" _src=\"http://yanxuan.nosdn.127.net/6a257a7e42071267775ce1028a51641c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cb0638aff2af73a5baed49270510e962.jpg\" _src=\"http://yanxuan.nosdn.127.net/cb0638aff2af73a5baed49270510e962.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/005b5e2ea26484f4bf83a6a07cb45259.jpg\" _src=\"http://yanxuan.nosdn.127.net/005b5e2ea26484f4bf83a6a07cb45259.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/55331e0b451080d567d84540e8919279.jpg\" _src=\"http://yanxuan.nosdn.127.net/55331e0b451080d567d84540e8919279.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bcc86d2b7f9eaed847f3af168a357796.jpg\" _src=\"http://yanxuan.nosdn.127.net/bcc86d2b7f9eaed847f3af168a357796.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d0ffd18f60560e7b3058b2741db7daee.jpg\" _src=\"http://yanxuan.nosdn.127.net/d0ffd18f60560e7b3058b2741db7daee.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a07622cf90c90f3c95975f7715e877fa.jpg\" _src=\"http://yanxuan.nosdn.127.net/a07622cf90c90f3c95975f7715e877fa.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/36e3cade2a47fef47d5499b8e6d08835.jpg\" _src=\"http://yanxuan.nosdn.127.net/36e3cade2a47fef47d5499b8e6d08835.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/483c0af4d43b1227d2d410153bf1a6d0.jpg\" _src=\"http://yanxuan.nosdn.127.net/483c0af4d43b1227d2d410153bf1a6d0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8d8db3ba36a01a32a133e7c5f3afc228.jpg\" _src=\"http://yanxuan.nosdn.127.net/8d8db3ba36a01a32a133e7c5f3afc228.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c326fd7fe0e301b231239ba0b3fb7b41.jpg\" _src=\"http://yanxuan.nosdn.127.net/c326fd7fe0e301b231239ba0b3fb7b41.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '5', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/51c00df46743a33758dece025641a7b8.jpg', 'http://yanxuan.nosdn.127.net/e16ff61bef76db81090db191b9d5ec15.png', '2199.00', '216', '1101027', '0.00', '限时购', '', '0.00', '0', '0', '0', '2418.90', null, null, null, null);
  683. INSERT INTO `nideshop_goods` VALUES ('1100000', '1008009', '1100000', '300根水洗棉缎纹纯色枕套*2', '0', '100', '', '水洗棉的呵护,透气亲肤', '<p><img src=\"http://yanxuan.nosdn.127.net/2164615ef532024ac711e6296ad3d705.jpg\" _src=\"http://yanxuan.nosdn.127.net/2164615ef532024ac711e6296ad3d705.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/61e79183390cf672ad9be0d3442041e5.jpg\" _src=\"http://yanxuan.nosdn.127.net/61e79183390cf672ad9be0d3442041e5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bc024462d81766a7224ab3545fb6d98f.jpg\" _src=\"http://yanxuan.nosdn.127.net/bc024462d81766a7224ab3545fb6d98f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c2cf4a3a51c4b68e55d2e7f2d13ca543.jpg\" _src=\"http://yanxuan.nosdn.127.net/c2cf4a3a51c4b68e55d2e7f2d13ca543.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f5c0f96d6c54ec2a23ef365036456f6c.jpg\" _src=\"http://yanxuan.nosdn.127.net/f5c0f96d6c54ec2a23ef365036456f6c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e63577594a28504eec2e0197f7ddadf8.jpg\" _src=\"http://yanxuan.nosdn.127.net/e63577594a28504eec2e0197f7ddadf8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cde5c10b5076f1b92e96e1c02ca7ff48.jpg\" _src=\"http://yanxuan.nosdn.127.net/cde5c10b5076f1b92e96e1c02ca7ff48.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b035b6b8208aa9c2ad954f30fef99775.jpg\" _src=\"http://yanxuan.nosdn.127.net/b035b6b8208aa9c2ad954f30fef99775.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/27cf1dd613ee7b01e4f90bce31a34a89.jpg\" _src=\"http://yanxuan.nosdn.127.net/27cf1dd613ee7b01e4f90bce31a34a89.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e6edf415e99e2ba2beeae4e6a38da856.jpg\" _src=\"http://yanxuan.nosdn.127.net/e6edf415e99e2ba2beeae4e6a38da856.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/be546650b508f5576267423da697ccef.jpg\" _src=\"http://yanxuan.nosdn.127.net/be546650b508f5576267423da697ccef.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7f387f9fbb09cb79e125efa85a3af051.jpg\" _src=\"http://yanxuan.nosdn.127.net/7f387f9fbb09cb79e125efa85a3af051.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bb0702de3a208768da04e2bcfb8dfb7b.jpg\" _src=\"http://yanxuan.nosdn.127.net/bb0702de3a208768da04e2bcfb8dfb7b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/520d7e3a895b1171ceba26f5a0f390e6.jpg\" _src=\"http://yanxuan.nosdn.127.net/520d7e3a895b1171ceba26f5a0f390e6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1bc14f1cf49d21c3b86e033029cb927a.jpg\" _src=\"http://yanxuan.nosdn.127.net/1bc14f1cf49d21c3b86e033029cb927a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d6cda639968622812a712d4230cefcc8.jpg\" _src=\"http://yanxuan.nosdn.127.net/d6cda639968622812a712d4230cefcc8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/07ef76fe3850a0ef4c708fbf6698c506.jpg\" _src=\"http://yanxuan.nosdn.127.net/07ef76fe3850a0ef4c708fbf6698c506.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5336250c74718eb078b218820220a4c1.jpg\" _src=\"http://yanxuan.nosdn.127.net/5336250c74718eb078b218820220a4c1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/09fdc6f77e536aab39bc7b89a35c6959.jpg\" _src=\"http://yanxuan.nosdn.127.net/09fdc6f77e536aab39bc7b89a35c6959.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2500886b52d9d4fdd143fa7c2b3e5446.jpg\" _src=\"http://yanxuan.nosdn.127.net/2500886b52d9d4fdd143fa7c2b3e5446.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3b2a4e13d9bb597131df9e1bcfe5a9b6.jpg\" _src=\"http://yanxuan.nosdn.127.net/3b2a4e13d9bb597131df9e1bcfe5a9b6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b7fe46cf57f0d9cc349acfe7e657bcd3.jpg\" _src=\"http://yanxuan.nosdn.127.net/b7fe46cf57f0d9cc349acfe7e657bcd3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/deac82fd0b4571e3c13d52e50e62b302.jpg\" _src=\"http://yanxuan.nosdn.127.net/deac82fd0b4571e3c13d52e50e62b302.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b36159471e198538107b92489180a4b3.jpg\" _src=\"http://yanxuan.nosdn.127.net/b36159471e198538107b92489180a4b3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0ac810650922fb01cdb193b31484d79d.jpg\" _src=\"http://yanxuan.nosdn.127.net/0ac810650922fb01cdb193b31484d79d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5f02de2f5574a50022a9e8ffd518298b.jpg\" _src=\"http://yanxuan.nosdn.127.net/5f02de2f5574a50022a9e8ffd518298b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8ae5b6a1c345825c13de51b0727cc855.jpg\" _src=\"http://yanxuan.nosdn.127.net/8ae5b6a1c345825c13de51b0727cc855.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/41149b83c142ba653b93223f9ed56301.jpg\" _src=\"http://yanxuan.nosdn.127.net/41149b83c142ba653b93223f9ed56301.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a4f64c2bb342bd18e9d76d145b63c89a.jpg\" _src=\"http://yanxuan.nosdn.127.net/a4f64c2bb342bd18e9d76d145b63c89a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e84264a53c8a4cb00f0e5e1577b2fb01.jpg\" _src=\"http://yanxuan.nosdn.127.net/e84264a53c8a4cb00f0e5e1577b2fb01.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/055385e03a51dfef123a2d0163d75a42.jpg\" _src=\"http://yanxuan.nosdn.127.net/055385e03a51dfef123a2d0163d75a42.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d9373db501542f25f812c3fecb45b4ec.jpg\" _src=\"http://yanxuan.nosdn.127.net/d9373db501542f25f812c3fecb45b4ec.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/51e7c319c838513a20b510d989ed0080.jpg\" _src=\"http://yanxuan.nosdn.127.net/51e7c319c838513a20b510d989ed0080.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3a4310313b7d5cb6a970b3136438aed4.jpg\" _src=\"http://yanxuan.nosdn.127.net/3a4310313b7d5cb6a970b3136438aed4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d5c25568e6495ad3352388dd2c9f0719.jpg\" _src=\"http://yanxuan.nosdn.127.net/d5c25568e6495ad3352388dd2c9f0719.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/79698caf7fc4cb8f99daed2b2cdeb0ba.jpg\" _src=\"http://yanxuan.nosdn.127.net/79698caf7fc4cb8f99daed2b2cdeb0ba.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6d3d314ed9a188abd8cf244fce029d9e.jpg\" _src=\"http://yanxuan.nosdn.127.net/6d3d314ed9a188abd8cf244fce029d9e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/adc3da2545131a5535d2d948dbd35ff7.jpg\" _src=\"http://yanxuan.nosdn.127.net/adc3da2545131a5535d2d948dbd35ff7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/76314625178eab034fe81ccc6f8efc2c.jpg\" _src=\"http://yanxuan.nosdn.127.net/76314625178eab034fe81ccc6f8efc2c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/73dddf214a50cde45620c4b629b72693.jpg\" _src=\"http://yanxuan.nosdn.127.net/73dddf214a50cde45620c4b629b72693.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8457cc3e51cb1061e02f69c6bc16e97c.jpg\" _src=\"http://yanxuan.nosdn.127.net/8457cc3e51cb1061e02f69c6bc16e97c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e7cec5452f51eb8ca4930941da82d329.jpg\" _src=\"http://yanxuan.nosdn.127.net/e7cec5452f51eb8ca4930941da82d329.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/80c359e06e6d28c2dd2582401746dc4e.jpg\" _src=\"http://yanxuan.nosdn.127.net/80c359e06e6d28c2dd2582401746dc4e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a3c56725175efa21648f094d644ec879.jpg\" _src=\"http://yanxuan.nosdn.127.net/a3c56725175efa21648f094d644ec879.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/15474760d9e688b80758b23c88a7ffb2.jpg\" _src=\"http://yanxuan.nosdn.127.net/15474760d9e688b80758b23c88a7ffb2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7e2acf365def8ed93f62f05b3ccb2d33.jpg\" _src=\"http://yanxuan.nosdn.127.net/7e2acf365def8ed93f62f05b3ccb2d33.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/dd4fcf9d4b37cb6146dfd32c7c2da790.jpg\" _src=\"http://yanxuan.nosdn.127.net/dd4fcf9d4b37cb6146dfd32c7c2da790.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/070861a329f22e78579bc114dee3d51c.jpg\" _src=\"http://yanxuan.nosdn.127.net/070861a329f22e78579bc114dee3d51c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d8ea41b6c4d1fae0986f6ec2c9f16933.jpg\" _src=\"http://yanxuan.nosdn.127.net/d8ea41b6c4d1fae0986f6ec2c9f16933.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '25', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/0006d55e3f95f50e2a02d409ab6ab8a2.jpg', 'http://yanxuan.nosdn.127.net/15e40cfb6a78f557616814a815685fd4.png', '79.00', '548', '1103000', '0.00', '限时购', '', '0.00', '0', '0', '0', '86.90', null, null, null, null);
  684. INSERT INTO `nideshop_goods` VALUES ('1100001', '1008009', '1100001', '300根水洗棉缎纹纯色床单', '0', '100', '', '水洗棉的柔软舒适,百分百的亲肤呵护', '<p><img src=\"http://yanxuan.nosdn.127.net/52a02aab5a4659f282fc638b350d7f95.jpg\" _src=\"http://yanxuan.nosdn.127.net/52a02aab5a4659f282fc638b350d7f95.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7fe116f74bd0d14270c0990d1daf06b6.jpg\" _src=\"http://yanxuan.nosdn.127.net/7fe116f74bd0d14270c0990d1daf06b6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/90882a17a426788993a81da84b4c7fbd.jpg\" _src=\"http://yanxuan.nosdn.127.net/90882a17a426788993a81da84b4c7fbd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/54d8848ead619164ebbfa7b67d448a47.jpg\" _src=\"http://yanxuan.nosdn.127.net/54d8848ead619164ebbfa7b67d448a47.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/766865b5d8124fe105cc5039521ce22f.jpg\" _src=\"http://yanxuan.nosdn.127.net/766865b5d8124fe105cc5039521ce22f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4a91ebe3b5a7173d1540ed41114427a7.jpg\" _src=\"http://yanxuan.nosdn.127.net/4a91ebe3b5a7173d1540ed41114427a7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/43502a858916eb140f3bfc95f90f61f4.jpg\" _src=\"http://yanxuan.nosdn.127.net/43502a858916eb140f3bfc95f90f61f4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b98b6b62828b7cf8ffeba592261d6d75.jpg\" _src=\"http://yanxuan.nosdn.127.net/b98b6b62828b7cf8ffeba592261d6d75.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3e40587f3bf72c40ff72fa3e1b9639e5.jpg\" _src=\"http://yanxuan.nosdn.127.net/3e40587f3bf72c40ff72fa3e1b9639e5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/81ade842bf7a9a87313fa55e1d4a7ff5.jpg\" _src=\"http://yanxuan.nosdn.127.net/81ade842bf7a9a87313fa55e1d4a7ff5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d1369e140bea5d9d1d807ac6a2184540.jpg\" _src=\"http://yanxuan.nosdn.127.net/d1369e140bea5d9d1d807ac6a2184540.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9dfa33237be0666a2eafcb4144c6507f.jpg\" _src=\"http://yanxuan.nosdn.127.net/9dfa33237be0666a2eafcb4144c6507f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/aebe79ce72d63dca6044d90ae42306b2.jpg\" _src=\"http://yanxuan.nosdn.127.net/aebe79ce72d63dca6044d90ae42306b2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bd202b7b2c6939abfd9ec86ec4fcd04c.jpg\" _src=\"http://yanxuan.nosdn.127.net/bd202b7b2c6939abfd9ec86ec4fcd04c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c90927890e763a70b7c022ae52bb3933.jpg\" _src=\"http://yanxuan.nosdn.127.net/c90927890e763a70b7c022ae52bb3933.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/be7692bb8797f05e9ca5ecc53980bcfb.jpg\" _src=\"http://yanxuan.nosdn.127.net/be7692bb8797f05e9ca5ecc53980bcfb.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d719888db5c6a6d02de04fafeee52d34.jpg\" _src=\"http://yanxuan.nosdn.127.net/d719888db5c6a6d02de04fafeee52d34.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9932f0c40aa4f0683d49dd279ac8cb37.jpg\" _src=\"http://yanxuan.nosdn.127.net/9932f0c40aa4f0683d49dd279ac8cb37.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b45044e18872c3fee33abf7c9a4756a6.jpg\" _src=\"http://yanxuan.nosdn.127.net/b45044e18872c3fee33abf7c9a4756a6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9b1448b186b8958ec8451079b43a3fa6.jpg\" _src=\"http://yanxuan.nosdn.127.net/9b1448b186b8958ec8451079b43a3fa6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/04e7d6d26a3a7793c1fcfa85ce88930a.jpg\" _src=\"http://yanxuan.nosdn.127.net/04e7d6d26a3a7793c1fcfa85ce88930a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7f8133c402129a909bcbfb1a510957b8.jpg\" _src=\"http://yanxuan.nosdn.127.net/7f8133c402129a909bcbfb1a510957b8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/997486762d960d57f9a60a5e927adcb0.jpg\" _src=\"http://yanxuan.nosdn.127.net/997486762d960d57f9a60a5e927adcb0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c7c7488aa89d34886e1b7b94dc78aaf4.jpg\" _src=\"http://yanxuan.nosdn.127.net/c7c7488aa89d34886e1b7b94dc78aaf4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1d426c800a38b6fd9b0e89f905d5861e.jpg\" _src=\"http://yanxuan.nosdn.127.net/1d426c800a38b6fd9b0e89f905d5861e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/92bc77c3893766d512d699420043250e.jpg\" _src=\"http://yanxuan.nosdn.127.net/92bc77c3893766d512d699420043250e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2cab9c7a67ba1a816be3c3cbb6db6719.jpg\" _src=\"http://yanxuan.nosdn.127.net/2cab9c7a67ba1a816be3c3cbb6db6719.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d7809202f7f45fd5082a0899c0faa8a6.jpg\" _src=\"http://yanxuan.nosdn.127.net/d7809202f7f45fd5082a0899c0faa8a6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/11f16921d77e740616262bb89cae747c.jpg\" _src=\"http://yanxuan.nosdn.127.net/11f16921d77e740616262bb89cae747c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ad1a0b186d1d3653788849eee22b0701.jpg\" _src=\"http://yanxuan.nosdn.127.net/ad1a0b186d1d3653788849eee22b0701.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/15e219fb1ff21dcdf1149b4728f29c38.jpg\" _src=\"http://yanxuan.nosdn.127.net/15e219fb1ff21dcdf1149b4728f29c38.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3c6c27566ad4ef4db783464203ec0b17.jpg\" _src=\"http://yanxuan.nosdn.127.net/3c6c27566ad4ef4db783464203ec0b17.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fbaed905816e210992ff56c11515baee.jpg\" _src=\"http://yanxuan.nosdn.127.net/fbaed905816e210992ff56c11515baee.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ab11d74c2e950bc4926df20d2f3289c2.jpg\" _src=\"http://yanxuan.nosdn.127.net/ab11d74c2e950bc4926df20d2f3289c2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6caf7b9fa56455f4efaff939a0894c89.jpg\" _src=\"http://yanxuan.nosdn.127.net/6caf7b9fa56455f4efaff939a0894c89.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/11e1c56f129c68f2e668f35af5647a8c.jpg\" _src=\"http://yanxuan.nosdn.127.net/11e1c56f129c68f2e668f35af5647a8c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e922764d150632e8acae2280b3c61570.jpg\" _src=\"http://yanxuan.nosdn.127.net/e922764d150632e8acae2280b3c61570.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/450b0a0b0c624d559c27beabe6f9aeb9.jpg\" _src=\"http://yanxuan.nosdn.127.net/450b0a0b0c624d559c27beabe6f9aeb9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d2bde52261504acd71ee7fd7394cc5f9.jpg\" _src=\"http://yanxuan.nosdn.127.net/d2bde52261504acd71ee7fd7394cc5f9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4010b0e19f9ccc01152e0004e90040ca.jpg\" _src=\"http://yanxuan.nosdn.127.net/4010b0e19f9ccc01152e0004e90040ca.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7b848a59522b381140e6ea54381fe60f.jpg\" _src=\"http://yanxuan.nosdn.127.net/7b848a59522b381140e6ea54381fe60f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f6a55c1b12fe7478e6cb502fb3a89ab2.jpg\" _src=\"http://yanxuan.nosdn.127.net/f6a55c1b12fe7478e6cb502fb3a89ab2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d04e5c6151fcd296c03e3636cc400ddf.jpg\" _src=\"http://yanxuan.nosdn.127.net/d04e5c6151fcd296c03e3636cc400ddf.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f490ab8e9bbd286e47c0a8f3bd4adeee.jpg\" _src=\"http://yanxuan.nosdn.127.net/f490ab8e9bbd286e47c0a8f3bd4adeee.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c2710161ba5f0e64807a6282255bb686.jpg\" _src=\"http://yanxuan.nosdn.127.net/c2710161ba5f0e64807a6282255bb686.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fb7229e9c581b844289fe81bc0b88cb3.jpg\" _src=\"http://yanxuan.nosdn.127.net/fb7229e9c581b844289fe81bc0b88cb3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4ff64ea78659fd39b7934247a148e04b.jpg\" _src=\"http://yanxuan.nosdn.127.net/4ff64ea78659fd39b7934247a148e04b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c18fbe31057289c95fe5afd601ae00ed.jpg\" _src=\"http://yanxuan.nosdn.127.net/c18fbe31057289c95fe5afd601ae00ed.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1358116cd85df0f6bb586e5714b15578.jpg\" _src=\"http://yanxuan.nosdn.127.net/1358116cd85df0f6bb586e5714b15578.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '30', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/697f5dc50b04d28a54bd2eac2d99df61.jpg', 'http://yanxuan.nosdn.127.net/a95285853138cbaf56e4ba729f2b8749.png', '199.00', '7591', '1103002', '0.00', '限时购', '', '0.00', '0', '0', '0', '218.90', null, null, null, null);
  685. INSERT INTO `nideshop_goods` VALUES ('1100002', '1008009', '1100002', '300根水洗棉缎纹纯色床笠', '0', '100', '', '柔软水洗棉,百分百的呵护', '<p><img src=\"http://yanxuan.nosdn.127.net/b113c05377e190d731c8276e5799387c.jpg\" _src=\"http://yanxuan.nosdn.127.net/b113c05377e190d731c8276e5799387c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1599d7e6b6912cc1d385d1eb4da29f32.jpg\" _src=\"http://yanxuan.nosdn.127.net/1599d7e6b6912cc1d385d1eb4da29f32.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/33d3d8ff4e26960705bda55bd7dab175.jpg\" _src=\"http://yanxuan.nosdn.127.net/33d3d8ff4e26960705bda55bd7dab175.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fbefed7e260fc9e54098ae9b7cfad1af.jpg\" _src=\"http://yanxuan.nosdn.127.net/fbefed7e260fc9e54098ae9b7cfad1af.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1c822575867fa4918096666cf661feae.jpg\" _src=\"http://yanxuan.nosdn.127.net/1c822575867fa4918096666cf661feae.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b6eff8d3a5ae780b159c0d9e95b63c9c.jpg\" _src=\"http://yanxuan.nosdn.127.net/b6eff8d3a5ae780b159c0d9e95b63c9c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f02dc5450a320e0658a029e5190b9784.jpg\" _src=\"http://yanxuan.nosdn.127.net/f02dc5450a320e0658a029e5190b9784.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d93ca19fd2008710ee23112e22667072.jpg\" _src=\"http://yanxuan.nosdn.127.net/d93ca19fd2008710ee23112e22667072.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9e6e1cce60f15101d79f4ba3ed162ff7.jpg\" _src=\"http://yanxuan.nosdn.127.net/9e6e1cce60f15101d79f4ba3ed162ff7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0102e764033c3954289920cb6e10826a.jpg\" _src=\"http://yanxuan.nosdn.127.net/0102e764033c3954289920cb6e10826a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c5274a83fe9644269f81a39d157b0885.jpg\" _src=\"http://yanxuan.nosdn.127.net/c5274a83fe9644269f81a39d157b0885.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/db217c5ee31c601dabaf53c5231d638f.jpg\" _src=\"http://yanxuan.nosdn.127.net/db217c5ee31c601dabaf53c5231d638f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f3cd27ea1974a41d88352c5359ef218b.jpg\" _src=\"http://yanxuan.nosdn.127.net/f3cd27ea1974a41d88352c5359ef218b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/449851f2dc340c54b373c28e0e28e43a.jpg\" _src=\"http://yanxuan.nosdn.127.net/449851f2dc340c54b373c28e0e28e43a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f758ecf146bd7ce77316d1ccb4d85136.jpg\" _src=\"http://yanxuan.nosdn.127.net/f758ecf146bd7ce77316d1ccb4d85136.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d7d3a08f3d596f44bd144f1874f01d2b.jpg\" _src=\"http://yanxuan.nosdn.127.net/d7d3a08f3d596f44bd144f1874f01d2b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/701d32168cc8568cb9282fa7bac3e97f.jpg\" _src=\"http://yanxuan.nosdn.127.net/701d32168cc8568cb9282fa7bac3e97f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/32df87bc772fbb87bbd704e6f3f9152f.jpg\" _src=\"http://yanxuan.nosdn.127.net/32df87bc772fbb87bbd704e6f3f9152f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/dbccd6766fd90ef1c4b7926a6da42914.jpg\" _src=\"http://yanxuan.nosdn.127.net/dbccd6766fd90ef1c4b7926a6da42914.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a9248b70482bf6c0c08bfd7dc1825ff2.jpg\" _src=\"http://yanxuan.nosdn.127.net/a9248b70482bf6c0c08bfd7dc1825ff2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/dd52704b957a03bd7652a8abfc79169f.jpg\" _src=\"http://yanxuan.nosdn.127.net/dd52704b957a03bd7652a8abfc79169f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/95fed81f2051ac18aed79ac65506bcc7.jpg\" _src=\"http://yanxuan.nosdn.127.net/95fed81f2051ac18aed79ac65506bcc7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a8ff2d10eb455e26fbd49ca8577a748e.jpg\" _src=\"http://yanxuan.nosdn.127.net/a8ff2d10eb455e26fbd49ca8577a748e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e72b42e17384d7375eae6188db4a0b3b.jpg\" _src=\"http://yanxuan.nosdn.127.net/e72b42e17384d7375eae6188db4a0b3b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a19cc090a4e878096c2e9bd1aa57255c.jpg\" _src=\"http://yanxuan.nosdn.127.net/a19cc090a4e878096c2e9bd1aa57255c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d8b63b926799b86237f9da0c09d9b9b1.jpg\" _src=\"http://yanxuan.nosdn.127.net/d8b63b926799b86237f9da0c09d9b9b1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c42156238f6747c56169e48ed2332fbe.jpg\" _src=\"http://yanxuan.nosdn.127.net/c42156238f6747c56169e48ed2332fbe.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c3727a66cd1faf92f17b6e42d1ac9ce5.jpg\" _src=\"http://yanxuan.nosdn.127.net/c3727a66cd1faf92f17b6e42d1ac9ce5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/20706d16caf832cbbc9336e777298b2e.jpg\" _src=\"http://yanxuan.nosdn.127.net/20706d16caf832cbbc9336e777298b2e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b199e8aad7dc32d9da9e2acae4a9f7f3.jpg\" _src=\"http://yanxuan.nosdn.127.net/b199e8aad7dc32d9da9e2acae4a9f7f3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a6171ea81148f8349f2a3e7795f9a797.jpg\" _src=\"http://yanxuan.nosdn.127.net/a6171ea81148f8349f2a3e7795f9a797.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/53c24120423d4ab3e0682b34d165cce0.jpg\" _src=\"http://yanxuan.nosdn.127.net/53c24120423d4ab3e0682b34d165cce0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2998210b6516bb72ca4ecc552fe1c452.jpg\" _src=\"http://yanxuan.nosdn.127.net/2998210b6516bb72ca4ecc552fe1c452.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/40a3b58c8994da5f68c9a70603cfc69f.jpg\" _src=\"http://yanxuan.nosdn.127.net/40a3b58c8994da5f68c9a70603cfc69f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/676acaa002d43fe87c7f08891ce1e375.jpg\" _src=\"http://yanxuan.nosdn.127.net/676acaa002d43fe87c7f08891ce1e375.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/061f47e80f9ba0b14d0f6ff1d97832b0.jpg\" _src=\"http://yanxuan.nosdn.127.net/061f47e80f9ba0b14d0f6ff1d97832b0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d68d15ac856a5f394be758f5b14472d4.jpg\" _src=\"http://yanxuan.nosdn.127.net/d68d15ac856a5f394be758f5b14472d4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e17041f2ab2fd90d4d645c2b81e117ce.jpg\" _src=\"http://yanxuan.nosdn.127.net/e17041f2ab2fd90d4d645c2b81e117ce.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/91ce73361dca495fc01ea078c63be200.jpg\" _src=\"http://yanxuan.nosdn.127.net/91ce73361dca495fc01ea078c63be200.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8b301b6dd7ccd1476e20eb87ac93fd21.jpg\" _src=\"http://yanxuan.nosdn.127.net/8b301b6dd7ccd1476e20eb87ac93fd21.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8f28caeb1ae005bbbf13e445cd81d70f.jpg\" _src=\"http://yanxuan.nosdn.127.net/8f28caeb1ae005bbbf13e445cd81d70f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7f96513f4cf52f2cd0caf5a49f0cf47a.jpg\" _src=\"http://yanxuan.nosdn.127.net/7f96513f4cf52f2cd0caf5a49f0cf47a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b50b75e2af4c9c60f8bbc92df33557c0.jpg\" _src=\"http://yanxuan.nosdn.127.net/b50b75e2af4c9c60f8bbc92df33557c0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d8dd9c0862e37cfddf42257403759c56.jpg\" _src=\"http://yanxuan.nosdn.127.net/d8dd9c0862e37cfddf42257403759c56.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5c8b1b6c2dbe8c26a13b4e4ac9a5f523.jpg\" _src=\"http://yanxuan.nosdn.127.net/5c8b1b6c2dbe8c26a13b4e4ac9a5f523.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d14380f50a2484cfbfe6d4b55e254ee3.jpg\" _src=\"http://yanxuan.nosdn.127.net/d14380f50a2484cfbfe6d4b55e254ee3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0b2c0b030495b0c1970026e643eb74d5.jpg\" _src=\"http://yanxuan.nosdn.127.net/0b2c0b030495b0c1970026e643eb74d5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8edef8d8fa2c866a6d37088cc4888f51.jpg\" _src=\"http://yanxuan.nosdn.127.net/8edef8d8fa2c866a6d37088cc4888f51.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b2759420c8d3cb17f8df32845feb3e8c.jpg\" _src=\"http://yanxuan.nosdn.127.net/b2759420c8d3cb17f8df32845feb3e8c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/076653218d9bb6fbd2009edd2a7b55d7.jpg\" _src=\"http://yanxuan.nosdn.127.net/076653218d9bb6fbd2009edd2a7b55d7.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '29', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/59f33deb148b9e384aa8cbdf481badb0.jpg', 'http://yanxuan.nosdn.127.net/edf1945ef594c00920bdc727f4c5c7fd.png', '189.00', '7881', '1103008', '0.00', '限时购', '', '0.00', '0', '0', '0', '207.90', null, null, null, null);
  686. INSERT INTO `nideshop_goods` VALUES ('1108029', '1017000', '1108029', '宠物多功能喂水喂食器', '0', '100', '', '喂水喂食一体机', '<p><img src=\"http://yanxuan.nosdn.127.net/3bf8e67e0463e2571d37012a325db488.jpg\" _src=\"http://yanxuan.nosdn.127.net/3bf8e67e0463e2571d37012a325db488.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a4e77fa5bca0ae2f7a8958c9e140df1e.jpg\" _src=\"http://yanxuan.nosdn.127.net/a4e77fa5bca0ae2f7a8958c9e140df1e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/36191cbd08985b5243cd772f3e9aaac5.jpg\" _src=\"http://yanxuan.nosdn.127.net/36191cbd08985b5243cd772f3e9aaac5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/29e2ae41fdc593c30ec5ec0aa626cb2b.jpg\" _src=\"http://yanxuan.nosdn.127.net/29e2ae41fdc593c30ec5ec0aa626cb2b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/43dca05a07c303b53fab3abc8c24859b.jpg\" _src=\"http://yanxuan.nosdn.127.net/43dca05a07c303b53fab3abc8c24859b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/62a3bfcdcfe31d37b94c19b54f3f6a9b.jpg\" _src=\"http://yanxuan.nosdn.127.net/62a3bfcdcfe31d37b94c19b54f3f6a9b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7533bfcc453038ce04c41528fe21b8da.jpg\" _src=\"http://yanxuan.nosdn.127.net/7533bfcc453038ce04c41528fe21b8da.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bda204fa9f136c9cb96648b010f6a10c.jpg\" _src=\"http://yanxuan.nosdn.127.net/bda204fa9f136c9cb96648b010f6a10c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5388fcb07fdb920e3395107edc539a40.jpg\" _src=\"http://yanxuan.nosdn.127.net/5388fcb07fdb920e3395107edc539a40.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/22c61bb098f35b258c56cb125c151188.jpg\" _src=\"http://yanxuan.nosdn.127.net/22c61bb098f35b258c56cb125c151188.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0009cc0c641be4894ca7ad2eb783fd4f.jpg\" _src=\"http://yanxuan.nosdn.127.net/0009cc0c641be4894ca7ad2eb783fd4f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7db29c859575edeb95c9441765ace2fd.jpg\" _src=\"http://yanxuan.nosdn.127.net/7db29c859575edeb95c9441765ace2fd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fb3b43977f90bd58c8d43ec9bc21dd39.jpg\" _src=\"http://yanxuan.nosdn.127.net/fb3b43977f90bd58c8d43ec9bc21dd39.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f52aa926637aa95ab37d68a56f858b76.jpg\" _src=\"http://yanxuan.nosdn.127.net/f52aa926637aa95ab37d68a56f858b76.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/96197f28360be46a045dd84f7c9c3d92.jpg\" _src=\"http://yanxuan.nosdn.127.net/96197f28360be46a045dd84f7c9c3d92.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d782399abb5589ad73cf07e334500fe8.jpg\" _src=\"http://yanxuan.nosdn.127.net/d782399abb5589ad73cf07e334500fe8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/84ca5f52f317691f9916c11f9376b730.jpg\" _src=\"http://yanxuan.nosdn.127.net/84ca5f52f317691f9916c11f9376b730.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/de7ae0e78a5ce6912a7ef425fadf0eca.jpg\" _src=\"http://yanxuan.nosdn.127.net/de7ae0e78a5ce6912a7ef425fadf0eca.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/145e3897ee245669d592ee2565679d6a.jpg\" _src=\"http://yanxuan.nosdn.127.net/145e3897ee245669d592ee2565679d6a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/03ed7555a00651cf887bbae7642166bf.jpg\" _src=\"http://yanxuan.nosdn.127.net/03ed7555a00651cf887bbae7642166bf.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ffc5597f1d9c3c1fa4c69d35a214b035.jpg\" _src=\"http://yanxuan.nosdn.127.net/ffc5597f1d9c3c1fa4c69d35a214b035.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/256469fef7985abc5996136246ca8b00.jpg\" _src=\"http://yanxuan.nosdn.127.net/256469fef7985abc5996136246ca8b00.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2020ded743ca398a6842c33cb40e2877.jpg\" _src=\"http://yanxuan.nosdn.127.net/2020ded743ca398a6842c33cb40e2877.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/39d806810ce52681e6ba7d2fbbf251c6.jpg\" _src=\"http://yanxuan.nosdn.127.net/39d806810ce52681e6ba7d2fbbf251c6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3a68e8f40bb91921ae319ec2f0f5f6c8.jpg\" _src=\"http://yanxuan.nosdn.127.net/3a68e8f40bb91921ae319ec2f0f5f6c8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b874965467b55c34b0f28bad35b03bf9.jpg\" _src=\"http://yanxuan.nosdn.127.net/b874965467b55c34b0f28bad35b03bf9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/29bd66954c53e023364968cc908f87fe.jpg\" _src=\"http://yanxuan.nosdn.127.net/29bd66954c53e023364968cc908f87fe.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/69eaa19be01f0f5b9435ddda59015b33.jpg\" _src=\"http://yanxuan.nosdn.127.net/69eaa19be01f0f5b9435ddda59015b33.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4ba111a384ac2eb2cb481d767f6645c3.jpg\" _src=\"http://yanxuan.nosdn.127.net/4ba111a384ac2eb2cb481d767f6645c3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cff9b886b5633c4f65218bd582999a7e.jpg\" _src=\"http://yanxuan.nosdn.127.net/cff9b886b5633c4f65218bd582999a7e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ccbae3f496c5330fdd213477289938e8.jpg\" _src=\"http://yanxuan.nosdn.127.net/ccbae3f496c5330fdd213477289938e8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9c5e34fdc3c8fe76f12691b347e29664.jpg\" _src=\"http://yanxuan.nosdn.127.net/9c5e34fdc3c8fe76f12691b347e29664.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8e0483aaf7c4af0175640ecf76298c14.jpg\" _src=\"http://yanxuan.nosdn.127.net/8e0483aaf7c4af0175640ecf76298c14.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c1db819b96049f466652fdc6000c20d8.jpg\" _src=\"http://yanxuan.nosdn.127.net/c1db819b96049f466652fdc6000c20d8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/edd00950d840dc7200a3fe93387ace4d.jpg\" _src=\"http://yanxuan.nosdn.127.net/edd00950d840dc7200a3fe93387ace4d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8f9bf5f71b81d65f3f436ecf99736a61.jpg\" _src=\"http://yanxuan.nosdn.127.net/8f9bf5f71b81d65f3f436ecf99736a61.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/353d3c382ba4d106b179efacaa5b3556.jpg\" _src=\"http://yanxuan.nosdn.127.net/353d3c382ba4d106b179efacaa5b3556.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b6ff4ab6bbfcee7c86d3bedc55c0b46e.jpg\" _src=\"http://yanxuan.nosdn.127.net/b6ff4ab6bbfcee7c86d3bedc55c0b46e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a734c8741a07eded056745572d420366.jpg\" _src=\"http://yanxuan.nosdn.127.net/a734c8741a07eded056745572d420366.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a581fb66bf5b225518d68895370d0d30.jpg\" _src=\"http://yanxuan.nosdn.127.net/a581fb66bf5b225518d68895370d0d30.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/89462fa746af04888e42977446b109f6.jpg\" _src=\"http://yanxuan.nosdn.127.net/89462fa746af04888e42977446b109f6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/aa0565c8fe8106078005ef3eec6043a2.jpg\" _src=\"http://yanxuan.nosdn.127.net/aa0565c8fe8106078005ef3eec6043a2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4377fc275d75cbd22fd51349adf5683c.jpg\" _src=\"http://yanxuan.nosdn.127.net/4377fc275d75cbd22fd51349adf5683c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3f8ad9a23c7712936bf683ad1b426a61.jpg\" _src=\"http://yanxuan.nosdn.127.net/3f8ad9a23c7712936bf683ad1b426a61.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d5a7331657407c0bcd2b441f367a0b5e.jpg\" _src=\"http://yanxuan.nosdn.127.net/d5a7331657407c0bcd2b441f367a0b5e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/723be903fc95458184906b016023f472.jpg\" _src=\"http://yanxuan.nosdn.127.net/723be903fc95458184906b016023f472.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/aca7894a56492d14a66cf4489cb0101e.jpg\" _src=\"http://yanxuan.nosdn.127.net/aca7894a56492d14a66cf4489cb0101e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/64444603ae2928179b5cfd8ae92751fa.jpg\" _src=\"http://yanxuan.nosdn.127.net/64444603ae2928179b5cfd8ae92751fa.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7d7b5fe28ee279bf0255add5693ad479.jpg\" _src=\"http://yanxuan.nosdn.127.net/7d7b5fe28ee279bf0255add5693ad479.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a04ac95008f4ba1ca6398c724df714db.jpg\" _src=\"http://yanxuan.nosdn.127.net/a04ac95008f4ba1ca6398c724df714db.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c4456c996bb369b15d1d9f47eea0ac1d.jpg\" _src=\"http://yanxuan.nosdn.127.net/c4456c996bb369b15d1d9f47eea0ac1d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7f857dd5a5e64a02c8ae2749cd1b4d28.jpg\" _src=\"http://yanxuan.nosdn.127.net/7f857dd5a5e64a02c8ae2749cd1b4d28.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/91c11fb52abf61d69c19b7b1671e333b.jpg\" _src=\"http://yanxuan.nosdn.127.net/91c11fb52abf61d69c19b7b1671e333b.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '11', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/84780d4edfd091860f2cc608752e4ca3.jpg', 'http://yanxuan.nosdn.127.net/fe52cd141b4b330db5627114b0e0e550.png', '89.00', '1001', '1109106', '0.00', '限时购', '', '0.00', '0', '0', '0', '97.90', null, null, null, null);
  687. INSERT INTO `nideshop_goods` VALUES ('1108030', '1017000', '1108030', '宠物便携出行圆球饮水器', '0', '100', '', '外出饮水必备', '<p><img src=\"http://yanxuan.nosdn.127.net/65458dc2797b7b9697c8fa90b082c820.jpg\" _src=\"http://yanxuan.nosdn.127.net/65458dc2797b7b9697c8fa90b082c820.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/99fd8ac254bae2b9aba09ebdc864902b.jpg\" _src=\"http://yanxuan.nosdn.127.net/99fd8ac254bae2b9aba09ebdc864902b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/28daf4d14b315c1dd59ab246beb09c70.jpg\" _src=\"http://yanxuan.nosdn.127.net/28daf4d14b315c1dd59ab246beb09c70.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ba256e0b5247705a57b1473aee17bfcc.jpg\" _src=\"http://yanxuan.nosdn.127.net/ba256e0b5247705a57b1473aee17bfcc.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/db8b0bc40c842c7850566f3505ff318c.jpg\" _src=\"http://yanxuan.nosdn.127.net/db8b0bc40c842c7850566f3505ff318c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d3289160c3ef48abdf88210125f3602e.jpg\" _src=\"http://yanxuan.nosdn.127.net/d3289160c3ef48abdf88210125f3602e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/39e4961981c7bef5cea9195f53dde52f.jpg\" _src=\"http://yanxuan.nosdn.127.net/39e4961981c7bef5cea9195f53dde52f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bd15f95156653349523af86732a46492.jpg\" _src=\"http://yanxuan.nosdn.127.net/bd15f95156653349523af86732a46492.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/891265e3eeeaa98cffd9f347a6d19746.jpg\" _src=\"http://yanxuan.nosdn.127.net/891265e3eeeaa98cffd9f347a6d19746.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b6dfda7fdadfc0f2982e8a8597d985ab.jpg\" _src=\"http://yanxuan.nosdn.127.net/b6dfda7fdadfc0f2982e8a8597d985ab.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ef537acfb89fe4d7ba4ce414c2265783.jpg\" _src=\"http://yanxuan.nosdn.127.net/ef537acfb89fe4d7ba4ce414c2265783.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0592ee31552e6546d8ef09516841761f.jpg\" _src=\"http://yanxuan.nosdn.127.net/0592ee31552e6546d8ef09516841761f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f553056794ae5f695075ef2df287a8d7.jpg\" _src=\"http://yanxuan.nosdn.127.net/f553056794ae5f695075ef2df287a8d7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/df10a5ab1e5db7f8a591d2303d58ff43.jpg\" _src=\"http://yanxuan.nosdn.127.net/df10a5ab1e5db7f8a591d2303d58ff43.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/006314c83e0089a6677c792cbf03738d.jpg\" _src=\"http://yanxuan.nosdn.127.net/006314c83e0089a6677c792cbf03738d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/df80940267b26eb2c4045ab54a532a4a.jpg\" _src=\"http://yanxuan.nosdn.127.net/df80940267b26eb2c4045ab54a532a4a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/820795a6b0338fec5eb7b8e2a1faaa7e.jpg\" _src=\"http://yanxuan.nosdn.127.net/820795a6b0338fec5eb7b8e2a1faaa7e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/225046907f2abd2bb25e455bdcee1033.jpg\" _src=\"http://yanxuan.nosdn.127.net/225046907f2abd2bb25e455bdcee1033.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d98af93b7b493a396b9197853ac3bffd.jpg\" _src=\"http://yanxuan.nosdn.127.net/d98af93b7b493a396b9197853ac3bffd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8c02c9759630701a781e17b55e52d348.jpg\" _src=\"http://yanxuan.nosdn.127.net/8c02c9759630701a781e17b55e52d348.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6b07ff9f11625098837642eab16a24b1.jpg\" _src=\"http://yanxuan.nosdn.127.net/6b07ff9f11625098837642eab16a24b1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/62ba125cd3c6dbff548b4aea7052dfa2.jpg\" _src=\"http://yanxuan.nosdn.127.net/62ba125cd3c6dbff548b4aea7052dfa2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/63433f85d33a5ef7680a74836a57a8a7.jpg\" _src=\"http://yanxuan.nosdn.127.net/63433f85d33a5ef7680a74836a57a8a7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5b96e12210978aa545d16753583c9311.jpg\" _src=\"http://yanxuan.nosdn.127.net/5b96e12210978aa545d16753583c9311.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/199cf634a730a1d2c85ba8564d5e1f30.jpg\" _src=\"http://yanxuan.nosdn.127.net/199cf634a730a1d2c85ba8564d5e1f30.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/04b3401c50ee63e48e0acaa25188072c.jpg\" _src=\"http://yanxuan.nosdn.127.net/04b3401c50ee63e48e0acaa25188072c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ab1f3b9d0b41453fa2ab69bfd8ebd609.jpg\" _src=\"http://yanxuan.nosdn.127.net/ab1f3b9d0b41453fa2ab69bfd8ebd609.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/39d2282c7716b703cb8075d97ee0b1ea.jpg\" _src=\"http://yanxuan.nosdn.127.net/39d2282c7716b703cb8075d97ee0b1ea.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/18a1b4b99f3e4585b5417b4494637935.jpg\" _src=\"http://yanxuan.nosdn.127.net/18a1b4b99f3e4585b5417b4494637935.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/49278c041256ff111e9b0d6b19f6849a.jpg\" _src=\"http://yanxuan.nosdn.127.net/49278c041256ff111e9b0d6b19f6849a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f6788d12309384b5d337976dbad1d6c9.jpg\" _src=\"http://yanxuan.nosdn.127.net/f6788d12309384b5d337976dbad1d6c9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8c6caf545f43b018f49ee5487fc03d01.jpg\" _src=\"http://yanxuan.nosdn.127.net/8c6caf545f43b018f49ee5487fc03d01.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/27a36412d6ecec32db98dfa0b6e3af72.jpg\" _src=\"http://yanxuan.nosdn.127.net/27a36412d6ecec32db98dfa0b6e3af72.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7de1b5e08e34b6063c232b51b8d6ce75.jpg\" _src=\"http://yanxuan.nosdn.127.net/7de1b5e08e34b6063c232b51b8d6ce75.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c838ab94bfa6d33cfc1a04153d735ba8.jpg\" _src=\"http://yanxuan.nosdn.127.net/c838ab94bfa6d33cfc1a04153d735ba8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fc75dbcbf77c448d5387d9603b475933.jpg\" _src=\"http://yanxuan.nosdn.127.net/fc75dbcbf77c448d5387d9603b475933.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4ef8849851d3d4dcbe218462703984e8.jpg\" _src=\"http://yanxuan.nosdn.127.net/4ef8849851d3d4dcbe218462703984e8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4ff37d4e4da2ef4de40c658a1b8f9d79.jpg\" _src=\"http://yanxuan.nosdn.127.net/4ff37d4e4da2ef4de40c658a1b8f9d79.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f55a85e695408074cc0a81750edea4f4.jpg\" _src=\"http://yanxuan.nosdn.127.net/f55a85e695408074cc0a81750edea4f4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/83c6329af24cf5e90c9d5375526b36fb.jpg\" _src=\"http://yanxuan.nosdn.127.net/83c6329af24cf5e90c9d5375526b36fb.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cba8e943c2625979de604dffb0f9a845.jpg\" _src=\"http://yanxuan.nosdn.127.net/cba8e943c2625979de604dffb0f9a845.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f78a2b104dbf826d95acdee5067946ac.jpg\" _src=\"http://yanxuan.nosdn.127.net/f78a2b104dbf826d95acdee5067946ac.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3982351a58dca84398140880a9ff9af7.jpg\" _src=\"http://yanxuan.nosdn.127.net/3982351a58dca84398140880a9ff9af7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ae786e8fbcb22eb93d28af5c258ef0e6.jpg\" _src=\"http://yanxuan.nosdn.127.net/ae786e8fbcb22eb93d28af5c258ef0e6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1f1e30c1953432fa8e917be3a60eb8d5.jpg\" _src=\"http://yanxuan.nosdn.127.net/1f1e30c1953432fa8e917be3a60eb8d5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8081aaebcb364348cc135507f91a6ee2.jpg\" _src=\"http://yanxuan.nosdn.127.net/8081aaebcb364348cc135507f91a6ee2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c2c7658cc55e22c82e47853cc2fe90af.jpg\" _src=\"http://yanxuan.nosdn.127.net/c2c7658cc55e22c82e47853cc2fe90af.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f7eb6a53ed6638c306c552f5254e4852.jpg\" _src=\"http://yanxuan.nosdn.127.net/f7eb6a53ed6638c306c552f5254e4852.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b9fb49dcb6363fae12e5c870481af5a5.jpg\" _src=\"http://yanxuan.nosdn.127.net/b9fb49dcb6363fae12e5c870481af5a5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cb48d2684fbeefe6943cedc53c91d871.jpg\" _src=\"http://yanxuan.nosdn.127.net/cb48d2684fbeefe6943cedc53c91d871.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/201bae3b7e499e793d2c30cf6da70d2d.jpg\" _src=\"http://yanxuan.nosdn.127.net/201bae3b7e499e793d2c30cf6da70d2d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5baec5411baf96cd0ec794b85fd1a380.jpg\" _src=\"http://yanxuan.nosdn.127.net/5baec5411baf96cd0ec794b85fd1a380.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8408db93439d3aea4dfbe526912de53c.jpg\" _src=\"http://yanxuan.nosdn.127.net/8408db93439d3aea4dfbe526912de53c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2f44ba45b1e8db330f9cd9861838369f.jpg\" _src=\"http://yanxuan.nosdn.127.net/2f44ba45b1e8db330f9cd9861838369f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0d55f64c5d91dada75147a3e64cb75cd.jpg\" _src=\"http://yanxuan.nosdn.127.net/0d55f64c5d91dada75147a3e64cb75cd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/971c28886097abee11d46e73dcdef3ad.jpg\" _src=\"http://yanxuan.nosdn.127.net/971c28886097abee11d46e73dcdef3ad.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a75e9cd2ab8220d5f458abd29342208f.jpg\" _src=\"http://yanxuan.nosdn.127.net/a75e9cd2ab8220d5f458abd29342208f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/72eebb97ba757e5fadc1f295899c10e3.jpg\" _src=\"http://yanxuan.nosdn.127.net/72eebb97ba757e5fadc1f295899c10e3.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '9', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/e2d6c0d3f04a454c4b4241549ec81fed.jpg', 'http://yanxuan.nosdn.127.net/4891e60ff08ceed36d40a754e45e8742.png', '39.00', '748', '1109109', '0.00', '限时购', '', '0.00', '0', '0', '0', '42.90', null, null, null, null);
  688. INSERT INTO `nideshop_goods` VALUES ('1108031', '1017000', '1108031', '宠物不锈钢圆形倾斜餐碗', '0', '100', '', '15°倾斜设计,保护萌宠颈椎', '<p><img src=\"http://yanxuan.nosdn.127.net/fe442c6b8b05d23d83c190640065b302.jpg\" _src=\"http://yanxuan.nosdn.127.net/fe442c6b8b05d23d83c190640065b302.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ba20be368cb41c574702e6744a0c2ce8.jpg\" _src=\"http://yanxuan.nosdn.127.net/ba20be368cb41c574702e6744a0c2ce8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7092d305d9b11aa72f95038e90154fdf.jpg\" _src=\"http://yanxuan.nosdn.127.net/7092d305d9b11aa72f95038e90154fdf.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a5347b835761722810025b9f3c6b6242.jpg\" _src=\"http://yanxuan.nosdn.127.net/a5347b835761722810025b9f3c6b6242.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3044ad714ba17abfe7bff91852dbbb7a.jpg\" _src=\"http://yanxuan.nosdn.127.net/3044ad714ba17abfe7bff91852dbbb7a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8f2e55960d44c44fe16be14ca42b79b9.jpg\" _src=\"http://yanxuan.nosdn.127.net/8f2e55960d44c44fe16be14ca42b79b9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6ab5ffee3b444a77f27ac16a823b26e9.jpg\" _src=\"http://yanxuan.nosdn.127.net/6ab5ffee3b444a77f27ac16a823b26e9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/35f2901cbb277423113591ff6888679e.jpg\" _src=\"http://yanxuan.nosdn.127.net/35f2901cbb277423113591ff6888679e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2f6f5b1d8a683b1250bd5ebc27b833d8.jpg\" _src=\"http://yanxuan.nosdn.127.net/2f6f5b1d8a683b1250bd5ebc27b833d8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d12811178bd5bcbf4a8084b96d983510.jpg\" _src=\"http://yanxuan.nosdn.127.net/d12811178bd5bcbf4a8084b96d983510.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3a91d9ab01721022697a0317d806acf1.jpg\" _src=\"http://yanxuan.nosdn.127.net/3a91d9ab01721022697a0317d806acf1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fda53f2d82de49415036a1b7f3682897.jpg\" _src=\"http://yanxuan.nosdn.127.net/fda53f2d82de49415036a1b7f3682897.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/06ad2786bb0ed2e15db6e0ca4a7f6e9f.jpg\" _src=\"http://yanxuan.nosdn.127.net/06ad2786bb0ed2e15db6e0ca4a7f6e9f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6364ac31e8f2c6dca96a15272b4bdf74.jpg\" _src=\"http://yanxuan.nosdn.127.net/6364ac31e8f2c6dca96a15272b4bdf74.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/63676d91181fe828d311152cf64e7c96.jpg\" _src=\"http://yanxuan.nosdn.127.net/63676d91181fe828d311152cf64e7c96.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4e3720a6ebaa9e055e13a59b949846a7.jpg\" _src=\"http://yanxuan.nosdn.127.net/4e3720a6ebaa9e055e13a59b949846a7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8e7b6a3053033461ac16f131a144d712.jpg\" _src=\"http://yanxuan.nosdn.127.net/8e7b6a3053033461ac16f131a144d712.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/71a84329dd57b8ea6ea475dfc7d7ea45.jpg\" _src=\"http://yanxuan.nosdn.127.net/71a84329dd57b8ea6ea475dfc7d7ea45.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b9aa4a346e8aaa99e5f0a8a8ddbbae52.jpg\" _src=\"http://yanxuan.nosdn.127.net/b9aa4a346e8aaa99e5f0a8a8ddbbae52.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/871bf338274c5a2c12fbcf47253dee9e.jpg\" _src=\"http://yanxuan.nosdn.127.net/871bf338274c5a2c12fbcf47253dee9e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e64906f44387ba5aa1fe0a46e0e868e3.jpg\" _src=\"http://yanxuan.nosdn.127.net/e64906f44387ba5aa1fe0a46e0e868e3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5aaf91ae7b9a724adbd328212717f133.jpg\" _src=\"http://yanxuan.nosdn.127.net/5aaf91ae7b9a724adbd328212717f133.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9bac8b99202edba9e578577c8b400c27.jpg\" _src=\"http://yanxuan.nosdn.127.net/9bac8b99202edba9e578577c8b400c27.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/905476e8794cb20932c79fe979d4d6e4.jpg\" _src=\"http://yanxuan.nosdn.127.net/905476e8794cb20932c79fe979d4d6e4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a390619762e9aded0830c8ef7a9019cf.jpg\" _src=\"http://yanxuan.nosdn.127.net/a390619762e9aded0830c8ef7a9019cf.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8e6feb711c65e1df4ea4b6e219e46e5b.jpg\" _src=\"http://yanxuan.nosdn.127.net/8e6feb711c65e1df4ea4b6e219e46e5b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/384cf19dbc0d907658129066fbb677cc.jpg\" _src=\"http://yanxuan.nosdn.127.net/384cf19dbc0d907658129066fbb677cc.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/559f367e0268c32cd9b1981fca44a194.jpg\" _src=\"http://yanxuan.nosdn.127.net/559f367e0268c32cd9b1981fca44a194.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b756d95d2d65bb3f88d6d0da32000c9e.jpg\" _src=\"http://yanxuan.nosdn.127.net/b756d95d2d65bb3f88d6d0da32000c9e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b3b9047a5c3c574137b560899d1ee719.jpg\" _src=\"http://yanxuan.nosdn.127.net/b3b9047a5c3c574137b560899d1ee719.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/19a3db18a8023be0926479cda7bccccf.jpg\" _src=\"http://yanxuan.nosdn.127.net/19a3db18a8023be0926479cda7bccccf.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/75e1ddf4c49513673cff06fb12f2fe71.jpg\" _src=\"http://yanxuan.nosdn.127.net/75e1ddf4c49513673cff06fb12f2fe71.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/14115b6c7119e2f1941080b3c1d21aad.jpg\" _src=\"http://yanxuan.nosdn.127.net/14115b6c7119e2f1941080b3c1d21aad.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/57fdadf97765f41fd7137ba8f1b9d67d.jpg\" _src=\"http://yanxuan.nosdn.127.net/57fdadf97765f41fd7137ba8f1b9d67d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f240883b30ce338fcbeddcd428301ecc.jpg\" _src=\"http://yanxuan.nosdn.127.net/f240883b30ce338fcbeddcd428301ecc.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/722689c017134b67bffe74ca5449cc13.jpg\" _src=\"http://yanxuan.nosdn.127.net/722689c017134b67bffe74ca5449cc13.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4cbafb1ac8a140f33d1e1f6d187e0f14.jpg\" _src=\"http://yanxuan.nosdn.127.net/4cbafb1ac8a140f33d1e1f6d187e0f14.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8ee61f4cbdcf2da8e794367d22951299.jpg\" _src=\"http://yanxuan.nosdn.127.net/8ee61f4cbdcf2da8e794367d22951299.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cebd5973ee2c12a2db2e1480b6bb247e.jpg\" _src=\"http://yanxuan.nosdn.127.net/cebd5973ee2c12a2db2e1480b6bb247e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ab3fa0823a7397d78d4ed76130d6e07a.jpg\" _src=\"http://yanxuan.nosdn.127.net/ab3fa0823a7397d78d4ed76130d6e07a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2a9e54a13c48800a2540eecfea8b46e2.jpg\" _src=\"http://yanxuan.nosdn.127.net/2a9e54a13c48800a2540eecfea8b46e2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bf08302aa55a026f7276c9ce7d7caf70.jpg\" _src=\"http://yanxuan.nosdn.127.net/bf08302aa55a026f7276c9ce7d7caf70.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5074c7dd82423817b5efd1440dfe0f3b.jpg\" _src=\"http://yanxuan.nosdn.127.net/5074c7dd82423817b5efd1440dfe0f3b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/16ada32c3b2ba7bd3781b6cbb5fc4a71.jpg\" _src=\"http://yanxuan.nosdn.127.net/16ada32c3b2ba7bd3781b6cbb5fc4a71.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/52a58f1c5fc81211f04bc23055421d3f.jpg\" _src=\"http://yanxuan.nosdn.127.net/52a58f1c5fc81211f04bc23055421d3f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c73e3beb3afaf28e6293e9dd4f88f1ba.jpg\" _src=\"http://yanxuan.nosdn.127.net/c73e3beb3afaf28e6293e9dd4f88f1ba.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '10', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/240f691994caed34c6bad02130b6f3a7.jpg', 'http://yanxuan.nosdn.127.net/e13e9697e01339c6cf7479eb81b3fbe2.png', '39.00', '6243', '1109111', '0.00', '限时购', '', '0.00', '0', '0', '0', '42.90', null, null, null, null);
  689. INSERT INTO `nideshop_goods` VALUES ('1108032', '1017000', '1108032', '宠物外出便携硅胶折叠碗', '0', '100', '', '环保材质,安全出行', '<p><img src=\"http://yanxuan.nosdn.127.net/d8ff5ecd0e885adbfe48274ebd5d39c4.jpg\" _src=\"http://yanxuan.nosdn.127.net/d8ff5ecd0e885adbfe48274ebd5d39c4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/386b5ab03d27baa531c954db71361794.jpg\" _src=\"http://yanxuan.nosdn.127.net/386b5ab03d27baa531c954db71361794.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/854e336ce00c378a3742caf63cd646ff.jpg\" _src=\"http://yanxuan.nosdn.127.net/854e336ce00c378a3742caf63cd646ff.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8b50b6dcb391ad81f246ece99016d707.jpg\" _src=\"http://yanxuan.nosdn.127.net/8b50b6dcb391ad81f246ece99016d707.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5b5c13a48aaaa82e22b79fed8995cb8d.jpg\" _src=\"http://yanxuan.nosdn.127.net/5b5c13a48aaaa82e22b79fed8995cb8d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d61a222e292b6cccd2ed7cc6a6ffcd72.jpg\" _src=\"http://yanxuan.nosdn.127.net/d61a222e292b6cccd2ed7cc6a6ffcd72.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/13a0a06993b8c3c5741161802704bab8.jpg\" _src=\"http://yanxuan.nosdn.127.net/13a0a06993b8c3c5741161802704bab8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2a92ed8e9574aeb25974200c084e6dc0.jpg\" _src=\"http://yanxuan.nosdn.127.net/2a92ed8e9574aeb25974200c084e6dc0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9144dd50cfd1e61b61134a369ebabd84.jpg\" _src=\"http://yanxuan.nosdn.127.net/9144dd50cfd1e61b61134a369ebabd84.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0d61dd945035ad1d5be48237789b428e.jpg\" _src=\"http://yanxuan.nosdn.127.net/0d61dd945035ad1d5be48237789b428e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9058bda517165fe7e3ea430352c92928.jpg\" _src=\"http://yanxuan.nosdn.127.net/9058bda517165fe7e3ea430352c92928.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/20ff4399b56ea9702e2ffe383f4c3186.jpg\" _src=\"http://yanxuan.nosdn.127.net/20ff4399b56ea9702e2ffe383f4c3186.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/230633f83cc8f67eb8b60bba9f7344dd.jpg\" _src=\"http://yanxuan.nosdn.127.net/230633f83cc8f67eb8b60bba9f7344dd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/50917a24116c0ec917300e59980dfa70.jpg\" _src=\"http://yanxuan.nosdn.127.net/50917a24116c0ec917300e59980dfa70.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5f6f265dc2a7b9e92cf5e337240315f6.jpg\" _src=\"http://yanxuan.nosdn.127.net/5f6f265dc2a7b9e92cf5e337240315f6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ec63508dc5002ea7297ceb8667c83a57.jpg\" _src=\"http://yanxuan.nosdn.127.net/ec63508dc5002ea7297ceb8667c83a57.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8991ae264090f405222b022cf6ae171e.jpg\" _src=\"http://yanxuan.nosdn.127.net/8991ae264090f405222b022cf6ae171e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4bdf14e7a0438d2c0f1773fa6f40814d.jpg\" _src=\"http://yanxuan.nosdn.127.net/4bdf14e7a0438d2c0f1773fa6f40814d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/758fd7288c33ff3eb927d6cad168e7c8.jpg\" _src=\"http://yanxuan.nosdn.127.net/758fd7288c33ff3eb927d6cad168e7c8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/56c6c022d74853fdf34229bd793a5eb5.jpg\" _src=\"http://yanxuan.nosdn.127.net/56c6c022d74853fdf34229bd793a5eb5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/886d8bbd06fb31459300b80b5b03f20d.jpg\" _src=\"http://yanxuan.nosdn.127.net/886d8bbd06fb31459300b80b5b03f20d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ce994fa8073259d4862ce4bda755de96.jpg\" _src=\"http://yanxuan.nosdn.127.net/ce994fa8073259d4862ce4bda755de96.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b1ea7ee36b77699babffe0f5d17f94af.jpg\" _src=\"http://yanxuan.nosdn.127.net/b1ea7ee36b77699babffe0f5d17f94af.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5e7cedeedaa49ffcbd78ba47ec0bf7a2.jpg\" _src=\"http://yanxuan.nosdn.127.net/5e7cedeedaa49ffcbd78ba47ec0bf7a2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1d812b4e3c4ac28a63d6f1fdd1e79b89.jpg\" _src=\"http://yanxuan.nosdn.127.net/1d812b4e3c4ac28a63d6f1fdd1e79b89.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/99a4acbd0cf0fee6e11587311b2b8ee4.jpg\" _src=\"http://yanxuan.nosdn.127.net/99a4acbd0cf0fee6e11587311b2b8ee4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/277a754269060561028944ead40c83c5.jpg\" _src=\"http://yanxuan.nosdn.127.net/277a754269060561028944ead40c83c5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3c0c08dda4d972a5d3689654e95e05af.jpg\" _src=\"http://yanxuan.nosdn.127.net/3c0c08dda4d972a5d3689654e95e05af.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5be19568b2e13c20be03aeb620ce9775.jpg\" _src=\"http://yanxuan.nosdn.127.net/5be19568b2e13c20be03aeb620ce9775.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a3e4c54c1a94d4e073f48cdf6d153888.jpg\" _src=\"http://yanxuan.nosdn.127.net/a3e4c54c1a94d4e073f48cdf6d153888.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d2d98d50abb5f8d85f1c879bf0cc0889.jpg\" _src=\"http://yanxuan.nosdn.127.net/d2d98d50abb5f8d85f1c879bf0cc0889.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ba75182e971ad76f3ebc8bbf5378d8c5.jpg\" _src=\"http://yanxuan.nosdn.127.net/ba75182e971ad76f3ebc8bbf5378d8c5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b668c88d1068ece520560f482cf4742d.jpg\" _src=\"http://yanxuan.nosdn.127.net/b668c88d1068ece520560f482cf4742d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c4af4ee5f7669d7224e1cbba0b2c91b4.jpg\" _src=\"http://yanxuan.nosdn.127.net/c4af4ee5f7669d7224e1cbba0b2c91b4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/696c2a252e2ce5c82385a3b688a6189f.jpg\" _src=\"http://yanxuan.nosdn.127.net/696c2a252e2ce5c82385a3b688a6189f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/867ae15f3ad0b32c9696d67c1b0f81b8.jpg\" _src=\"http://yanxuan.nosdn.127.net/867ae15f3ad0b32c9696d67c1b0f81b8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e4653f7f883e4d4415a63c049057e485.jpg\" _src=\"http://yanxuan.nosdn.127.net/e4653f7f883e4d4415a63c049057e485.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6f0ed58e5833a79f8cbb23f17197bd0e.jpg\" _src=\"http://yanxuan.nosdn.127.net/6f0ed58e5833a79f8cbb23f17197bd0e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8e0c022efbe3356e228af952250f1f6d.jpg\" _src=\"http://yanxuan.nosdn.127.net/8e0c022efbe3356e228af952250f1f6d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/92c02896ef38cebb1aed42e2b9b7b8eb.jpg\" _src=\"http://yanxuan.nosdn.127.net/92c02896ef38cebb1aed42e2b9b7b8eb.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0f28abcfec2fc43a58bbfac47038c6cd.jpg\" _src=\"http://yanxuan.nosdn.127.net/0f28abcfec2fc43a58bbfac47038c6cd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8f3aa08189ffd19d97d3f155b8c6394b.jpg\" _src=\"http://yanxuan.nosdn.127.net/8f3aa08189ffd19d97d3f155b8c6394b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8ad916ac6db5838d6c9b0861cbfa1ec3.jpg\" _src=\"http://yanxuan.nosdn.127.net/8ad916ac6db5838d6c9b0861cbfa1ec3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/785e8d1367c02cae12c2d6e93e61acd6.jpg\" _src=\"http://yanxuan.nosdn.127.net/785e8d1367c02cae12c2d6e93e61acd6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5138c94fecd3f99579a87b7e86089bb2.jpg\" _src=\"http://yanxuan.nosdn.127.net/5138c94fecd3f99579a87b7e86089bb2.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '8', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/842ab8e684d5c35adc070c12efe7b927.jpg', 'http://yanxuan.nosdn.127.net/b1f9e1f700469f71fe3c4187ef53c99f.png', '29.00', '5231', '1109117', '0.00', '限时购', '', '0.00', '0', '0', '0', '31.90', null, null, null, null);
  690. INSERT INTO `nideshop_goods` VALUES ('1109004', '1011004', '1109004', '简日挂钟', '0', '100', '', '极简风格,精确读数', '<p><img src=\"http://yanxuan.nosdn.127.net/ed6209acc582861a4532565144bef700.jpg\" _src=\"http://yanxuan.nosdn.127.net/ed6209acc582861a4532565144bef700.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d93a219ccd2cf7fbd0a6123794d78134.jpg\" _src=\"http://yanxuan.nosdn.127.net/d93a219ccd2cf7fbd0a6123794d78134.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d3e1e4b0e1c00934ac0c07c4ae45a950.jpg\" _src=\"http://yanxuan.nosdn.127.net/d3e1e4b0e1c00934ac0c07c4ae45a950.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1c9c486cff57a78914ad8e4e67da3593.jpg\" _src=\"http://yanxuan.nosdn.127.net/1c9c486cff57a78914ad8e4e67da3593.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bf1894242c6f85ccc1e344bc74a7d3fc.jpg\" _src=\"http://yanxuan.nosdn.127.net/bf1894242c6f85ccc1e344bc74a7d3fc.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/131e4470d228bab143b5430da6ec0321.jpg\" _src=\"http://yanxuan.nosdn.127.net/131e4470d228bab143b5430da6ec0321.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/11b92847ff14aab16ba8358dcece8abb.jpg\" _src=\"http://yanxuan.nosdn.127.net/11b92847ff14aab16ba8358dcece8abb.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/57477bb84bc01af24cdf48056a2caad7.jpg\" _src=\"http://yanxuan.nosdn.127.net/57477bb84bc01af24cdf48056a2caad7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/61b9cb485b704ddb9f83a60fd09e91c5.jpg\" _src=\"http://yanxuan.nosdn.127.net/61b9cb485b704ddb9f83a60fd09e91c5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fa87555d481801395547dd76f5a8cfd8.jpg\" _src=\"http://yanxuan.nosdn.127.net/fa87555d481801395547dd76f5a8cfd8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9078b58525c6f68d0e49d1bf9b634486.jpg\" _src=\"http://yanxuan.nosdn.127.net/9078b58525c6f68d0e49d1bf9b634486.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/99288d5715265c7db5f95374749e5210.jpg\" _src=\"http://yanxuan.nosdn.127.net/99288d5715265c7db5f95374749e5210.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e7db2e77fc52923ac4b520755390e107.jpg\" _src=\"http://yanxuan.nosdn.127.net/e7db2e77fc52923ac4b520755390e107.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8e294cb72f4597d3483a58672036fc79.jpg\" _src=\"http://yanxuan.nosdn.127.net/8e294cb72f4597d3483a58672036fc79.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/dedf9275a5cb14e0e40d9a0a44e2ab7d.jpg\" _src=\"http://yanxuan.nosdn.127.net/dedf9275a5cb14e0e40d9a0a44e2ab7d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2fb4872d2688aef5fbff9874f67df039.jpg\" _src=\"http://yanxuan.nosdn.127.net/2fb4872d2688aef5fbff9874f67df039.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f42e6c5d2fa6cc6769836e58ce6b204d.jpg\" _src=\"http://yanxuan.nosdn.127.net/f42e6c5d2fa6cc6769836e58ce6b204d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/29ee925e530280f8ef9d2d17e2d3f6c4.jpg\" _src=\"http://yanxuan.nosdn.127.net/29ee925e530280f8ef9d2d17e2d3f6c4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c958c89c52482f66a2b7fe2f2ca7f86d.jpg\" _src=\"http://yanxuan.nosdn.127.net/c958c89c52482f66a2b7fe2f2ca7f86d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5489eb22d3d00557e3e6f90af54a32d3.jpg\" _src=\"http://yanxuan.nosdn.127.net/5489eb22d3d00557e3e6f90af54a32d3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b55e4bbca8dbc6ec36280243540fce36.jpg\" _src=\"http://yanxuan.nosdn.127.net/b55e4bbca8dbc6ec36280243540fce36.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e69bd0a9b72ea444a2a9597d8573d808.jpg\" _src=\"http://yanxuan.nosdn.127.net/e69bd0a9b72ea444a2a9597d8573d808.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b1ead82c1d20e969d93714c91575891a.jpg\" _src=\"http://yanxuan.nosdn.127.net/b1ead82c1d20e969d93714c91575891a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8ae0db50efe7feb7236788568143c9e9.jpg\" _src=\"http://yanxuan.nosdn.127.net/8ae0db50efe7feb7236788568143c9e9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3161bbead17d75b34763be4552ab06ea.jpg\" _src=\"http://yanxuan.nosdn.127.net/3161bbead17d75b34763be4552ab06ea.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/88715f3acaec8cd8124acf8e765725c3.jpg\" _src=\"http://yanxuan.nosdn.127.net/88715f3acaec8cd8124acf8e765725c3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fe0a81f50cd82722f2fee0d3f2bcdccf.jpg\" _src=\"http://yanxuan.nosdn.127.net/fe0a81f50cd82722f2fee0d3f2bcdccf.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9a3d279a06c30bc982926000a7bcf149.jpg\" _src=\"http://yanxuan.nosdn.127.net/9a3d279a06c30bc982926000a7bcf149.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c0f481e69077703f35f542509d799426.jpg\" _src=\"http://yanxuan.nosdn.127.net/c0f481e69077703f35f542509d799426.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/86df378f128f248a591c6c972843272a.jpg\" _src=\"http://yanxuan.nosdn.127.net/86df378f128f248a591c6c972843272a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8427432a97e187089144bacd891467dd.jpg\" _src=\"http://yanxuan.nosdn.127.net/8427432a97e187089144bacd891467dd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d86f92f33c4e022fcc805aa26364b68f.jpg\" _src=\"http://yanxuan.nosdn.127.net/d86f92f33c4e022fcc805aa26364b68f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9ec0158a6100b3b28fd28026617a9979.jpg\" _src=\"http://yanxuan.nosdn.127.net/9ec0158a6100b3b28fd28026617a9979.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '11', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/7313946ceb4eba713bf2331baa7e450f.jpg', 'http://yanxuan.nosdn.127.net/d25b5990f16c6d1ac168a34b7aeca681.png', '89.00', '2562', '1110004', '0.00', '限时购', '', '0.00', '0', '0', '0', '97.90', null, null, null, null);
  691. INSERT INTO `nideshop_goods` VALUES ('1109005', '1011004', '1109005', '方圆木钟', '0', '100', '', '坚硬榉木,实木雕刻', '<p><img src=\"http://yanxuan.nosdn.127.net/7bb40b67df074039b7fe97dbcf448c43.jpg\" _src=\"http://yanxuan.nosdn.127.net/7bb40b67df074039b7fe97dbcf448c43.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a405e659b4249519b6d891dbf2b58c01.jpg\" _src=\"http://yanxuan.nosdn.127.net/a405e659b4249519b6d891dbf2b58c01.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/11720fe8cd48a2658942b481276a3de4.jpg\" _src=\"http://yanxuan.nosdn.127.net/11720fe8cd48a2658942b481276a3de4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fedf3620e560e8210a63493200d08c51.jpg\" _src=\"http://yanxuan.nosdn.127.net/fedf3620e560e8210a63493200d08c51.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9934ca6f2065c0383e44a0ae4b524030.jpg\" _src=\"http://yanxuan.nosdn.127.net/9934ca6f2065c0383e44a0ae4b524030.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7336ac68c0d262fa31fdb16040d0f8af.jpg\" _src=\"http://yanxuan.nosdn.127.net/7336ac68c0d262fa31fdb16040d0f8af.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/10b7cb83b00cda576314313705fa7868.jpg\" _src=\"http://yanxuan.nosdn.127.net/10b7cb83b00cda576314313705fa7868.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d3e73216286e1495c90e5b9c9705f19e.jpg\" _src=\"http://yanxuan.nosdn.127.net/d3e73216286e1495c90e5b9c9705f19e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/919cf6a418c3f0898d101af1640c12c7.jpg\" _src=\"http://yanxuan.nosdn.127.net/919cf6a418c3f0898d101af1640c12c7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/26d59296f4e67c55e9aead03b498d4fb.jpg\" _src=\"http://yanxuan.nosdn.127.net/26d59296f4e67c55e9aead03b498d4fb.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b218ff0f6fc058e0306e610a160d16fa.jpg\" _src=\"http://yanxuan.nosdn.127.net/b218ff0f6fc058e0306e610a160d16fa.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1143d61bfe38a4fc60774aa8af009d7e.jpg\" _src=\"http://yanxuan.nosdn.127.net/1143d61bfe38a4fc60774aa8af009d7e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/730c574abd298983b3ed2763f821c0fb.jpg\" _src=\"http://yanxuan.nosdn.127.net/730c574abd298983b3ed2763f821c0fb.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2af0aa58c62dde1dd4875fe87a4c5a99.jpg\" _src=\"http://yanxuan.nosdn.127.net/2af0aa58c62dde1dd4875fe87a4c5a99.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ec7e7448a8e296021ab462cd092a2501.jpg\" _src=\"http://yanxuan.nosdn.127.net/ec7e7448a8e296021ab462cd092a2501.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5539a0ddef738d82cbae457f09065840.jpg\" _src=\"http://yanxuan.nosdn.127.net/5539a0ddef738d82cbae457f09065840.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9565467e098db81db007bade84b364a4.jpg\" _src=\"http://yanxuan.nosdn.127.net/9565467e098db81db007bade84b364a4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/adfbd2319e2dc365deebf0eea18a4a0d.jpg\" _src=\"http://yanxuan.nosdn.127.net/adfbd2319e2dc365deebf0eea18a4a0d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/adece1b89239b86275b593c6d9ef7437.jpg\" _src=\"http://yanxuan.nosdn.127.net/adece1b89239b86275b593c6d9ef7437.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/66c4bd6f0fd889eabb4497644bfffee5.jpg\" _src=\"http://yanxuan.nosdn.127.net/66c4bd6f0fd889eabb4497644bfffee5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b68b8e696a281e00e7515ee5004219bd.jpg\" _src=\"http://yanxuan.nosdn.127.net/b68b8e696a281e00e7515ee5004219bd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4b2e59292e893aebfdf7f428569eb7e6.jpg\" _src=\"http://yanxuan.nosdn.127.net/4b2e59292e893aebfdf7f428569eb7e6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ec90203d32e0171312f69fb4c2fa5ca3.jpg\" _src=\"http://yanxuan.nosdn.127.net/ec90203d32e0171312f69fb4c2fa5ca3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/804a3622271a95a3dd0a19524e9ebc46.jpg\" _src=\"http://yanxuan.nosdn.127.net/804a3622271a95a3dd0a19524e9ebc46.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8b14c06512fab1bca0a5a63cfc88dc8e.jpg\" _src=\"http://yanxuan.nosdn.127.net/8b14c06512fab1bca0a5a63cfc88dc8e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/574c9c2ed1b416362db5df5a75bd47f9.jpg\" _src=\"http://yanxuan.nosdn.127.net/574c9c2ed1b416362db5df5a75bd47f9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3495a30d87a9448899a72b0d7e81643e.jpg\" _src=\"http://yanxuan.nosdn.127.net/3495a30d87a9448899a72b0d7e81643e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/07dbd43bc04098ffc1d4264be2a236ae.jpg\" _src=\"http://yanxuan.nosdn.127.net/07dbd43bc04098ffc1d4264be2a236ae.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c1dd028e3f58ddbd7d4c93c93cf044fe.jpg\" _src=\"http://yanxuan.nosdn.127.net/c1dd028e3f58ddbd7d4c93c93cf044fe.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ee1c77ca898e5bc28c6fc32dee421af9.jpg\" _src=\"http://yanxuan.nosdn.127.net/ee1c77ca898e5bc28c6fc32dee421af9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/58d2095e21406135172ee9f7f8b15cae.jpg\" _src=\"http://yanxuan.nosdn.127.net/58d2095e21406135172ee9f7f8b15cae.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3e6693f623dc6ba917a160149072550f.jpg\" _src=\"http://yanxuan.nosdn.127.net/3e6693f623dc6ba917a160149072550f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/420025a688a7e5c28b974df7573535a8.jpg\" _src=\"http://yanxuan.nosdn.127.net/420025a688a7e5c28b974df7573535a8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a31bdac2e2f75c85a3b4cc02877eee6a.jpg\" _src=\"http://yanxuan.nosdn.127.net/a31bdac2e2f75c85a3b4cc02877eee6a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b995c56514fc2c293c3a39c0fad703d6.jpg\" _src=\"http://yanxuan.nosdn.127.net/b995c56514fc2c293c3a39c0fad703d6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/78ac837deb7634e37e053b6ba4ce1074.jpg\" _src=\"http://yanxuan.nosdn.127.net/78ac837deb7634e37e053b6ba4ce1074.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d39bb938c8ad37f588dcce36ed603dca.jpg\" _src=\"http://yanxuan.nosdn.127.net/d39bb938c8ad37f588dcce36ed603dca.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bc32f60d12caec82201282fe3bf7c505.jpg\" _src=\"http://yanxuan.nosdn.127.net/bc32f60d12caec82201282fe3bf7c505.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9fd482c1d56c50722e34f3f86932ffd9.jpg\" _src=\"http://yanxuan.nosdn.127.net/9fd482c1d56c50722e34f3f86932ffd9.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '12', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/1bdd7132783b2857886eeebb425ee07e.jpg', 'http://yanxuan.nosdn.127.net/7f508253f65733c7b2af52dd3943ee28.png', '79.00', '1717', '1110006', '0.00', '限时购', '', '0.00', '0', '0', '0', '86.90', null, null, null, null);
  692. INSERT INTO `nideshop_goods` VALUES ('1109008', '1015000', '1109008', '云端沙发组合', '1001000', '100', '', 'MUJI供应商携手打造', '<p><img src=\"http://yanxuan.nosdn.127.net/fc48d623ad2effc32f47f70e6cba03ee.jpg\" _src=\"http://yanxuan.nosdn.127.net/fc48d623ad2effc32f47f70e6cba03ee.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/eb4a737f74e7779d19c998a0ba63cd3d.jpg\" _src=\"http://yanxuan.nosdn.127.net/eb4a737f74e7779d19c998a0ba63cd3d.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/937038be185fc64572c38de8d69c01cb.jpg\" _src=\"http://yanxuan.nosdn.127.net/937038be185fc64572c38de8d69c01cb.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/40108d88fbfe752bfb7a6fc4ae8edd79.jpg\" _src=\"http://yanxuan.nosdn.127.net/40108d88fbfe752bfb7a6fc4ae8edd79.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a28a0420050289d3e19b88d28b76bab6.jpg\" _src=\"http://yanxuan.nosdn.127.net/a28a0420050289d3e19b88d28b76bab6.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/917acd26520c10b3c82d2beed37fddd7.jpg\" _src=\"http://yanxuan.nosdn.127.net/917acd26520c10b3c82d2beed37fddd7.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cbf4e7008c33239f7cf79aa93f68ee15.jpg\" _src=\"http://yanxuan.nosdn.127.net/cbf4e7008c33239f7cf79aa93f68ee15.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/54065646ecdae5f010980bfa24c4fbbe.jpg\" _src=\"http://yanxuan.nosdn.127.net/54065646ecdae5f010980bfa24c4fbbe.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ff510e36a124d4c1ccce47a1e06cba30.jpg\" _src=\"http://yanxuan.nosdn.127.net/ff510e36a124d4c1ccce47a1e06cba30.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b33aa96ae830fec44aac042f1f28ddd8.jpg\" _src=\"http://yanxuan.nosdn.127.net/b33aa96ae830fec44aac042f1f28ddd8.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ff74ec438ab3d7805ea2aed2c6552746.jpg\" _src=\"http://yanxuan.nosdn.127.net/ff74ec438ab3d7805ea2aed2c6552746.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6eaff5f5a38874a6e2a9b56feeede7d7.jpg\" _src=\"http://yanxuan.nosdn.127.net/6eaff5f5a38874a6e2a9b56feeede7d7.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/200c9aae4e02a75bd71a5dea29f726c4.jpg\" _src=\"http://yanxuan.nosdn.127.net/200c9aae4e02a75bd71a5dea29f726c4.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cd48b3606d7bb30243eebded22617d2e.jpg\" _src=\"http://yanxuan.nosdn.127.net/cd48b3606d7bb30243eebded22617d2e.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bcc453ac7a81cfc517a192ff00013745.jpg\" _src=\"http://yanxuan.nosdn.127.net/bcc453ac7a81cfc517a192ff00013745.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5a4e50f5936b3c0ec5b163c8ccc99e8a.jpg\" _src=\"http://yanxuan.nosdn.127.net/5a4e50f5936b3c0ec5b163c8ccc99e8a.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a79d51d47fadefe7b7db72052d98337f.jpg\" _src=\"http://yanxuan.nosdn.127.net/a79d51d47fadefe7b7db72052d98337f.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0ed0d597c81b9ec49b969f8357eac8bd.jpg\" _src=\"http://yanxuan.nosdn.127.net/0ed0d597c81b9ec49b969f8357eac8bd.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/177f0b2f78bcccf6926c47eb7ef2b047.jpg\" _src=\"http://yanxuan.nosdn.127.net/177f0b2f78bcccf6926c47eb7ef2b047.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/808241e6912a1015f94da67d80a296cf.jpg\" _src=\"http://yanxuan.nosdn.127.net/808241e6912a1015f94da67d80a296cf.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a123c112a75dee43559674c680c941ae.jpg\" _src=\"http://yanxuan.nosdn.127.net/a123c112a75dee43559674c680c941ae.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/832eefe1435ceeaeb421ce7ec0a4fa51.jpg\" _src=\"http://yanxuan.nosdn.127.net/832eefe1435ceeaeb421ce7ec0a4fa51.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6b6f1a00452bc026eba362e4a1d58e04.jpg\" _src=\"http://yanxuan.nosdn.127.net/6b6f1a00452bc026eba362e4a1d58e04.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/761f4fadf4c797affe42c125b29c8ec9.jpg\" _src=\"http://yanxuan.nosdn.127.net/761f4fadf4c797affe42c125b29c8ec9.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d927eded8a39bbb888f9994cd236cb56.jpg\" _src=\"http://yanxuan.nosdn.127.net/d927eded8a39bbb888f9994cd236cb56.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/70c47dd65c21bd3fe52f179480268b54.jpg\" _src=\"http://yanxuan.nosdn.127.net/70c47dd65c21bd3fe52f179480268b54.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/02a226a867d397c20aafae1f5449225c.jpg\" _src=\"http://yanxuan.nosdn.127.net/02a226a867d397c20aafae1f5449225c.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/76c8f1702e4c8f1072eb1cba6776f7c7.jpg\" _src=\"http://yanxuan.nosdn.127.net/76c8f1702e4c8f1072eb1cba6776f7c7.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/36225b551bb1e85691f29aa040ab9497.jpg\" _src=\"http://yanxuan.nosdn.127.net/36225b551bb1e85691f29aa040ab9497.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5d9ba3ce28d578267765c4d2bc62b887.jpg\" _src=\"http://yanxuan.nosdn.127.net/5d9ba3ce28d578267765c4d2bc62b887.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/099296fb5f8e88ab1c5eaffbd37b8c70.jpg\" _src=\"http://yanxuan.nosdn.127.net/099296fb5f8e88ab1c5eaffbd37b8c70.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bce3a4f414e16497dd0a1301fe945732.jpg\" _src=\"http://yanxuan.nosdn.127.net/bce3a4f414e16497dd0a1301fe945732.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e75874726dd5a742599bc96f4401b51a.jpg\" _src=\"http://yanxuan.nosdn.127.net/e75874726dd5a742599bc96f4401b51a.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5cf202434f6e7d84388eb3f00aef3cf7.jpg\" _src=\"http://yanxuan.nosdn.127.net/5cf202434f6e7d84388eb3f00aef3cf7.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2788c15d1fb4b12ea989b4626bf4dd42.jpg\" _src=\"http://yanxuan.nosdn.127.net/2788c15d1fb4b12ea989b4626bf4dd42.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/988c7843cd5e3c3d41ded3f964e83f28.jpg\" _src=\"http://yanxuan.nosdn.127.net/988c7843cd5e3c3d41ded3f964e83f28.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f8680210644f9ddacc776c086acf087c.jpg\" _src=\"http://yanxuan.nosdn.127.net/f8680210644f9ddacc776c086acf087c.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/06a5234e14a9a5a13cab234e338ee047.jpg\" _src=\"http://yanxuan.nosdn.127.net/06a5234e14a9a5a13cab234e338ee047.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6913fa996a08d015baa5dbb81c6751b4.jpg\" _src=\"http://yanxuan.nosdn.127.net/6913fa996a08d015baa5dbb81c6751b4.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5559938dfbba2abfe6dc2905892048d6.jpg\" _src=\"http://yanxuan.nosdn.127.net/5559938dfbba2abfe6dc2905892048d6.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3bd6c290baf02cd9d6e8f2036ad96055.jpg\" _src=\"http://yanxuan.nosdn.127.net/3bd6c290baf02cd9d6e8f2036ad96055.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c13f0abbe2e7c8bb6d78986dcaca45a8.jpg\" _src=\"http://yanxuan.nosdn.127.net/c13f0abbe2e7c8bb6d78986dcaca45a8.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/38d1037057ffb3642d518415c3c21400.jpg\" _src=\"http://yanxuan.nosdn.127.net/38d1037057ffb3642d518415c3c21400.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c8f56ea468a1a9fc4dbb462be94b0167.jpg\" _src=\"http://yanxuan.nosdn.127.net/c8f56ea468a1a9fc4dbb462be94b0167.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f47f956787047fc4c05107beef0fd15b.jpg\" _src=\"http://yanxuan.nosdn.127.net/f47f956787047fc4c05107beef0fd15b.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/59ae5ce70d03639554b3e0d222416de1.jpg\" _src=\"http://yanxuan.nosdn.127.net/59ae5ce70d03639554b3e0d222416de1.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7e54c9882590f3dc3524229c190098b7.jpg\" _src=\"http://yanxuan.nosdn.127.net/7e54c9882590f3dc3524229c190098b7.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fb714d5f8e9c3a0cbb063f492c94a9a7.jpg\" _src=\"http://yanxuan.nosdn.127.net/fb714d5f8e9c3a0cbb063f492c94a9a7.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/afdf2db3aeababc5e2eacbe3e03ab505.jpg\" _src=\"http://yanxuan.nosdn.127.net/afdf2db3aeababc5e2eacbe3e03ab505.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8e4b140b65d6da223b2e43082640715e.jpg\" _src=\"http://yanxuan.nosdn.127.net/8e4b140b65d6da223b2e43082640715e.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0a4feb902cbd98370508538d252985c2.jpg\" _src=\"http://yanxuan.nosdn.127.net/0a4feb902cbd98370508538d252985c2.jpg\"/></p><p style=\"text-align: center;\"><br/></p>', '1', '2017-08-30 11:40:11', '2', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/2230e0d14986e273fb310269a0eb075c.jpg', 'http://yanxuan.nosdn.127.net/c5be2604c0e4186a4e7079feeb742cee.png', '3999.00', '274', '1110009', '0.00', '限时购', '', '0.00', '0', '0', '0', '4398.90', null, null, null, null);
  693. INSERT INTO `nideshop_goods` VALUES ('1109034', '1011004', '1109034', 'LCD电子钟 升级版', '0', '100', '', 'MUJI风格,清晰简明', '<p><img src=\"http://yanxuan.nosdn.127.net/916068b542d339d851afa9ed21cbb615.jpg\" _src=\"http://yanxuan.nosdn.127.net/916068b542d339d851afa9ed21cbb615.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1772c676b8a0151a3277415147e91aea.jpg\" _src=\"http://yanxuan.nosdn.127.net/1772c676b8a0151a3277415147e91aea.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a2654631d02db94d1b16f35c3386e295.jpg\" _src=\"http://yanxuan.nosdn.127.net/a2654631d02db94d1b16f35c3386e295.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fe4364bc9c185394f155ef30a9fe7a20.jpg\" _src=\"http://yanxuan.nosdn.127.net/fe4364bc9c185394f155ef30a9fe7a20.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2c75be07a87009da083944b52a283bf3.jpg\" _src=\"http://yanxuan.nosdn.127.net/2c75be07a87009da083944b52a283bf3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f19e7292288a347d0fa0590e22069946.jpg\" _src=\"http://yanxuan.nosdn.127.net/f19e7292288a347d0fa0590e22069946.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/39f509f66ae98d0aca642af803abdf04.jpg\" _src=\"http://yanxuan.nosdn.127.net/39f509f66ae98d0aca642af803abdf04.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8d540abac2bef015ac85083e377bbcd7.jpg\" _src=\"http://yanxuan.nosdn.127.net/8d540abac2bef015ac85083e377bbcd7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c7468d589f382664c61275bebfaf9177.jpg\" _src=\"http://yanxuan.nosdn.127.net/c7468d589f382664c61275bebfaf9177.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/885bb0148c6104578cd7ee31813dab44.jpg\" _src=\"http://yanxuan.nosdn.127.net/885bb0148c6104578cd7ee31813dab44.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a4ec0f7b8cabadbaca834957b65fd5ec.jpg\" _src=\"http://yanxuan.nosdn.127.net/a4ec0f7b8cabadbaca834957b65fd5ec.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fb2cf783f23f6945e961979a5cb2af27.jpg\" _src=\"http://yanxuan.nosdn.127.net/fb2cf783f23f6945e961979a5cb2af27.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/62c6c3025ce0a80b9cb0a214595a5a99.jpg\" _src=\"http://yanxuan.nosdn.127.net/62c6c3025ce0a80b9cb0a214595a5a99.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7be5447b74b0afd0cd3943adbf559cb9.jpg\" _src=\"http://yanxuan.nosdn.127.net/7be5447b74b0afd0cd3943adbf559cb9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/840c818a1206e5ae2a01a1e8800e4b4b.jpg\" _src=\"http://yanxuan.nosdn.127.net/840c818a1206e5ae2a01a1e8800e4b4b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fb8b9a45109a23285415fade5a798e27.jpg\" _src=\"http://yanxuan.nosdn.127.net/fb8b9a45109a23285415fade5a798e27.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c00c0a1b4af1503a90ef691999fdf4d9.jpg\" _src=\"http://yanxuan.nosdn.127.net/c00c0a1b4af1503a90ef691999fdf4d9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/be93945860e951158237bbf4a1c86b96.jpg\" _src=\"http://yanxuan.nosdn.127.net/be93945860e951158237bbf4a1c86b96.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bc0d8c9697cbf9303954b77761ff4a0f.jpg\" _src=\"http://yanxuan.nosdn.127.net/bc0d8c9697cbf9303954b77761ff4a0f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8abfd0b6ea2dd3106ea8678793279d6f.jpg\" _src=\"http://yanxuan.nosdn.127.net/8abfd0b6ea2dd3106ea8678793279d6f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/abd55ff4c1325917cca7123dfaaccf2c.jpg\" _src=\"http://yanxuan.nosdn.127.net/abd55ff4c1325917cca7123dfaaccf2c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ec2c42f5a7c6c2efefb16db80cf761b2.jpg\" _src=\"http://yanxuan.nosdn.127.net/ec2c42f5a7c6c2efefb16db80cf761b2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5f394d926f4acfbd70b6ad3d733cc3e5.jpg\" _src=\"http://yanxuan.nosdn.127.net/5f394d926f4acfbd70b6ad3d733cc3e5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/01a4b743fe1395c9797c5922dd1f3a8a.jpg\" _src=\"http://yanxuan.nosdn.127.net/01a4b743fe1395c9797c5922dd1f3a8a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/22115c51b22dcf614054887e6662ddd3.jpg\" _src=\"http://yanxuan.nosdn.127.net/22115c51b22dcf614054887e6662ddd3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8fc720dc92ab05aaef2b055e5e3d27c8.jpg\" _src=\"http://yanxuan.nosdn.127.net/8fc720dc92ab05aaef2b055e5e3d27c8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/adb14137997b1a886a39e98a043ec511.jpg\" _src=\"http://yanxuan.nosdn.127.net/adb14137997b1a886a39e98a043ec511.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e53b80ee6104b5cea8edbff8bbe5547c.jpg\" _src=\"http://yanxuan.nosdn.127.net/e53b80ee6104b5cea8edbff8bbe5547c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/92e56e6bc6f548fae669831b38bfbc6f.jpg\" _src=\"http://yanxuan.nosdn.127.net/92e56e6bc6f548fae669831b38bfbc6f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/20b74a363cdb9b31e0141869fd285dbe.jpg\" _src=\"http://yanxuan.nosdn.127.net/20b74a363cdb9b31e0141869fd285dbe.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/031d65d8ebee352f28f614cc07935606.jpg\" _src=\"http://yanxuan.nosdn.127.net/031d65d8ebee352f28f614cc07935606.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a31a92d72ea93692a5cfbcaa7a02ced4.jpg\" _src=\"http://yanxuan.nosdn.127.net/a31a92d72ea93692a5cfbcaa7a02ced4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b897a81ca59bc7dd3aae8fe314254538.jpg\" _src=\"http://yanxuan.nosdn.127.net/b897a81ca59bc7dd3aae8fe314254538.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/77d0fbc4678a56713ae675a9884e4158.jpg\" _src=\"http://yanxuan.nosdn.127.net/77d0fbc4678a56713ae675a9884e4158.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/da8a7b7237f083a6561c9ffc8a97b466.jpg\" _src=\"http://yanxuan.nosdn.127.net/da8a7b7237f083a6561c9ffc8a97b466.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2724952293dfb4ab737640fab4b229d9.jpg\" _src=\"http://yanxuan.nosdn.127.net/2724952293dfb4ab737640fab4b229d9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e10bbb914bf44916e86b446e4c563d85.jpg\" _src=\"http://yanxuan.nosdn.127.net/e10bbb914bf44916e86b446e4c563d85.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c64c103d15388c0eda01086b8b977fe5.jpg\" _src=\"http://yanxuan.nosdn.127.net/c64c103d15388c0eda01086b8b977fe5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8d21b85379acabe83c692c5ebf625578.jpg\" _src=\"http://yanxuan.nosdn.127.net/8d21b85379acabe83c692c5ebf625578.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2f5c0d32e5ef81288dc44d08d183770b.jpg\" _src=\"http://yanxuan.nosdn.127.net/2f5c0d32e5ef81288dc44d08d183770b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/24dedb497122ca1a4b5bcdf10f4b9a85.jpg\" _src=\"http://yanxuan.nosdn.127.net/24dedb497122ca1a4b5bcdf10f4b9a85.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/02ece671c8dbca5f5436ff9f2eaf1b81.jpg\" _src=\"http://yanxuan.nosdn.127.net/02ece671c8dbca5f5436ff9f2eaf1b81.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/348adaa1d5bfe5b12296bb28e55e7017.jpg\" _src=\"http://yanxuan.nosdn.127.net/348adaa1d5bfe5b12296bb28e55e7017.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d22886559be279a0adbe787b5aae9dd0.jpg\" _src=\"http://yanxuan.nosdn.127.net/d22886559be279a0adbe787b5aae9dd0.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '10', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/2a48aa6b6e65d2741990710a3fde78b6.jpg', 'http://yanxuan.nosdn.127.net/c2c96acc680cbadb1787385598e1e593.png', '129.00', '277', '1110157', '0.00', '限时购', '', '0.00', '0', '0', '0', '141.90', null, null, null, null);
  694. INSERT INTO `nideshop_goods` VALUES ('1110002', '1011004', '1110002', '大头风扇', '0', '100', '', '静音劲风,小巧灵动', '<p><br/></p><p><img src=\"http://yanxuan.nosdn.127.net/203ede95fa7111d6877779d3316837b8.jpg\" _src=\"http://yanxuan.nosdn.127.net/203ede95fa7111d6877779d3316837b8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/118783171188896e5a75e078dc64330b.jpg\" _src=\"http://yanxuan.nosdn.127.net/118783171188896e5a75e078dc64330b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2482102c677689ad80f641040e7f12ca.jpg\" _src=\"http://yanxuan.nosdn.127.net/2482102c677689ad80f641040e7f12ca.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2d89b04c486f855444214d037c0df165.jpg\" _src=\"http://yanxuan.nosdn.127.net/2d89b04c486f855444214d037c0df165.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1f38c7e6a66526484d34fbb8a17b4a9d.jpg\" _src=\"http://yanxuan.nosdn.127.net/1f38c7e6a66526484d34fbb8a17b4a9d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9920394dea895df464180e43d5f11946.jpg\" _src=\"http://yanxuan.nosdn.127.net/9920394dea895df464180e43d5f11946.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/933a7012100a94c8c3a664ed2adaa7e0.jpg\" _src=\"http://yanxuan.nosdn.127.net/933a7012100a94c8c3a664ed2adaa7e0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/021a4220607d345c2469f015a672bb42.jpg\" _src=\"http://yanxuan.nosdn.127.net/021a4220607d345c2469f015a672bb42.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8e91be65f64f5522cadc47c4a7037d6e.jpg\" _src=\"http://yanxuan.nosdn.127.net/8e91be65f64f5522cadc47c4a7037d6e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/785485e7129c77deff6a0d9c20a4ba51.jpg\" _src=\"http://yanxuan.nosdn.127.net/785485e7129c77deff6a0d9c20a4ba51.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/45706b81032aae5519417752679cc411.jpg\" _src=\"http://yanxuan.nosdn.127.net/45706b81032aae5519417752679cc411.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9db4ce4a3af0ecb731c5b0616b6611a9.jpg\" _src=\"http://yanxuan.nosdn.127.net/9db4ce4a3af0ecb731c5b0616b6611a9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4fdfa4b3536119fba27651d3b71bdb28.jpg\" _src=\"http://yanxuan.nosdn.127.net/4fdfa4b3536119fba27651d3b71bdb28.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8f0368808f4454e7e423ecac84f72b4b.jpg\" _src=\"http://yanxuan.nosdn.127.net/8f0368808f4454e7e423ecac84f72b4b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d4927392968e0cd9b8ab64a9596c7781.jpg\" _src=\"http://yanxuan.nosdn.127.net/d4927392968e0cd9b8ab64a9596c7781.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/abd90c3be9111efdaf56702abc1a7d32.jpg\" _src=\"http://yanxuan.nosdn.127.net/abd90c3be9111efdaf56702abc1a7d32.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a0bc613574aa2fd1f7021f132b18a570.jpg\" _src=\"http://yanxuan.nosdn.127.net/a0bc613574aa2fd1f7021f132b18a570.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5a3e0ccf6e716c970e1bca331cad4163.jpg\" _src=\"http://yanxuan.nosdn.127.net/5a3e0ccf6e716c970e1bca331cad4163.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8fc74c4dfcb1231f4bcb5d6b4eca5053.jpg\" _src=\"http://yanxuan.nosdn.127.net/8fc74c4dfcb1231f4bcb5d6b4eca5053.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/08cfeda8dcd77031c751c53f48091ad4.jpg\" _src=\"http://yanxuan.nosdn.127.net/08cfeda8dcd77031c751c53f48091ad4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/28208b3f32a58d5ea772b3cff5342167.jpg\" _src=\"http://yanxuan.nosdn.127.net/28208b3f32a58d5ea772b3cff5342167.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9955d49842ea9ae1fed75e558cc5177d.jpg\" _src=\"http://yanxuan.nosdn.127.net/9955d49842ea9ae1fed75e558cc5177d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6c494e88a27201839de03178c95c2449.jpg\" _src=\"http://yanxuan.nosdn.127.net/6c494e88a27201839de03178c95c2449.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e2647aa98774327c4285faa067dab8be.jpg\" _src=\"http://yanxuan.nosdn.127.net/e2647aa98774327c4285faa067dab8be.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0b8e5df31c4a80d40cb6a03528240118.jpg\" _src=\"http://yanxuan.nosdn.127.net/0b8e5df31c4a80d40cb6a03528240118.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3e19d037145db07c5250f43051ad6fc1.jpg\" _src=\"http://yanxuan.nosdn.127.net/3e19d037145db07c5250f43051ad6fc1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/98c0f39559e242a9cbf06a336e2beb7b.jpg\" _src=\"http://yanxuan.nosdn.127.net/98c0f39559e242a9cbf06a336e2beb7b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b792c614faebf92e585023513972078c.jpg\" _src=\"http://yanxuan.nosdn.127.net/b792c614faebf92e585023513972078c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2c6ed14e2f541b92f94d9d368599bd34.jpg\" _src=\"http://yanxuan.nosdn.127.net/2c6ed14e2f541b92f94d9d368599bd34.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2f72b85409adfe0757b147f674a61dc8.jpg\" _src=\"http://yanxuan.nosdn.127.net/2f72b85409adfe0757b147f674a61dc8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3509cd7bd045dcb8e283ce5b66744901.jpg\" _src=\"http://yanxuan.nosdn.127.net/3509cd7bd045dcb8e283ce5b66744901.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/444d6182b18f36a6db6bd9243b0cd91e.jpg\" _src=\"http://yanxuan.nosdn.127.net/444d6182b18f36a6db6bd9243b0cd91e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/60a8f97142d9bafc49d266987a4ded55.jpg\" _src=\"http://yanxuan.nosdn.127.net/60a8f97142d9bafc49d266987a4ded55.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/618eb2c0098cb033c85e4c9cc4c99536.jpg\" _src=\"http://yanxuan.nosdn.127.net/618eb2c0098cb033c85e4c9cc4c99536.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/81f299cbe5157dfdac89b46d56cc8db1.jpg\" _src=\"http://yanxuan.nosdn.127.net/81f299cbe5157dfdac89b46d56cc8db1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d8ef5aebb0ec5dc06e9031b798afff6f.jpg\" _src=\"http://yanxuan.nosdn.127.net/d8ef5aebb0ec5dc06e9031b798afff6f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/776fbe725382c6ca162ef97f535bc0d2.jpg\" _src=\"http://yanxuan.nosdn.127.net/776fbe725382c6ca162ef97f535bc0d2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3fd7e45e34bee0bce296881d9db41dc8.jpg\" _src=\"http://yanxuan.nosdn.127.net/3fd7e45e34bee0bce296881d9db41dc8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6913605e36b412143cc474312a268272.jpg\" _src=\"http://yanxuan.nosdn.127.net/6913605e36b412143cc474312a268272.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ec7e39a80418d88bffa4dcaf57844027.jpg\" _src=\"http://yanxuan.nosdn.127.net/ec7e39a80418d88bffa4dcaf57844027.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/13dd81aea5b40630749591aca76dd653.jpg\" _src=\"http://yanxuan.nosdn.127.net/13dd81aea5b40630749591aca76dd653.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/318b620975457327ce187b61f637598e.jpg\" _src=\"http://yanxuan.nosdn.127.net/318b620975457327ce187b61f637598e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1f2f5a6d2156afb267cb23bbbd4e22db.jpg\" _src=\"http://yanxuan.nosdn.127.net/1f2f5a6d2156afb267cb23bbbd4e22db.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5e1ab20bad5adbf92217fb3e1409eb68.jpg\" _src=\"http://yanxuan.nosdn.127.net/5e1ab20bad5adbf92217fb3e1409eb68.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/19e0d90436d03fa3ebf1dd93aa966d96.jpg\" _src=\"http://yanxuan.nosdn.127.net/19e0d90436d03fa3ebf1dd93aa966d96.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/08f235aacaa4597efed2f2a22a50ef40.jpg\" _src=\"http://yanxuan.nosdn.127.net/08f235aacaa4597efed2f2a22a50ef40.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0106676c68744e9f330428689a437e63.jpg\" _src=\"http://yanxuan.nosdn.127.net/0106676c68744e9f330428689a437e63.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7c7dce7efe74d1054c867358a5da97d6.jpg\" _src=\"http://yanxuan.nosdn.127.net/7c7dce7efe74d1054c867358a5da97d6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7ce1f545e4f790b8199899ade0f8d21b.jpg\" _src=\"http://yanxuan.nosdn.127.net/7ce1f545e4f790b8199899ade0f8d21b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6e4b4fb01786940d4b15f7990716a67e.jpg\" _src=\"http://yanxuan.nosdn.127.net/6e4b4fb01786940d4b15f7990716a67e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/22f335bf15b1f6b2222d39673ce31bdf.jpg\" _src=\"http://yanxuan.nosdn.127.net/22f335bf15b1f6b2222d39673ce31bdf.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4ab9a0a8406256e5414c5f66643f83b9.jpg\" _src=\"http://yanxuan.nosdn.127.net/4ab9a0a8406256e5414c5f66643f83b9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3d0c9aeeac1b5699883283d1c491851b.jpg\" _src=\"http://yanxuan.nosdn.127.net/3d0c9aeeac1b5699883283d1c491851b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0c71b76d5d6332160f7cab0c8967d163.jpg\" _src=\"http://yanxuan.nosdn.127.net/0c71b76d5d6332160f7cab0c8967d163.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f1c327c072a52eff26349c23274e3eba.jpg\" _src=\"http://yanxuan.nosdn.127.net/f1c327c072a52eff26349c23274e3eba.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d3df2f3f37bc3912f016193915d2eaf8.jpg\" _src=\"http://yanxuan.nosdn.127.net/d3df2f3f37bc3912f016193915d2eaf8.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '13', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/e08658b7f52f097de81d912eda9dcd74.jpg', 'http://yanxuan.nosdn.127.net/a7a524512c34d24a4b9762766dd9d0f0.png', '119.00', '11433', '1111007', '0.00', '限时购', '', '0.00', '0', '0', '0', '130.90', null, null, null, null);
  695. INSERT INTO `nideshop_goods` VALUES ('1110003', '1008009', '1110003', '全棉针织条纹四件套 新款', '1001000', '100', '', '裸睡享受,柔软透气有弹性', '<p><img src=\"http://yanxuan.nosdn.127.net/51409b5b30124fcef4b15ae9bd3d1047.jpg\" _src=\"http://yanxuan.nosdn.127.net/51409b5b30124fcef4b15ae9bd3d1047.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5ed3bbf85dc26140e5b054ea5ff8aa28.jpg\" _src=\"http://yanxuan.nosdn.127.net/5ed3bbf85dc26140e5b054ea5ff8aa28.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1486e921307df5cbaf21f27d2ffb4404.jpg\" _src=\"http://yanxuan.nosdn.127.net/1486e921307df5cbaf21f27d2ffb4404.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8692330cd1abc6317f090ccd5d28bf9f.jpg\" _src=\"http://yanxuan.nosdn.127.net/8692330cd1abc6317f090ccd5d28bf9f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3e046657e9f8b523c0cd93d2fbbe566c.jpg\" _src=\"http://yanxuan.nosdn.127.net/3e046657e9f8b523c0cd93d2fbbe566c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b2ca5a528cfd0c24bb97aed0c1a2fe35.jpg\" _src=\"http://yanxuan.nosdn.127.net/b2ca5a528cfd0c24bb97aed0c1a2fe35.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a0087be757bbb5070a9495cf32d2d7a4.jpg\" _src=\"http://yanxuan.nosdn.127.net/a0087be757bbb5070a9495cf32d2d7a4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bce9b677188a36b86fa40e13011a43a7.jpg\" _src=\"http://yanxuan.nosdn.127.net/bce9b677188a36b86fa40e13011a43a7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6a0a90deb515f06d8d1c275c2057e368.jpg\" _src=\"http://yanxuan.nosdn.127.net/6a0a90deb515f06d8d1c275c2057e368.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/39d50a3a61d13163bf83774edd2db5bf.jpg\" _src=\"http://yanxuan.nosdn.127.net/39d50a3a61d13163bf83774edd2db5bf.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/408ae6a44271a7fec18dcaaa66a66d2f.jpg\" _src=\"http://yanxuan.nosdn.127.net/408ae6a44271a7fec18dcaaa66a66d2f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/033fd7aed18e0fcd50ea695239fdf5d9.jpg\" _src=\"http://yanxuan.nosdn.127.net/033fd7aed18e0fcd50ea695239fdf5d9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/519ddc7d3c063973fbd221a8bf9fb62c.jpg\" _src=\"http://yanxuan.nosdn.127.net/519ddc7d3c063973fbd221a8bf9fb62c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4855bf5174f5a9c59ff92b134a9c6702.jpg\" _src=\"http://yanxuan.nosdn.127.net/4855bf5174f5a9c59ff92b134a9c6702.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a2a6d73ee470dfc663b1ef7f45d25f0e.jpg\" _src=\"http://yanxuan.nosdn.127.net/a2a6d73ee470dfc663b1ef7f45d25f0e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1a59172ea5938721b3a5a66b049bc31a.jpg\" _src=\"http://yanxuan.nosdn.127.net/1a59172ea5938721b3a5a66b049bc31a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8c29ecaa289359d6a9ee0f553e512902.jpg\" _src=\"http://yanxuan.nosdn.127.net/8c29ecaa289359d6a9ee0f553e512902.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/717bff823050ff266da8e0ae04eae1cc.jpg\" _src=\"http://yanxuan.nosdn.127.net/717bff823050ff266da8e0ae04eae1cc.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1de5768520db342444d3cb620a9fdd4f.jpg\" _src=\"http://yanxuan.nosdn.127.net/1de5768520db342444d3cb620a9fdd4f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/453b37dfd7b3ae539f7afb7e3d3fda73.jpg\" _src=\"http://yanxuan.nosdn.127.net/453b37dfd7b3ae539f7afb7e3d3fda73.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/29a9b2ac9aa56666fafd4c90b1a7fed1.jpg\" _src=\"http://yanxuan.nosdn.127.net/29a9b2ac9aa56666fafd4c90b1a7fed1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8a15810a575de26a33a5ac9983c68939.jpg\" _src=\"http://yanxuan.nosdn.127.net/8a15810a575de26a33a5ac9983c68939.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fbe607ff748b140e02946bb28578a179.jpg\" _src=\"http://yanxuan.nosdn.127.net/fbe607ff748b140e02946bb28578a179.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/02e0e40e7423fbf85ad31ccb483b519b.jpg\" _src=\"http://yanxuan.nosdn.127.net/02e0e40e7423fbf85ad31ccb483b519b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2a352d098862cc87a3de60a42147896f.jpg\" _src=\"http://yanxuan.nosdn.127.net/2a352d098862cc87a3de60a42147896f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b783bbe92f495b5d1095afe96d2a3685.jpg\" _src=\"http://yanxuan.nosdn.127.net/b783bbe92f495b5d1095afe96d2a3685.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a55100ca3526614393371f7f3a466dda.jpg\" _src=\"http://yanxuan.nosdn.127.net/a55100ca3526614393371f7f3a466dda.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e40fb00aec446ed6695e25d458b4a1bc.jpg\" _src=\"http://yanxuan.nosdn.127.net/e40fb00aec446ed6695e25d458b4a1bc.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/23481a0858e9d4a62a5b707c6b3f8f4b.jpg\" _src=\"http://yanxuan.nosdn.127.net/23481a0858e9d4a62a5b707c6b3f8f4b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a25526218ef089322f56b69dc12e14af.jpg\" _src=\"http://yanxuan.nosdn.127.net/a25526218ef089322f56b69dc12e14af.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a7c752cfaedadc0687c5774e00a760dc.jpg\" _src=\"http://yanxuan.nosdn.127.net/a7c752cfaedadc0687c5774e00a760dc.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/234a67ee6018ceb8660695e662fabb99.jpg\" _src=\"http://yanxuan.nosdn.127.net/234a67ee6018ceb8660695e662fabb99.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/174b1bb41003bcddd8dc9c9ef17ce224.jpg\" _src=\"http://yanxuan.nosdn.127.net/174b1bb41003bcddd8dc9c9ef17ce224.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/abd9fea1d638e7a5aecc6a7adc76c711.jpg\" _src=\"http://yanxuan.nosdn.127.net/abd9fea1d638e7a5aecc6a7adc76c711.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1e08f5def5de99f8bebe3ec6a1ae1c83.jpg\" _src=\"http://yanxuan.nosdn.127.net/1e08f5def5de99f8bebe3ec6a1ae1c83.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2995438e191249bd7d084a5d6f2373c8.jpg\" _src=\"http://yanxuan.nosdn.127.net/2995438e191249bd7d084a5d6f2373c8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bb07fd94e9566b69757833b2633b28df.jpg\" _src=\"http://yanxuan.nosdn.127.net/bb07fd94e9566b69757833b2633b28df.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f8fca21912470098294ec527ea245821.jpg\" _src=\"http://yanxuan.nosdn.127.net/f8fca21912470098294ec527ea245821.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/32f2e9e3f2b68c131e3219df1d2abda0.jpg\" _src=\"http://yanxuan.nosdn.127.net/32f2e9e3f2b68c131e3219df1d2abda0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/808917d73d100f81297b133b14976a2b.jpg\" _src=\"http://yanxuan.nosdn.127.net/808917d73d100f81297b133b14976a2b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b9af0fe13111566c77485e3be2151059.jpg\" _src=\"http://yanxuan.nosdn.127.net/b9af0fe13111566c77485e3be2151059.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/122464e4981f97f4ddb18a56e4eaae52.jpg\" _src=\"http://yanxuan.nosdn.127.net/122464e4981f97f4ddb18a56e4eaae52.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/abc8125353e8c485f68eecde6e49dddb.jpg\" _src=\"http://yanxuan.nosdn.127.net/abc8125353e8c485f68eecde6e49dddb.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a8ba0e58c2ff94139b3d808c33f907a4.jpg\" _src=\"http://yanxuan.nosdn.127.net/a8ba0e58c2ff94139b3d808c33f907a4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6134c0363c2861e9dc0b1244eaf8cf85.jpg\" _src=\"http://yanxuan.nosdn.127.net/6134c0363c2861e9dc0b1244eaf8cf85.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0fe8ed929bbf2f23b09b8359c846fbdf.jpg\" _src=\"http://yanxuan.nosdn.127.net/0fe8ed929bbf2f23b09b8359c846fbdf.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/94cf259d560b3f0d53603d261ad47d69.jpg\" _src=\"http://yanxuan.nosdn.127.net/94cf259d560b3f0d53603d261ad47d69.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8d14cd06d113b7053bbc416fce83e6ef.jpg\" _src=\"http://yanxuan.nosdn.127.net/8d14cd06d113b7053bbc416fce83e6ef.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a57ce45eccdc407c6d87d515d64c9d0f.jpg\" _src=\"http://yanxuan.nosdn.127.net/a57ce45eccdc407c6d87d515d64c9d0f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d339a7656c240792d234e3edbb1bdd6b.jpg\" _src=\"http://yanxuan.nosdn.127.net/d339a7656c240792d234e3edbb1bdd6b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f18f868fdf16912d4e89f3421fffec65.jpg\" _src=\"http://yanxuan.nosdn.127.net/f18f868fdf16912d4e89f3421fffec65.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8f2bae908dc57231874edb377b95e6d9.jpg\" _src=\"http://yanxuan.nosdn.127.net/8f2bae908dc57231874edb377b95e6d9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/efeb13be9fb6664625f37e639ec9cf67.jpg\" _src=\"http://yanxuan.nosdn.127.net/efeb13be9fb6664625f37e639ec9cf67.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c82da9f8e4b68ef552878a0ef8160e12.jpg\" _src=\"http://yanxuan.nosdn.127.net/c82da9f8e4b68ef552878a0ef8160e12.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/77db454604d83b15ed289604ac0c6282.jpg\" _src=\"http://yanxuan.nosdn.127.net/77db454604d83b15ed289604ac0c6282.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a5def4bad25b8f0105621f6151b20f29.jpg\" _src=\"http://yanxuan.nosdn.127.net/a5def4bad25b8f0105621f6151b20f29.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1204e404c87dad014daebe47946c642a.jpg\" _src=\"http://yanxuan.nosdn.127.net/1204e404c87dad014daebe47946c642a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/85165ab6336f96477b5ed4f40c1f4506.jpg\" _src=\"http://yanxuan.nosdn.127.net/85165ab6336f96477b5ed4f40c1f4506.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/76d0a15612658df2da7f90141c27575b.jpg\" _src=\"http://yanxuan.nosdn.127.net/76d0a15612658df2da7f90141c27575b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/18d88fcaa7184e70a3fe2af7a410ea92.jpg\" _src=\"http://yanxuan.nosdn.127.net/18d88fcaa7184e70a3fe2af7a410ea92.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '2', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/eeba45c72fa097c6e128d529b7a0c513.jpg', 'http://yanxuan.nosdn.127.net/72dfb4bfc1cd1b834c064a9d1d40627d.png', '299.00', '19852', '1111023', '0.00', '限时购', '', '0.00', '0', '0', '0', '328.90', null, null, null, null);
  696. INSERT INTO `nideshop_goods` VALUES ('1110004', '1008009', '1110004', '全棉针织纯色四件套', '1001000', '100', '', '日系纯色,面料轻柔舒透', '<p><img src=\"http://yanxuan.nosdn.127.net/e15427b1300012152bf9d92a2bc67c99.jpg\" _src=\"http://yanxuan.nosdn.127.net/e15427b1300012152bf9d92a2bc67c99.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a7428b57cf1524e25e868046a52c8c74.jpg\" _src=\"http://yanxuan.nosdn.127.net/a7428b57cf1524e25e868046a52c8c74.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0ba73e0fac1ddac61dac545147360f30.jpg\" _src=\"http://yanxuan.nosdn.127.net/0ba73e0fac1ddac61dac545147360f30.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2132694338933fdce383149a883680ab.jpg\" _src=\"http://yanxuan.nosdn.127.net/2132694338933fdce383149a883680ab.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/06f8db4f9ec0c46aa369e3a47334fdf6.jpg\" _src=\"http://yanxuan.nosdn.127.net/06f8db4f9ec0c46aa369e3a47334fdf6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/98ea40eb0129d0e9d8152d5db6f826a1.jpg\" _src=\"http://yanxuan.nosdn.127.net/98ea40eb0129d0e9d8152d5db6f826a1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/450133053e1e892623b0c66522e4cd13.jpg\" _src=\"http://yanxuan.nosdn.127.net/450133053e1e892623b0c66522e4cd13.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/266fe2d8d8284830ce353b717b134006.jpg\" _src=\"http://yanxuan.nosdn.127.net/266fe2d8d8284830ce353b717b134006.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8e79e83d77a24109e4e571e8bb327489.jpg\" _src=\"http://yanxuan.nosdn.127.net/8e79e83d77a24109e4e571e8bb327489.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4e7c40f873354dd00827a8e9a116ae9b.jpg\" _src=\"http://yanxuan.nosdn.127.net/4e7c40f873354dd00827a8e9a116ae9b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/dd63c2c2c421d9ae62e42378531eb9bb.jpg\" _src=\"http://yanxuan.nosdn.127.net/dd63c2c2c421d9ae62e42378531eb9bb.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e5d5fb2641ad2011b304a839dccfaceb.jpg\" _src=\"http://yanxuan.nosdn.127.net/e5d5fb2641ad2011b304a839dccfaceb.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e44ecb22b4288445c73348aee7848e74.jpg\" _src=\"http://yanxuan.nosdn.127.net/e44ecb22b4288445c73348aee7848e74.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ff2b9e9b6d07861e53c535de160c89b3.jpg\" _src=\"http://yanxuan.nosdn.127.net/ff2b9e9b6d07861e53c535de160c89b3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/dbd8db78cccec3b459cefc8403977565.jpg\" _src=\"http://yanxuan.nosdn.127.net/dbd8db78cccec3b459cefc8403977565.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7d33fa09d06e55946ed3ca575e1ac8ca.jpg\" _src=\"http://yanxuan.nosdn.127.net/7d33fa09d06e55946ed3ca575e1ac8ca.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/710e44a757e0af28923c6d8451729f9d.jpg\" _src=\"http://yanxuan.nosdn.127.net/710e44a757e0af28923c6d8451729f9d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/83fd15d26c23b24cdb85b56552ec1f60.jpg\" _src=\"http://yanxuan.nosdn.127.net/83fd15d26c23b24cdb85b56552ec1f60.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4a6aa91581b046928b799a84f0871d6b.jpg\" _src=\"http://yanxuan.nosdn.127.net/4a6aa91581b046928b799a84f0871d6b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/92c89ac95e0681e11f04772e5f1fb55c.jpg\" _src=\"http://yanxuan.nosdn.127.net/92c89ac95e0681e11f04772e5f1fb55c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/80b35361b1896d38260c3d1982c462ff.jpg\" _src=\"http://yanxuan.nosdn.127.net/80b35361b1896d38260c3d1982c462ff.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/eee8f49786481c7ea533e8315c743f96.jpg\" _src=\"http://yanxuan.nosdn.127.net/eee8f49786481c7ea533e8315c743f96.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/84eebca8658c8ed824c1b04ea5ce0262.jpg\" _src=\"http://yanxuan.nosdn.127.net/84eebca8658c8ed824c1b04ea5ce0262.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4a17beea5ce5e36f1de3e28121b3bf90.jpg\" _src=\"http://yanxuan.nosdn.127.net/4a17beea5ce5e36f1de3e28121b3bf90.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a6587bb904df455610f3e2893b403ff6.jpg\" _src=\"http://yanxuan.nosdn.127.net/a6587bb904df455610f3e2893b403ff6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/62d1faf12c878f8f8d0f6f90816f82eb.jpg\" _src=\"http://yanxuan.nosdn.127.net/62d1faf12c878f8f8d0f6f90816f82eb.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/64b1010703632d102692f1cfdc329c07.jpg\" _src=\"http://yanxuan.nosdn.127.net/64b1010703632d102692f1cfdc329c07.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ee9a6bd5a6d345274dfc5bd3df8f6673.jpg\" _src=\"http://yanxuan.nosdn.127.net/ee9a6bd5a6d345274dfc5bd3df8f6673.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/924b2879cd336d3fcc5c2dd064fa563d.jpg\" _src=\"http://yanxuan.nosdn.127.net/924b2879cd336d3fcc5c2dd064fa563d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5627b5789c5faeb6f2f0eb319d4eb758.jpg\" _src=\"http://yanxuan.nosdn.127.net/5627b5789c5faeb6f2f0eb319d4eb758.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a6125e2c756374638db2cff6e1f1834d.jpg\" _src=\"http://yanxuan.nosdn.127.net/a6125e2c756374638db2cff6e1f1834d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e7c65c61453f6503723ca73b502b3d89.jpg\" _src=\"http://yanxuan.nosdn.127.net/e7c65c61453f6503723ca73b502b3d89.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9d7b28b69a8c75f0a30a9753126d03c9.jpg\" _src=\"http://yanxuan.nosdn.127.net/9d7b28b69a8c75f0a30a9753126d03c9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/54841f38fc0883cd9ab86ac7b8345801.jpg\" _src=\"http://yanxuan.nosdn.127.net/54841f38fc0883cd9ab86ac7b8345801.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8703301aa06b22d2d6699745f9b15770.jpg\" _src=\"http://yanxuan.nosdn.127.net/8703301aa06b22d2d6699745f9b15770.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c824bc7de6471d1b07797d3c6f77a33d.jpg\" _src=\"http://yanxuan.nosdn.127.net/c824bc7de6471d1b07797d3c6f77a33d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7ce29e7160e862b4c55acb51734bbf30.jpg\" _src=\"http://yanxuan.nosdn.127.net/7ce29e7160e862b4c55acb51734bbf30.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/220774e0cdc07e4448af3cb650c398eb.jpg\" _src=\"http://yanxuan.nosdn.127.net/220774e0cdc07e4448af3cb650c398eb.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d660bb8f822d9f5fa9eeb2cad568ae0c.jpg\" _src=\"http://yanxuan.nosdn.127.net/d660bb8f822d9f5fa9eeb2cad568ae0c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1dfe8564614a61d7b040c02565211c77.jpg\" _src=\"http://yanxuan.nosdn.127.net/1dfe8564614a61d7b040c02565211c77.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a8b6f2ad58a4f4d159580362e4dc7625.jpg\" _src=\"http://yanxuan.nosdn.127.net/a8b6f2ad58a4f4d159580362e4dc7625.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f42bd22e79764026659e48e40c131353.jpg\" _src=\"http://yanxuan.nosdn.127.net/f42bd22e79764026659e48e40c131353.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/298706644d4d54146d693bb69d0972bb.jpg\" _src=\"http://yanxuan.nosdn.127.net/298706644d4d54146d693bb69d0972bb.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d77bdd18e48fd17010ebbb825bb52dcf.jpg\" _src=\"http://yanxuan.nosdn.127.net/d77bdd18e48fd17010ebbb825bb52dcf.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a11788ef69114eddb1dcdf4d9f8320e7.jpg\" _src=\"http://yanxuan.nosdn.127.net/a11788ef69114eddb1dcdf4d9f8320e7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c36bce03ee7386ff09f913bbf0eff163.jpg\" _src=\"http://yanxuan.nosdn.127.net/c36bce03ee7386ff09f913bbf0eff163.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/481edda8c381a26f138e2785714de72b.jpg\" _src=\"http://yanxuan.nosdn.127.net/481edda8c381a26f138e2785714de72b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0d8999ba08cb6002401523e55214a8fe.jpg\" _src=\"http://yanxuan.nosdn.127.net/0d8999ba08cb6002401523e55214a8fe.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4ae747c627f5a530dd1defad463fda5f.jpg\" _src=\"http://yanxuan.nosdn.127.net/4ae747c627f5a530dd1defad463fda5f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5bb1d2df0e1e9a9713aaa4fd534f9613.jpg\" _src=\"http://yanxuan.nosdn.127.net/5bb1d2df0e1e9a9713aaa4fd534f9613.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/89bfd74e9a71117724edef87fd9d3729.jpg\" _src=\"http://yanxuan.nosdn.127.net/89bfd74e9a71117724edef87fd9d3729.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4d9eb35c8b7fb88bf15352b9586b93f2.jpg\" _src=\"http://yanxuan.nosdn.127.net/4d9eb35c8b7fb88bf15352b9586b93f2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/400146bec77d8d243332c1e53a903839.jpg\" _src=\"http://yanxuan.nosdn.127.net/400146bec77d8d243332c1e53a903839.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d1c6b1cf18f2bf441aa90768aff1833a.jpg\" _src=\"http://yanxuan.nosdn.127.net/d1c6b1cf18f2bf441aa90768aff1833a.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '3', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/65d94c770e03dacd4e1b8b45ad481e55.jpg', 'http://yanxuan.nosdn.127.net/1ffd5831e63027715445f74a28f8c4ed.png', '299.00', '11983', '1111037', '0.00', '限时购', '', '0.00', '0', '0', '0', '328.90', null, null, null, null);
  697. INSERT INTO `nideshop_goods` VALUES ('1110007', '1008009', '1110007', '日式色织水洗棉格纹四件套 新款', '1001000', '100', '', '做旧微褶感,轻柔呵护棉', '<p><img src=\"http://yanxuan.nosdn.127.net/280d74c31b9322eb956e7481bd22e9a5.jpg\" _src=\"http://yanxuan.nosdn.127.net/280d74c31b9322eb956e7481bd22e9a5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2b9270ec5d66c917f2514f8d69679f6c.jpg\" _src=\"http://yanxuan.nosdn.127.net/2b9270ec5d66c917f2514f8d69679f6c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5126fea2c070ab454df529b7cd42171a.jpg\" _src=\"http://yanxuan.nosdn.127.net/5126fea2c070ab454df529b7cd42171a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7020173bf8664bae6a51ec81a5045350.jpg\" _src=\"http://yanxuan.nosdn.127.net/7020173bf8664bae6a51ec81a5045350.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9f68d38ae6dfe3b56c3e0ddf4446105e.jpg\" _src=\"http://yanxuan.nosdn.127.net/9f68d38ae6dfe3b56c3e0ddf4446105e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e401c41d6e3cc2ad655383fb83f582e1.jpg\" _src=\"http://yanxuan.nosdn.127.net/e401c41d6e3cc2ad655383fb83f582e1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6e0801c89d5119c02f4aad1fa2e3f79d.jpg\" _src=\"http://yanxuan.nosdn.127.net/6e0801c89d5119c02f4aad1fa2e3f79d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/eb11f89e6f0c41053087f0b4bbed36c4.jpg\" _src=\"http://yanxuan.nosdn.127.net/eb11f89e6f0c41053087f0b4bbed36c4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/80bf0c6ef68f4373b3db521e7c09f0fb.jpg\" _src=\"http://yanxuan.nosdn.127.net/80bf0c6ef68f4373b3db521e7c09f0fb.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0ec681b58c2b2281ceac667bb9416e79.jpg\" _src=\"http://yanxuan.nosdn.127.net/0ec681b58c2b2281ceac667bb9416e79.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ab6e782785293c93cddbbe59d41fbe58.jpg\" _src=\"http://yanxuan.nosdn.127.net/ab6e782785293c93cddbbe59d41fbe58.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2974fb17474f1e75a3746cbdb9d38d08.jpg\" _src=\"http://yanxuan.nosdn.127.net/2974fb17474f1e75a3746cbdb9d38d08.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2aacbef9ae23bbda05115240a09711d2.jpg\" _src=\"http://yanxuan.nosdn.127.net/2aacbef9ae23bbda05115240a09711d2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b09d8a77f61eb9c0e2598f090a9903d1.jpg\" _src=\"http://yanxuan.nosdn.127.net/b09d8a77f61eb9c0e2598f090a9903d1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/79277de533411ec1556af43c2214cd2b.jpg\" _src=\"http://yanxuan.nosdn.127.net/79277de533411ec1556af43c2214cd2b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5223bbdf9b7f3206ae48fc41d0f8870f.jpg\" _src=\"http://yanxuan.nosdn.127.net/5223bbdf9b7f3206ae48fc41d0f8870f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1bdede2a5332a7cf7cb988d216219c8a.jpg\" _src=\"http://yanxuan.nosdn.127.net/1bdede2a5332a7cf7cb988d216219c8a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b9bc8c2543a42a80d980d90bb49f761f.jpg\" _src=\"http://yanxuan.nosdn.127.net/b9bc8c2543a42a80d980d90bb49f761f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a6ac4fcd6367432ea61eb2c9b972c85b.jpg\" _src=\"http://yanxuan.nosdn.127.net/a6ac4fcd6367432ea61eb2c9b972c85b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8cf923bfea6642309dd45f23cc0db014.jpg\" _src=\"http://yanxuan.nosdn.127.net/8cf923bfea6642309dd45f23cc0db014.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/038854293eb327038bff7f9b12ecc959.jpg\" _src=\"http://yanxuan.nosdn.127.net/038854293eb327038bff7f9b12ecc959.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/eb39a24c1e3af6e98b04dadbd33a3fe9.jpg\" _src=\"http://yanxuan.nosdn.127.net/eb39a24c1e3af6e98b04dadbd33a3fe9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/362b2f3046711bc23186648dae74ad6d.jpg\" _src=\"http://yanxuan.nosdn.127.net/362b2f3046711bc23186648dae74ad6d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/49f7de4e37e5ecd2f7164ede19d9f733.jpg\" _src=\"http://yanxuan.nosdn.127.net/49f7de4e37e5ecd2f7164ede19d9f733.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/569e9d6b44ca2f27a1c12509e8915e66.jpg\" _src=\"http://yanxuan.nosdn.127.net/569e9d6b44ca2f27a1c12509e8915e66.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c5dc22bfcd8a766721a4627e543ed910.jpg\" _src=\"http://yanxuan.nosdn.127.net/c5dc22bfcd8a766721a4627e543ed910.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/713237ccefdecfdc349a112cdf19dad4.jpg\" _src=\"http://yanxuan.nosdn.127.net/713237ccefdecfdc349a112cdf19dad4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/90fbeb1d0446c8478ff02401def15c2f.jpg\" _src=\"http://yanxuan.nosdn.127.net/90fbeb1d0446c8478ff02401def15c2f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5044c7429edbfbb7b839e557fd8f818d.jpg\" _src=\"http://yanxuan.nosdn.127.net/5044c7429edbfbb7b839e557fd8f818d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e5aec8b5df3e773ee8b14113a2cdcb32.jpg\" _src=\"http://yanxuan.nosdn.127.net/e5aec8b5df3e773ee8b14113a2cdcb32.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/dfd9bccd47e871bc7f67779bc784db51.jpg\" _src=\"http://yanxuan.nosdn.127.net/dfd9bccd47e871bc7f67779bc784db51.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ffa489f82e9d2aa77393cd7f65ebee86.jpg\" _src=\"http://yanxuan.nosdn.127.net/ffa489f82e9d2aa77393cd7f65ebee86.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bd56dc555af6f50272e7cd31e29644c9.jpg\" _src=\"http://yanxuan.nosdn.127.net/bd56dc555af6f50272e7cd31e29644c9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5d261318f912c3b09ae24c7efdb55647.jpg\" _src=\"http://yanxuan.nosdn.127.net/5d261318f912c3b09ae24c7efdb55647.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1cf1335f9646f9e3b82ad4b21540f0b4.jpg\" _src=\"http://yanxuan.nosdn.127.net/1cf1335f9646f9e3b82ad4b21540f0b4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9881c742b4178a4096b2faf8630fdf48.jpg\" _src=\"http://yanxuan.nosdn.127.net/9881c742b4178a4096b2faf8630fdf48.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9e1fb2de40eb0243aa204ea419534d9c.jpg\" _src=\"http://yanxuan.nosdn.127.net/9e1fb2de40eb0243aa204ea419534d9c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c4699bbb0bb64091ea65c2fcb48571f9.jpg\" _src=\"http://yanxuan.nosdn.127.net/c4699bbb0bb64091ea65c2fcb48571f9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/31bbf71652f62fa75caaa1c17619046e.jpg\" _src=\"http://yanxuan.nosdn.127.net/31bbf71652f62fa75caaa1c17619046e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2784a49f991209e108573e1576c737db.jpg\" _src=\"http://yanxuan.nosdn.127.net/2784a49f991209e108573e1576c737db.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/032f984b95d0557c42b381c5dac63bba.jpg\" _src=\"http://yanxuan.nosdn.127.net/032f984b95d0557c42b381c5dac63bba.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/649c19a764f92a7f7caa2901e91fced7.jpg\" _src=\"http://yanxuan.nosdn.127.net/649c19a764f92a7f7caa2901e91fced7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1ce2a4df0ccb346bc78507d033ed41ad.jpg\" _src=\"http://yanxuan.nosdn.127.net/1ce2a4df0ccb346bc78507d033ed41ad.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c304880b8d2184655ad0f2fa9cb80663.jpg\" _src=\"http://yanxuan.nosdn.127.net/c304880b8d2184655ad0f2fa9cb80663.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c6e5ff7cdff06f1489816156c75c6dd6.jpg\" _src=\"http://yanxuan.nosdn.127.net/c6e5ff7cdff06f1489816156c75c6dd6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/542c796e0f10192cc950bddb418b6953.jpg\" _src=\"http://yanxuan.nosdn.127.net/542c796e0f10192cc950bddb418b6953.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/675bd2b57d02e966da0981017acc9ffc.jpg\" _src=\"http://yanxuan.nosdn.127.net/675bd2b57d02e966da0981017acc9ffc.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6ec3a06d23be8c6ea4bad1ab55394af2.jpg\" _src=\"http://yanxuan.nosdn.127.net/6ec3a06d23be8c6ea4bad1ab55394af2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/59434b29c18dff0207a6560970335a0b.jpg\" _src=\"http://yanxuan.nosdn.127.net/59434b29c18dff0207a6560970335a0b.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '4', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/19e7760c63ae6dc154a078460d183542.jpg', 'http://yanxuan.nosdn.127.net/deeb55bb45f94cb236a47d1264e883b8.png', '299.00', '5402', '1111049', '0.00', '限时购', '', '0.00', '0', '0', '0', '328.90', null, null, null, null);
  698. INSERT INTO `nideshop_goods` VALUES ('1110008', '1008009', '1110008', '全棉贡缎纯色床单', '0', '100', '', '丝滑缎纹 舒适百搭', '<p><img src=\"http://yanxuan.nosdn.127.net/ebaa153e0bc07348c7ef2b4f2f9827b1.jpg\" _src=\"http://yanxuan.nosdn.127.net/ebaa153e0bc07348c7ef2b4f2f9827b1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2482eac6674a83a855d7730dce63c660.jpg\" _src=\"http://yanxuan.nosdn.127.net/2482eac6674a83a855d7730dce63c660.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a72593f1fa2a6e309cdb04b48ffe85bd.jpg\" _src=\"http://yanxuan.nosdn.127.net/a72593f1fa2a6e309cdb04b48ffe85bd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f110fbe3e1316592b5f5d9aeee606962.jpg\" _src=\"http://yanxuan.nosdn.127.net/f110fbe3e1316592b5f5d9aeee606962.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c5b0f7b138ca35cb17a11b16475a24bb.jpg\" _src=\"http://yanxuan.nosdn.127.net/c5b0f7b138ca35cb17a11b16475a24bb.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ac9476e69430bf04273fc293c25e9656.jpg\" _src=\"http://yanxuan.nosdn.127.net/ac9476e69430bf04273fc293c25e9656.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6ab15ef2449663d23c156410fc438caf.jpg\" _src=\"http://yanxuan.nosdn.127.net/6ab15ef2449663d23c156410fc438caf.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/24c02f33d0012286cf1705a499993ea5.jpg\" _src=\"http://yanxuan.nosdn.127.net/24c02f33d0012286cf1705a499993ea5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/699e6953da537bdc0df1f995a54c97cf.jpg\" _src=\"http://yanxuan.nosdn.127.net/699e6953da537bdc0df1f995a54c97cf.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ccb00ff92e1560084cf0aadbe78ca706.jpg\" _src=\"http://yanxuan.nosdn.127.net/ccb00ff92e1560084cf0aadbe78ca706.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fcfc9690c34ba894119b2b6f4f7542c5.jpg\" _src=\"http://yanxuan.nosdn.127.net/fcfc9690c34ba894119b2b6f4f7542c5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8d066dd6674efd1bb8107ebf056de1ea.jpg\" _src=\"http://yanxuan.nosdn.127.net/8d066dd6674efd1bb8107ebf056de1ea.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5af6869a6398f6d95a85b4cbac0148ed.jpg\" _src=\"http://yanxuan.nosdn.127.net/5af6869a6398f6d95a85b4cbac0148ed.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/60ddcb218b694c29208612c7a64f80b1.jpg\" _src=\"http://yanxuan.nosdn.127.net/60ddcb218b694c29208612c7a64f80b1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2fd7be46a7fd75bc0ad4e9ab61c3e2c3.jpg\" _src=\"http://yanxuan.nosdn.127.net/2fd7be46a7fd75bc0ad4e9ab61c3e2c3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b6bcbf89419738e2b91556b618cac2fe.jpg\" _src=\"http://yanxuan.nosdn.127.net/b6bcbf89419738e2b91556b618cac2fe.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f0512ff7b481928c196e479796c461f6.jpg\" _src=\"http://yanxuan.nosdn.127.net/f0512ff7b481928c196e479796c461f6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7f9ff350d6d35cd4515b9c3a5ea46820.jpg\" _src=\"http://yanxuan.nosdn.127.net/7f9ff350d6d35cd4515b9c3a5ea46820.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8419284a2c2c9f3ffb775ef697b33a34.jpg\" _src=\"http://yanxuan.nosdn.127.net/8419284a2c2c9f3ffb775ef697b33a34.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5adf5661416fcf6abaab177743ebfe17.jpg\" _src=\"http://yanxuan.nosdn.127.net/5adf5661416fcf6abaab177743ebfe17.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/37ae6bef484400f584cced0cf672ec08.jpg\" _src=\"http://yanxuan.nosdn.127.net/37ae6bef484400f584cced0cf672ec08.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/73b8074583dc432bb68669de4532bb36.jpg\" _src=\"http://yanxuan.nosdn.127.net/73b8074583dc432bb68669de4532bb36.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/02c7022da23d3444f41f6845bdd3d837.jpg\" _src=\"http://yanxuan.nosdn.127.net/02c7022da23d3444f41f6845bdd3d837.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5f3da708372b5107ad0eb0e65613929b.jpg\" _src=\"http://yanxuan.nosdn.127.net/5f3da708372b5107ad0eb0e65613929b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c2fde409216ba1b4ae3a1087daf40c90.jpg\" _src=\"http://yanxuan.nosdn.127.net/c2fde409216ba1b4ae3a1087daf40c90.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/13ebbd1cfd212b2df22cbd317061086e.jpg\" _src=\"http://yanxuan.nosdn.127.net/13ebbd1cfd212b2df22cbd317061086e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/059a495310c1d6da4d586acb84f9bbed.jpg\" _src=\"http://yanxuan.nosdn.127.net/059a495310c1d6da4d586acb84f9bbed.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b114ef2f9ff05d0a56a920d92ab32623.jpg\" _src=\"http://yanxuan.nosdn.127.net/b114ef2f9ff05d0a56a920d92ab32623.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c54eb0cb4bba2074c4c28acd193e0cb0.jpg\" _src=\"http://yanxuan.nosdn.127.net/c54eb0cb4bba2074c4c28acd193e0cb0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d701c6b5902a9b78c34817eff7a3bd60.jpg\" _src=\"http://yanxuan.nosdn.127.net/d701c6b5902a9b78c34817eff7a3bd60.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0c30bdf9866848a30b26bc54fd5b34de.jpg\" _src=\"http://yanxuan.nosdn.127.net/0c30bdf9866848a30b26bc54fd5b34de.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/361a51703b77da12f0a94313aa8b26a4.jpg\" _src=\"http://yanxuan.nosdn.127.net/361a51703b77da12f0a94313aa8b26a4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/386c6c4fe63058f8d05b3befa070e752.jpg\" _src=\"http://yanxuan.nosdn.127.net/386c6c4fe63058f8d05b3befa070e752.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2e3caeb5786494d326babf301d7eea1d.jpg\" _src=\"http://yanxuan.nosdn.127.net/2e3caeb5786494d326babf301d7eea1d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a8c0fd896618d26cac6a6a6c784af23e.jpg\" _src=\"http://yanxuan.nosdn.127.net/a8c0fd896618d26cac6a6a6c784af23e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ca1467358f3c9724fe26e1fc39d5b24e.jpg\" _src=\"http://yanxuan.nosdn.127.net/ca1467358f3c9724fe26e1fc39d5b24e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a091d160764dbeb25d426f0e23089687.jpg\" _src=\"http://yanxuan.nosdn.127.net/a091d160764dbeb25d426f0e23089687.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b7aa64a705ba6ee2d0cfee1a13ce168c.jpg\" _src=\"http://yanxuan.nosdn.127.net/b7aa64a705ba6ee2d0cfee1a13ce168c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/09b1628b63d9c3efaa63ba321f174525.jpg\" _src=\"http://yanxuan.nosdn.127.net/09b1628b63d9c3efaa63ba321f174525.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0033560795459993074a19578a23977e.jpg\" _src=\"http://yanxuan.nosdn.127.net/0033560795459993074a19578a23977e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4a43c91fd16654007be3fd0fdbf59115.jpg\" _src=\"http://yanxuan.nosdn.127.net/4a43c91fd16654007be3fd0fdbf59115.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4e069a5efd07a739efaf27de6e436082.jpg\" _src=\"http://yanxuan.nosdn.127.net/4e069a5efd07a739efaf27de6e436082.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b4ab4383f7ae6a91ae2fb5b7b69d2c9c.jpg\" _src=\"http://yanxuan.nosdn.127.net/b4ab4383f7ae6a91ae2fb5b7b69d2c9c.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '26', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/607cc789c0dc4b33d1147a46dc20b327.jpg', 'http://yanxuan.nosdn.127.net/255a4888161f9b4fe530cf319f14551d.png', '99.00', '7611', '1111057', '0.00', '限时购', '', '0.00', '0', '0', '0', '108.90', null, null, null, null);
  699. INSERT INTO `nideshop_goods` VALUES ('1110013', '1017000', '1110013', '悦动纯色自动伸缩牵引器', '0', '100', '', '最大承重50KG, 乐享自由', '<p><img src=\"http://yanxuan.nosdn.127.net/9a9167323cfc952e1d274215d0af65d7.jpg\" _src=\"http://yanxuan.nosdn.127.net/9a9167323cfc952e1d274215d0af65d7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/49b48b3fb6270003adbca5e77a170eb8.jpg\" _src=\"http://yanxuan.nosdn.127.net/49b48b3fb6270003adbca5e77a170eb8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/57f48b72bc6e352eb894714a1f8a8b91.jpg\" _src=\"http://yanxuan.nosdn.127.net/57f48b72bc6e352eb894714a1f8a8b91.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fc2894eb0345138575ab504d333594e3.jpg\" _src=\"http://yanxuan.nosdn.127.net/fc2894eb0345138575ab504d333594e3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9f80519f4057fe2b770518353c1e54ba.jpg\" _src=\"http://yanxuan.nosdn.127.net/9f80519f4057fe2b770518353c1e54ba.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ac693fcd5c8215931679e79165d5e296.jpg\" _src=\"http://yanxuan.nosdn.127.net/ac693fcd5c8215931679e79165d5e296.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a6393eba575ce70cea073d029634ebbe.jpg\" _src=\"http://yanxuan.nosdn.127.net/a6393eba575ce70cea073d029634ebbe.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c5d61a3a391dd9cdbf925a22c64b9e5e.jpg\" _src=\"http://yanxuan.nosdn.127.net/c5d61a3a391dd9cdbf925a22c64b9e5e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3c20e1cd9cb20290e790c5940f527a87.jpg\" _src=\"http://yanxuan.nosdn.127.net/3c20e1cd9cb20290e790c5940f527a87.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ce02f5f0ff3745732e3a12148c3a5d5d.jpg\" _src=\"http://yanxuan.nosdn.127.net/ce02f5f0ff3745732e3a12148c3a5d5d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/54dc6d01688e7d83d893141fc2e6b22b.jpg\" _src=\"http://yanxuan.nosdn.127.net/54dc6d01688e7d83d893141fc2e6b22b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4d5fca316ce1e6e1af7f102325b841c2.jpg\" _src=\"http://yanxuan.nosdn.127.net/4d5fca316ce1e6e1af7f102325b841c2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/eb5b1c04f30e91c65e65c32b0771983e.jpg\" _src=\"http://yanxuan.nosdn.127.net/eb5b1c04f30e91c65e65c32b0771983e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/81e341e9a18ef59cfa7b9327209acbad.jpg\" _src=\"http://yanxuan.nosdn.127.net/81e341e9a18ef59cfa7b9327209acbad.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5c7820d2fe56934457ef0d280bb8ccaf.jpg\" _src=\"http://yanxuan.nosdn.127.net/5c7820d2fe56934457ef0d280bb8ccaf.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bada6cd54c0255fea7b71ed31c1501aa.jpg\" _src=\"http://yanxuan.nosdn.127.net/bada6cd54c0255fea7b71ed31c1501aa.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/32ce5d7d1f5f8af8f9ca46704b54887c.jpg\" _src=\"http://yanxuan.nosdn.127.net/32ce5d7d1f5f8af8f9ca46704b54887c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1022f8cd66dab75a19b796ba3c0a33c0.jpg\" _src=\"http://yanxuan.nosdn.127.net/1022f8cd66dab75a19b796ba3c0a33c0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a2e0fd5471a38c2a1fcc3a98b37901df.jpg\" _src=\"http://yanxuan.nosdn.127.net/a2e0fd5471a38c2a1fcc3a98b37901df.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c000ee5caa53c3c3fc3fcf4ca70d15c5.jpg\" _src=\"http://yanxuan.nosdn.127.net/c000ee5caa53c3c3fc3fcf4ca70d15c5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c615fbe583f71ec737a5370e3ec62704.jpg\" _src=\"http://yanxuan.nosdn.127.net/c615fbe583f71ec737a5370e3ec62704.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1c75a501b0dd26128711eaaf1473a702.jpg\" _src=\"http://yanxuan.nosdn.127.net/1c75a501b0dd26128711eaaf1473a702.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/64ec846024ab5dfb31af8f31adc318d8.jpg\" _src=\"http://yanxuan.nosdn.127.net/64ec846024ab5dfb31af8f31adc318d8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4187be4baa967deb4ace52357d57d0e8.jpg\" _src=\"http://yanxuan.nosdn.127.net/4187be4baa967deb4ace52357d57d0e8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/64ff91bfba9b6d654cd4e8778ca7a377.jpg\" _src=\"http://yanxuan.nosdn.127.net/64ff91bfba9b6d654cd4e8778ca7a377.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/203171c691368d07fce079b57951ad55.jpg\" _src=\"http://yanxuan.nosdn.127.net/203171c691368d07fce079b57951ad55.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f277f7bed9e144f306b039762524f1a7.jpg\" _src=\"http://yanxuan.nosdn.127.net/f277f7bed9e144f306b039762524f1a7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/112ddf960d5664082067149ab5711259.jpg\" _src=\"http://yanxuan.nosdn.127.net/112ddf960d5664082067149ab5711259.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/525d4fc773bd6466c0a80922b50a31e1.jpg\" _src=\"http://yanxuan.nosdn.127.net/525d4fc773bd6466c0a80922b50a31e1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/16be6e7f96c5f7d04b3279624d799744.jpg\" _src=\"http://yanxuan.nosdn.127.net/16be6e7f96c5f7d04b3279624d799744.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/43566985315fa49b9bed3848d7e9e642.jpg\" _src=\"http://yanxuan.nosdn.127.net/43566985315fa49b9bed3848d7e9e642.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c5c7d39f993cb84e30e440686d1f1a1e.jpg\" _src=\"http://yanxuan.nosdn.127.net/c5c7d39f993cb84e30e440686d1f1a1e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d602e6c0dcebd8a3213a1303d7d1fbf9.jpg\" _src=\"http://yanxuan.nosdn.127.net/d602e6c0dcebd8a3213a1303d7d1fbf9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4033d4dab273a494e40f1d9348430e3e.jpg\" _src=\"http://yanxuan.nosdn.127.net/4033d4dab273a494e40f1d9348430e3e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3b50222a722da3cd1762ad5d2391e6aa.jpg\" _src=\"http://yanxuan.nosdn.127.net/3b50222a722da3cd1762ad5d2391e6aa.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a8bc9fe72c796662a9d927a020826301.jpg\" _src=\"http://yanxuan.nosdn.127.net/a8bc9fe72c796662a9d927a020826301.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2168c4a161398d34db58ad4557a64f56.jpg\" _src=\"http://yanxuan.nosdn.127.net/2168c4a161398d34db58ad4557a64f56.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1490dd0048e08f5bd5853a0fecd5e79d.jpg\" _src=\"http://yanxuan.nosdn.127.net/1490dd0048e08f5bd5853a0fecd5e79d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d42861b593a6714dfad7aa2e7c3a8b6c.jpg\" _src=\"http://yanxuan.nosdn.127.net/d42861b593a6714dfad7aa2e7c3a8b6c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/32c3f6773aba55547d81129b08a5b791.jpg\" _src=\"http://yanxuan.nosdn.127.net/32c3f6773aba55547d81129b08a5b791.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/74a562662ac5a7ec66d02a4155fc1929.jpg\" _src=\"http://yanxuan.nosdn.127.net/74a562662ac5a7ec66d02a4155fc1929.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6e9ff03ebcca5fdc0fc0bf8b1f2dd4cc.jpg\" _src=\"http://yanxuan.nosdn.127.net/6e9ff03ebcca5fdc0fc0bf8b1f2dd4cc.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a2bb640bbfb144b053b38c4b7ab743c0.jpg\" _src=\"http://yanxuan.nosdn.127.net/a2bb640bbfb144b053b38c4b7ab743c0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/95f16488ee14a8034bb50157b89ad954.jpg\" _src=\"http://yanxuan.nosdn.127.net/95f16488ee14a8034bb50157b89ad954.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/79646ad2e9c4895c073f3416f39feddc.jpg\" _src=\"http://yanxuan.nosdn.127.net/79646ad2e9c4895c073f3416f39feddc.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3ee65bd5c278cc78aaf6310fc93997a4.jpg\" _src=\"http://yanxuan.nosdn.127.net/3ee65bd5c278cc78aaf6310fc93997a4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1495a1fcfd02a89a99dec80a3e877204.jpg\" _src=\"http://yanxuan.nosdn.127.net/1495a1fcfd02a89a99dec80a3e877204.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/17203fa91613acfc92871b66bcc6b4e8.jpg\" _src=\"http://yanxuan.nosdn.127.net/17203fa91613acfc92871b66bcc6b4e8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b3c039d856971f842bae005aa7875654.jpg\" _src=\"http://yanxuan.nosdn.127.net/b3c039d856971f842bae005aa7875654.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a9b4e6f29901675d93f21d8ad927719b.jpg\" _src=\"http://yanxuan.nosdn.127.net/a9b4e6f29901675d93f21d8ad927719b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8d31ae42d445e94231c351b5b8eb2f7f.jpg\" _src=\"http://yanxuan.nosdn.127.net/8d31ae42d445e94231c351b5b8eb2f7f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a8afcf9745702cdae2bf2ab3b3044c5a.jpg\" _src=\"http://yanxuan.nosdn.127.net/a8afcf9745702cdae2bf2ab3b3044c5a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/61891461006ee565d46ca289a24ca314.jpg\" _src=\"http://yanxuan.nosdn.127.net/61891461006ee565d46ca289a24ca314.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '21', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/4a7d55aa95b6d903530663bc0483a40b.jpg', 'http://yanxuan.nosdn.127.net/6eb8d1c37142a5951b6242791c78146b.png', '59.00', '51', '1111078', '0.00', '限时购', '', '0.00', '0', '0', '0', '64.90', null, null, null, null);
  700. INSERT INTO `nideshop_goods` VALUES ('1110014', '1017000', '1110014', '日式气质木纹自动伸缩牵引器', '0', '100', '', '高强耐拉,乐享自由', '<p><img src=\"http://yanxuan.nosdn.127.net/deefd1e1e47f5f5173de67f44388c59b.jpg\" _src=\"http://yanxuan.nosdn.127.net/deefd1e1e47f5f5173de67f44388c59b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/794f0bb940d8d950d1b3e0ee69d899de.jpg\" _src=\"http://yanxuan.nosdn.127.net/794f0bb940d8d950d1b3e0ee69d899de.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/dea8ebd578148db7041a1e4dafc97c27.jpg\" _src=\"http://yanxuan.nosdn.127.net/dea8ebd578148db7041a1e4dafc97c27.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4cbc622172384759c19f44e2aa206bc9.jpg\" _src=\"http://yanxuan.nosdn.127.net/4cbc622172384759c19f44e2aa206bc9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7a4802702df0df04b9213245dd06dee0.jpg\" _src=\"http://yanxuan.nosdn.127.net/7a4802702df0df04b9213245dd06dee0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ebf1a8d7cda41905526be8673e14f341.jpg\" _src=\"http://yanxuan.nosdn.127.net/ebf1a8d7cda41905526be8673e14f341.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0706a184a0c0160dde897b8e00d8a32e.jpg\" _src=\"http://yanxuan.nosdn.127.net/0706a184a0c0160dde897b8e00d8a32e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/555396fbc4c6d8926c952fa05a75ac58.jpg\" _src=\"http://yanxuan.nosdn.127.net/555396fbc4c6d8926c952fa05a75ac58.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cd7dd0e3db90c2da6bc940c5b7e536d4.jpg\" _src=\"http://yanxuan.nosdn.127.net/cd7dd0e3db90c2da6bc940c5b7e536d4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e8784690c2c3f83b64834c1178741f98.jpg\" _src=\"http://yanxuan.nosdn.127.net/e8784690c2c3f83b64834c1178741f98.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5d89656b94a10f9e5e67781d3ca600b8.jpg\" _src=\"http://yanxuan.nosdn.127.net/5d89656b94a10f9e5e67781d3ca600b8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7308e055a79a2c83dfc6d6cf2c0a3dd1.jpg\" _src=\"http://yanxuan.nosdn.127.net/7308e055a79a2c83dfc6d6cf2c0a3dd1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c84a144a5e1159c1cff296ac193b203b.jpg\" _src=\"http://yanxuan.nosdn.127.net/c84a144a5e1159c1cff296ac193b203b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/799e3dda5d38de73aa84ba0355505755.jpg\" _src=\"http://yanxuan.nosdn.127.net/799e3dda5d38de73aa84ba0355505755.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0e75a5d307e7e0d21e3a4b3e8372e09b.jpg\" _src=\"http://yanxuan.nosdn.127.net/0e75a5d307e7e0d21e3a4b3e8372e09b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/267760e491d92e8b7e1c259933bfc400.jpg\" _src=\"http://yanxuan.nosdn.127.net/267760e491d92e8b7e1c259933bfc400.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b99e02d2eae0df02712f348463c27274.jpg\" _src=\"http://yanxuan.nosdn.127.net/b99e02d2eae0df02712f348463c27274.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ff808a3d431c1b0717a54ac20a5a922c.jpg\" _src=\"http://yanxuan.nosdn.127.net/ff808a3d431c1b0717a54ac20a5a922c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7071fc30d982a7e4aa92299f652bddcd.jpg\" _src=\"http://yanxuan.nosdn.127.net/7071fc30d982a7e4aa92299f652bddcd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9ca6aa2604ca0a8937e4576d2bce61b6.jpg\" _src=\"http://yanxuan.nosdn.127.net/9ca6aa2604ca0a8937e4576d2bce61b6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d5f1915e0b9bd2c21a734de45207ddcb.jpg\" _src=\"http://yanxuan.nosdn.127.net/d5f1915e0b9bd2c21a734de45207ddcb.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b4a6d76267f9eafb45cb9765a44ae7e6.jpg\" _src=\"http://yanxuan.nosdn.127.net/b4a6d76267f9eafb45cb9765a44ae7e6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8258477ab7b59b9820b8940f10518cfb.jpg\" _src=\"http://yanxuan.nosdn.127.net/8258477ab7b59b9820b8940f10518cfb.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a2020b32805ac08c2ddbad061af4f84e.jpg\" _src=\"http://yanxuan.nosdn.127.net/a2020b32805ac08c2ddbad061af4f84e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f937890dd7b40d042f5fcb2242b4317f.jpg\" _src=\"http://yanxuan.nosdn.127.net/f937890dd7b40d042f5fcb2242b4317f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4e290d03307d69686f597a1a0601bbb8.jpg\" _src=\"http://yanxuan.nosdn.127.net/4e290d03307d69686f597a1a0601bbb8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6cba60c91dd25960bb65efbc9f83c251.jpg\" _src=\"http://yanxuan.nosdn.127.net/6cba60c91dd25960bb65efbc9f83c251.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5009c0ca55ab97e4e5122075b6e1b30c.jpg\" _src=\"http://yanxuan.nosdn.127.net/5009c0ca55ab97e4e5122075b6e1b30c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ac90c373104c8abf3d825efac4cc729e.jpg\" _src=\"http://yanxuan.nosdn.127.net/ac90c373104c8abf3d825efac4cc729e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c7a167fddbaf4d713ee99a429640ba99.jpg\" _src=\"http://yanxuan.nosdn.127.net/c7a167fddbaf4d713ee99a429640ba99.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/06e16e9d3ccba84fc7df990653e37785.jpg\" _src=\"http://yanxuan.nosdn.127.net/06e16e9d3ccba84fc7df990653e37785.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/19be4fe0fd855545ed4e51587646ae35.jpg\" _src=\"http://yanxuan.nosdn.127.net/19be4fe0fd855545ed4e51587646ae35.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/efc8c66e46107c1c8eb2392d0d8a1ba1.jpg\" _src=\"http://yanxuan.nosdn.127.net/efc8c66e46107c1c8eb2392d0d8a1ba1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/33b11b17fc15336d3fa231d7684985f0.jpg\" _src=\"http://yanxuan.nosdn.127.net/33b11b17fc15336d3fa231d7684985f0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4a613f8fb5b16bc1a973898a34088869.jpg\" _src=\"http://yanxuan.nosdn.127.net/4a613f8fb5b16bc1a973898a34088869.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7f25203077ed714d566121044b79a6c1.jpg\" _src=\"http://yanxuan.nosdn.127.net/7f25203077ed714d566121044b79a6c1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/52f085a9923e513bf1b2d23d3484d845.jpg\" _src=\"http://yanxuan.nosdn.127.net/52f085a9923e513bf1b2d23d3484d845.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ace9393853eca8a75e09185a20bbbd82.jpg\" _src=\"http://yanxuan.nosdn.127.net/ace9393853eca8a75e09185a20bbbd82.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c58723d159ab4f9ac95a17cbbe53e9b4.jpg\" _src=\"http://yanxuan.nosdn.127.net/c58723d159ab4f9ac95a17cbbe53e9b4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d356893914da91bd41fe34b6625fa429.jpg\" _src=\"http://yanxuan.nosdn.127.net/d356893914da91bd41fe34b6625fa429.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f87ca94f03bb95f4dff3083dd50480b5.jpg\" _src=\"http://yanxuan.nosdn.127.net/f87ca94f03bb95f4dff3083dd50480b5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/26033b57b7d4cd29be6d710d90faa1c5.jpg\" _src=\"http://yanxuan.nosdn.127.net/26033b57b7d4cd29be6d710d90faa1c5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/302250c5116534d843b10c94e352bb98.jpg\" _src=\"http://yanxuan.nosdn.127.net/302250c5116534d843b10c94e352bb98.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2aa6cd1857b3bdae08a60f41223fa6ca.jpg\" _src=\"http://yanxuan.nosdn.127.net/2aa6cd1857b3bdae08a60f41223fa6ca.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9d4967bc254bd4074b7323fa334b1247.jpg\" _src=\"http://yanxuan.nosdn.127.net/9d4967bc254bd4074b7323fa334b1247.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7fc77c93e58b8f449a86d4584452671c.jpg\" _src=\"http://yanxuan.nosdn.127.net/7fc77c93e58b8f449a86d4584452671c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/709028e78b59cb1e2a78961099d25931.jpg\" _src=\"http://yanxuan.nosdn.127.net/709028e78b59cb1e2a78961099d25931.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/338f45391ca7fc9209a305574020461f.jpg\" _src=\"http://yanxuan.nosdn.127.net/338f45391ca7fc9209a305574020461f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/055da3a4861cc7ea9002b98a9f86ef10.jpg\" _src=\"http://yanxuan.nosdn.127.net/055da3a4861cc7ea9002b98a9f86ef10.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4145c6411a6eaafb5dfe8ee7c6946351.jpg\" _src=\"http://yanxuan.nosdn.127.net/4145c6411a6eaafb5dfe8ee7c6946351.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9d8d188eaaae7651e39a8d2d8c89c616.jpg\" _src=\"http://yanxuan.nosdn.127.net/9d8d188eaaae7651e39a8d2d8c89c616.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d4bbc908d7ee92b20692e4a15562eeb6.jpg\" _src=\"http://yanxuan.nosdn.127.net/d4bbc908d7ee92b20692e4a15562eeb6.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '22', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/65e368a6a45311923af035322e336c8f.jpg', 'http://yanxuan.nosdn.127.net/cb4f78bd887059416c3df485e3f31366.png', '69.00', '308', '1111081', '0.00', '限时购', '', '0.00', '0', '0', '0', '75.90', null, null, null, null);
  701. INSERT INTO `nideshop_goods` VALUES ('1110015', '1017000', '1110015', '迷彩宠物自动伸缩牵引器', '0', '100', '', '硬汉行军梦,乐享自由', '<p><img src=\"http://yanxuan.nosdn.127.net/79105794a2c452ae2c6329c6bf8c9273.jpg\" _src=\"http://yanxuan.nosdn.127.net/79105794a2c452ae2c6329c6bf8c9273.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/57eae60064c316610543e701cfe93e96.jpg\" _src=\"http://yanxuan.nosdn.127.net/57eae60064c316610543e701cfe93e96.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ce34503fef68caf6d0771ce489b664b3.jpg\" _src=\"http://yanxuan.nosdn.127.net/ce34503fef68caf6d0771ce489b664b3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2f605d5a21c2962e417dabbffd3ac9a3.jpg\" _src=\"http://yanxuan.nosdn.127.net/2f605d5a21c2962e417dabbffd3ac9a3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/848b78dc0beba526d542876ef1923551.jpg\" _src=\"http://yanxuan.nosdn.127.net/848b78dc0beba526d542876ef1923551.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6a414b9f678c7422793e3a73d13c67c6.jpg\" _src=\"http://yanxuan.nosdn.127.net/6a414b9f678c7422793e3a73d13c67c6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/13af8092bc30b9129f6ad0733b95162d.jpg\" _src=\"http://yanxuan.nosdn.127.net/13af8092bc30b9129f6ad0733b95162d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d82faa9ce96ac739baa7a833bce560ac.jpg\" _src=\"http://yanxuan.nosdn.127.net/d82faa9ce96ac739baa7a833bce560ac.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f48181394509db903573b274d814bdba.jpg\" _src=\"http://yanxuan.nosdn.127.net/f48181394509db903573b274d814bdba.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/caa9e0c970f726b671845a46723a3723.jpg\" _src=\"http://yanxuan.nosdn.127.net/caa9e0c970f726b671845a46723a3723.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/95a65b931702b9bc9b8313b7e7c3f518.jpg\" _src=\"http://yanxuan.nosdn.127.net/95a65b931702b9bc9b8313b7e7c3f518.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6c9b138462597caaf5c0660aee20bae8.jpg\" _src=\"http://yanxuan.nosdn.127.net/6c9b138462597caaf5c0660aee20bae8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b7eed385b97a777f7ac412697c666247.jpg\" _src=\"http://yanxuan.nosdn.127.net/b7eed385b97a777f7ac412697c666247.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1482587331802312edf1895e857e552d.jpg\" _src=\"http://yanxuan.nosdn.127.net/1482587331802312edf1895e857e552d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b044d9f12bde1561c94ca8cee7f7f979.jpg\" _src=\"http://yanxuan.nosdn.127.net/b044d9f12bde1561c94ca8cee7f7f979.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d205e25749fb9b0d4af3dbc466d95b5c.jpg\" _src=\"http://yanxuan.nosdn.127.net/d205e25749fb9b0d4af3dbc466d95b5c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e53bd1ea12008cbbb240a825c9f92bee.jpg\" _src=\"http://yanxuan.nosdn.127.net/e53bd1ea12008cbbb240a825c9f92bee.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e9bd5657cb7861dba534546117d9c726.jpg\" _src=\"http://yanxuan.nosdn.127.net/e9bd5657cb7861dba534546117d9c726.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e074eaf6455bb6a53aca5ce6943a9b3d.jpg\" _src=\"http://yanxuan.nosdn.127.net/e074eaf6455bb6a53aca5ce6943a9b3d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a1aaabf261cccf3af9b343731f20926d.jpg\" _src=\"http://yanxuan.nosdn.127.net/a1aaabf261cccf3af9b343731f20926d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/232ceaf8e2b7da00038a54350232e8a4.jpg\" _src=\"http://yanxuan.nosdn.127.net/232ceaf8e2b7da00038a54350232e8a4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2f1907020daf59fac9c3181b02d51a55.jpg\" _src=\"http://yanxuan.nosdn.127.net/2f1907020daf59fac9c3181b02d51a55.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/220eb6332bc45b1b9fa47e2dbb374256.jpg\" _src=\"http://yanxuan.nosdn.127.net/220eb6332bc45b1b9fa47e2dbb374256.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/62e17702cae34798f2dbe07bcaadb287.jpg\" _src=\"http://yanxuan.nosdn.127.net/62e17702cae34798f2dbe07bcaadb287.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5c5d6c56dbde2c1653ebe5735b6190c3.jpg\" _src=\"http://yanxuan.nosdn.127.net/5c5d6c56dbde2c1653ebe5735b6190c3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/34ca3cd8ce6a40f59b22116afdab1075.jpg\" _src=\"http://yanxuan.nosdn.127.net/34ca3cd8ce6a40f59b22116afdab1075.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/396af7781da470447075907394db2cca.jpg\" _src=\"http://yanxuan.nosdn.127.net/396af7781da470447075907394db2cca.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cdc20c381878009488d32a1d2912ee6a.jpg\" _src=\"http://yanxuan.nosdn.127.net/cdc20c381878009488d32a1d2912ee6a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/42345a87ea60c34a0f8faa7e3edac8fa.jpg\" _src=\"http://yanxuan.nosdn.127.net/42345a87ea60c34a0f8faa7e3edac8fa.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/146ba6a499a0c499ee3f85d3855bea01.jpg\" _src=\"http://yanxuan.nosdn.127.net/146ba6a499a0c499ee3f85d3855bea01.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8c0db9c2353395945a623541f8a13271.jpg\" _src=\"http://yanxuan.nosdn.127.net/8c0db9c2353395945a623541f8a13271.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/85764c294ae6e5971ae40c007db161e3.jpg\" _src=\"http://yanxuan.nosdn.127.net/85764c294ae6e5971ae40c007db161e3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/244d6da57df6c16cbf68ac7e87356631.jpg\" _src=\"http://yanxuan.nosdn.127.net/244d6da57df6c16cbf68ac7e87356631.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f226e3bac8021f48e8f44dff22275431.jpg\" _src=\"http://yanxuan.nosdn.127.net/f226e3bac8021f48e8f44dff22275431.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d7388734a1b04994700d7fa5f9983e4b.jpg\" _src=\"http://yanxuan.nosdn.127.net/d7388734a1b04994700d7fa5f9983e4b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/503498e8a0be9d83abc5316a5ea2db37.jpg\" _src=\"http://yanxuan.nosdn.127.net/503498e8a0be9d83abc5316a5ea2db37.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a6ad162098547b6ce56b87c8d40f9bfd.jpg\" _src=\"http://yanxuan.nosdn.127.net/a6ad162098547b6ce56b87c8d40f9bfd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7c3b5b5e1cfa50e3c41a8846a13d1eff.jpg\" _src=\"http://yanxuan.nosdn.127.net/7c3b5b5e1cfa50e3c41a8846a13d1eff.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0e93b8fe15b7b16650505ae84dbd2565.jpg\" _src=\"http://yanxuan.nosdn.127.net/0e93b8fe15b7b16650505ae84dbd2565.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/02bab1f1168d381ca9b2a346a327d7a4.jpg\" _src=\"http://yanxuan.nosdn.127.net/02bab1f1168d381ca9b2a346a327d7a4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/849f45341a365d7ec921d356cb5585e3.jpg\" _src=\"http://yanxuan.nosdn.127.net/849f45341a365d7ec921d356cb5585e3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/34f38ebef5ab886068f0c445aa6cefc4.jpg\" _src=\"http://yanxuan.nosdn.127.net/34f38ebef5ab886068f0c445aa6cefc4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ef4a7a270d0cd1b3912dfe357eec8e96.jpg\" _src=\"http://yanxuan.nosdn.127.net/ef4a7a270d0cd1b3912dfe357eec8e96.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/314fab8eb661d70a074a98c6dcdca436.jpg\" _src=\"http://yanxuan.nosdn.127.net/314fab8eb661d70a074a98c6dcdca436.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/63bac6f8d49471ca9e48720cc42972e1.jpg\" _src=\"http://yanxuan.nosdn.127.net/63bac6f8d49471ca9e48720cc42972e1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/eea9c92505b3f9f6c4eab429ad252220.jpg\" _src=\"http://yanxuan.nosdn.127.net/eea9c92505b3f9f6c4eab429ad252220.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0c7253dcf8a0510904b33b82554548fd.jpg\" _src=\"http://yanxuan.nosdn.127.net/0c7253dcf8a0510904b33b82554548fd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4908c7746e5b22d1652fbbab9cf86a70.jpg\" _src=\"http://yanxuan.nosdn.127.net/4908c7746e5b22d1652fbbab9cf86a70.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ddcfbe295ca6306b4f7b84c764c839bd.jpg\" _src=\"http://yanxuan.nosdn.127.net/ddcfbe295ca6306b4f7b84c764c839bd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bc3c403bd9d0d72e762f32f8ff5e29d0.jpg\" _src=\"http://yanxuan.nosdn.127.net/bc3c403bd9d0d72e762f32f8ff5e29d0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d2da48f8b0f54a78c1091f9ce5d7e92f.jpg\" _src=\"http://yanxuan.nosdn.127.net/d2da48f8b0f54a78c1091f9ce5d7e92f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/45b29883e4d35bbe65fb9e6d23a67301.jpg\" _src=\"http://yanxuan.nosdn.127.net/45b29883e4d35bbe65fb9e6d23a67301.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '23', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/e8a4409996ba8849b20a7fbb11f1d08c.jpg', 'http://yanxuan.nosdn.127.net/56da5270172244be56c00fdc8eb24fae.png', '69.00', '190', '1111083', '0.00', '限时购', '', '0.00', '0', '0', '0', '75.90', null, null, null, null);
  702. INSERT INTO `nideshop_goods` VALUES ('1110016', '1017000', '1110016', '天然硅胶宠物除毛按摩刷', '0', '100', '', '顺滑平面,猫狗通用,去除死毛', '<p><img src=\"http://yanxuan.nosdn.127.net/349c1ba56a59c2b0bcb76dd43d84a7e4.jpg\" _src=\"http://yanxuan.nosdn.127.net/349c1ba56a59c2b0bcb76dd43d84a7e4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/61b69b45c5ed2d2c1f19bdea0659379c.jpg\" _src=\"http://yanxuan.nosdn.127.net/61b69b45c5ed2d2c1f19bdea0659379c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/34f2c4fcb409862b2710d50498bca45e.jpg\" _src=\"http://yanxuan.nosdn.127.net/34f2c4fcb409862b2710d50498bca45e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c304d4de0e654628050b6ce00e607a9f.jpg\" _src=\"http://yanxuan.nosdn.127.net/c304d4de0e654628050b6ce00e607a9f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b2d0a4421fba483d87423bd4fac9faec.jpg\" _src=\"http://yanxuan.nosdn.127.net/b2d0a4421fba483d87423bd4fac9faec.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8bd8af34c260e80bab8b8e57f6ea2183.jpg\" _src=\"http://yanxuan.nosdn.127.net/8bd8af34c260e80bab8b8e57f6ea2183.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5cda4f2efffff76d65610f614b49a202.jpg\" _src=\"http://yanxuan.nosdn.127.net/5cda4f2efffff76d65610f614b49a202.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cc124fbd43eddbe4e1463b1b6a8dd471.jpg\" _src=\"http://yanxuan.nosdn.127.net/cc124fbd43eddbe4e1463b1b6a8dd471.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e5b29d8235c1cbfba488ecfc3c3f27ad.jpg\" _src=\"http://yanxuan.nosdn.127.net/e5b29d8235c1cbfba488ecfc3c3f27ad.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/31b6327450d28304ea07381fe78dc973.jpg\" _src=\"http://yanxuan.nosdn.127.net/31b6327450d28304ea07381fe78dc973.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/77693ac3498f70c0bb79b8c69396693f.jpg\" _src=\"http://yanxuan.nosdn.127.net/77693ac3498f70c0bb79b8c69396693f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ae07efe150fb2eaa356d30c1ca7fe2f1.jpg\" _src=\"http://yanxuan.nosdn.127.net/ae07efe150fb2eaa356d30c1ca7fe2f1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d8dd8cf0bea6fce81b70e6e4415f1091.jpg\" _src=\"http://yanxuan.nosdn.127.net/d8dd8cf0bea6fce81b70e6e4415f1091.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ae3333e73593e858f65333d34bd7cd72.jpg\" _src=\"http://yanxuan.nosdn.127.net/ae3333e73593e858f65333d34bd7cd72.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/07deeb564de5b2b043f73157367602ec.jpg\" _src=\"http://yanxuan.nosdn.127.net/07deeb564de5b2b043f73157367602ec.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d684f6eef48bb1d0e8d7bf863e1d0cae.jpg\" _src=\"http://yanxuan.nosdn.127.net/d684f6eef48bb1d0e8d7bf863e1d0cae.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d793d650c04960a471f5458b2bb4afaa.jpg\" _src=\"http://yanxuan.nosdn.127.net/d793d650c04960a471f5458b2bb4afaa.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4e46ab5cb161edb04128eb94ded48568.jpg\" _src=\"http://yanxuan.nosdn.127.net/4e46ab5cb161edb04128eb94ded48568.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5d9df69a2f4200ba68031318c84b705e.jpg\" _src=\"http://yanxuan.nosdn.127.net/5d9df69a2f4200ba68031318c84b705e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/99243319ea97ec69dbcb9d724b51a58b.jpg\" _src=\"http://yanxuan.nosdn.127.net/99243319ea97ec69dbcb9d724b51a58b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3adf64f8719faf94df0d5ae0411fc2ab.jpg\" _src=\"http://yanxuan.nosdn.127.net/3adf64f8719faf94df0d5ae0411fc2ab.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/181c2ce6ae97ab5d462bddf98ed59079.jpg\" _src=\"http://yanxuan.nosdn.127.net/181c2ce6ae97ab5d462bddf98ed59079.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f33019d4412be955b9c390ce702658ec.jpg\" _src=\"http://yanxuan.nosdn.127.net/f33019d4412be955b9c390ce702658ec.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3c42cdadbe4ebc7ab2b418ff8efb3025.jpg\" _src=\"http://yanxuan.nosdn.127.net/3c42cdadbe4ebc7ab2b418ff8efb3025.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6129c768b0ffade7598ebfa5d2a4b8d5.jpg\" _src=\"http://yanxuan.nosdn.127.net/6129c768b0ffade7598ebfa5d2a4b8d5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a2f12e9b2a3f0a6b7b38a54fcf0993f8.jpg\" _src=\"http://yanxuan.nosdn.127.net/a2f12e9b2a3f0a6b7b38a54fcf0993f8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/79f0d28d84fd46a221d758ac0e0d99ad.jpg\" _src=\"http://yanxuan.nosdn.127.net/79f0d28d84fd46a221d758ac0e0d99ad.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3e30101be1840a0514734d6b2031d654.jpg\" _src=\"http://yanxuan.nosdn.127.net/3e30101be1840a0514734d6b2031d654.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c5ee5b7cc6cfa28ad6b428233f99ac8f.jpg\" _src=\"http://yanxuan.nosdn.127.net/c5ee5b7cc6cfa28ad6b428233f99ac8f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/73d06bb7dda41f028f5655b0ab74e009.jpg\" _src=\"http://yanxuan.nosdn.127.net/73d06bb7dda41f028f5655b0ab74e009.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/03a906a6316bbbf9795d84daae12ad15.jpg\" _src=\"http://yanxuan.nosdn.127.net/03a906a6316bbbf9795d84daae12ad15.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d5eedbf4fbe9c27174490e6c75883996.jpg\" _src=\"http://yanxuan.nosdn.127.net/d5eedbf4fbe9c27174490e6c75883996.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/17d16de92da4306b5f8223d6ffbc20f4.jpg\" _src=\"http://yanxuan.nosdn.127.net/17d16de92da4306b5f8223d6ffbc20f4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/58999595a9df116b75047c762c5b9353.jpg\" _src=\"http://yanxuan.nosdn.127.net/58999595a9df116b75047c762c5b9353.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2fb309858224aaad9f715e931e17941f.jpg\" _src=\"http://yanxuan.nosdn.127.net/2fb309858224aaad9f715e931e17941f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/58338ee2fcc1475ff85a5228b0d6d2ce.jpg\" _src=\"http://yanxuan.nosdn.127.net/58338ee2fcc1475ff85a5228b0d6d2ce.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/46578b36864ff3c0d65e57d54e6afafd.jpg\" _src=\"http://yanxuan.nosdn.127.net/46578b36864ff3c0d65e57d54e6afafd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8f4f4b26d6f5539843f5c849fce3aab4.jpg\" _src=\"http://yanxuan.nosdn.127.net/8f4f4b26d6f5539843f5c849fce3aab4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7a7a8f6c77d6777c469509ddb682b3b0.jpg\" _src=\"http://yanxuan.nosdn.127.net/7a7a8f6c77d6777c469509ddb682b3b0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c9c655f6a4696f1f8af5ae74dce48136.jpg\" _src=\"http://yanxuan.nosdn.127.net/c9c655f6a4696f1f8af5ae74dce48136.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/567cb6067f482a0904676b42f9485525.jpg\" _src=\"http://yanxuan.nosdn.127.net/567cb6067f482a0904676b42f9485525.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3674e1135b78465fd9cc89ae2cc29513.jpg\" _src=\"http://yanxuan.nosdn.127.net/3674e1135b78465fd9cc89ae2cc29513.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c831a877d84f3416df1944253b8b5b17.jpg\" _src=\"http://yanxuan.nosdn.127.net/c831a877d84f3416df1944253b8b5b17.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '12', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/85dcca64b215bccf2fb9890abe7da93e.jpg', 'http://yanxuan.nosdn.127.net/3bd73b7279a83d1cbb50c0e45778e6d6.png', '39.00', '27', '1111086', '0.00', '限时购', '', '0.00', '0', '0', '0', '42.90', null, null, null, null);
  703. INSERT INTO `nideshop_goods` VALUES ('1110017', '1017000', '1110017', '耐用材料猫咪护理清洁套装', '0', '100', '', '精致钢材,美容清洁', '<p><img src=\"http://yanxuan.nosdn.127.net/b83b83d029769ba43eb604d0822cf3fe.jpg\" _src=\"http://yanxuan.nosdn.127.net/b83b83d029769ba43eb604d0822cf3fe.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/117eaaa0bbcb04f976f03eeb05472db0.jpg\" _src=\"http://yanxuan.nosdn.127.net/117eaaa0bbcb04f976f03eeb05472db0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e939bfcf69341567ec7d9aaa21fb8c50.jpg\" _src=\"http://yanxuan.nosdn.127.net/e939bfcf69341567ec7d9aaa21fb8c50.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2db912941720c76c078cab943c065ac7.jpg\" _src=\"http://yanxuan.nosdn.127.net/2db912941720c76c078cab943c065ac7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7c6f1289733e6310e36f0c8c1c38c2ca.jpg\" _src=\"http://yanxuan.nosdn.127.net/7c6f1289733e6310e36f0c8c1c38c2ca.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a2e2d5be411026b73d248462680bb17a.jpg\" _src=\"http://yanxuan.nosdn.127.net/a2e2d5be411026b73d248462680bb17a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/47c36e0d9a1b6dbc9c43423b11ae1f78.jpg\" _src=\"http://yanxuan.nosdn.127.net/47c36e0d9a1b6dbc9c43423b11ae1f78.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b91df47b5111fbba6021c5393523827e.jpg\" _src=\"http://yanxuan.nosdn.127.net/b91df47b5111fbba6021c5393523827e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/284322e6bf6f9f58dc1ea6b6d78f4934.jpg\" _src=\"http://yanxuan.nosdn.127.net/284322e6bf6f9f58dc1ea6b6d78f4934.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3c083051cd5caba0853d6b9c53df7efc.jpg\" _src=\"http://yanxuan.nosdn.127.net/3c083051cd5caba0853d6b9c53df7efc.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e3d8bbc6f7f0ff2a083d1e071787d693.jpg\" _src=\"http://yanxuan.nosdn.127.net/e3d8bbc6f7f0ff2a083d1e071787d693.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2a5ebb8710abd6a9bc722c47e52fc316.jpg\" _src=\"http://yanxuan.nosdn.127.net/2a5ebb8710abd6a9bc722c47e52fc316.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e00b00f4d2e7273dc10eb6ed72fcb81f.jpg\" _src=\"http://yanxuan.nosdn.127.net/e00b00f4d2e7273dc10eb6ed72fcb81f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/179a14fafea43cacfc20359365205bbe.jpg\" _src=\"http://yanxuan.nosdn.127.net/179a14fafea43cacfc20359365205bbe.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cd40961ca226fab994e32b69f50ec9a3.jpg\" _src=\"http://yanxuan.nosdn.127.net/cd40961ca226fab994e32b69f50ec9a3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/57d6b84e80212d250f3dd6075245626d.jpg\" _src=\"http://yanxuan.nosdn.127.net/57d6b84e80212d250f3dd6075245626d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4e15d760de63f08f07bed93f23ec05f0.jpg\" _src=\"http://yanxuan.nosdn.127.net/4e15d760de63f08f07bed93f23ec05f0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/eb194af37a6171d2a01bf62b9f050e8e.jpg\" _src=\"http://yanxuan.nosdn.127.net/eb194af37a6171d2a01bf62b9f050e8e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/884320d6edcc611d24ad21b1141c25b1.jpg\" _src=\"http://yanxuan.nosdn.127.net/884320d6edcc611d24ad21b1141c25b1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ba72d5d988de555c409567c169a84dde.jpg\" _src=\"http://yanxuan.nosdn.127.net/ba72d5d988de555c409567c169a84dde.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b2a07e2087bbf898d06fdd81dfca2df8.jpg\" _src=\"http://yanxuan.nosdn.127.net/b2a07e2087bbf898d06fdd81dfca2df8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7c56478dc47d57ad8e9975bc3f56d8a2.jpg\" _src=\"http://yanxuan.nosdn.127.net/7c56478dc47d57ad8e9975bc3f56d8a2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/646b5e65aa8e103ad53520a651708b42.jpg\" _src=\"http://yanxuan.nosdn.127.net/646b5e65aa8e103ad53520a651708b42.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/14553a06674418536634641341ba2279.jpg\" _src=\"http://yanxuan.nosdn.127.net/14553a06674418536634641341ba2279.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0b01dbd307c437639b37bbf595fa221f.jpg\" _src=\"http://yanxuan.nosdn.127.net/0b01dbd307c437639b37bbf595fa221f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/597ebc5225250483d119412011236fbe.jpg\" _src=\"http://yanxuan.nosdn.127.net/597ebc5225250483d119412011236fbe.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/def4b6a46e8cfc94d1406364217674b2.jpg\" _src=\"http://yanxuan.nosdn.127.net/def4b6a46e8cfc94d1406364217674b2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/861e9e9daac7cfe608c8b97a714bcc18.jpg\" _src=\"http://yanxuan.nosdn.127.net/861e9e9daac7cfe608c8b97a714bcc18.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b0f60034e88744709f095c96709b17af.jpg\" _src=\"http://yanxuan.nosdn.127.net/b0f60034e88744709f095c96709b17af.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7d107a65c0c7099ba6cf5d1b961d7463.jpg\" _src=\"http://yanxuan.nosdn.127.net/7d107a65c0c7099ba6cf5d1b961d7463.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a2863cd9018abe484803b09cf9445c35.jpg\" _src=\"http://yanxuan.nosdn.127.net/a2863cd9018abe484803b09cf9445c35.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a898b97d00a5d1c0d02893dbce8e3b0f.jpg\" _src=\"http://yanxuan.nosdn.127.net/a898b97d00a5d1c0d02893dbce8e3b0f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4af6b2c9a95ec988fd818a7f3ef182ac.jpg\" _src=\"http://yanxuan.nosdn.127.net/4af6b2c9a95ec988fd818a7f3ef182ac.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/23c5eb669a232ec8beb8f5f16c90546f.jpg\" _src=\"http://yanxuan.nosdn.127.net/23c5eb669a232ec8beb8f5f16c90546f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/070e38033dc3a05012e7eb509f88aadb.jpg\" _src=\"http://yanxuan.nosdn.127.net/070e38033dc3a05012e7eb509f88aadb.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e8036939f9edbcbdeb5927c911802ac2.jpg\" _src=\"http://yanxuan.nosdn.127.net/e8036939f9edbcbdeb5927c911802ac2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1c35fd3d43a7dbe1d2517867ff622339.jpg\" _src=\"http://yanxuan.nosdn.127.net/1c35fd3d43a7dbe1d2517867ff622339.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8d4c5c234ccc8b158270174b8d2d875b.jpg\" _src=\"http://yanxuan.nosdn.127.net/8d4c5c234ccc8b158270174b8d2d875b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cb3868ecac5f9eb338a199fca0470ed1.jpg\" _src=\"http://yanxuan.nosdn.127.net/cb3868ecac5f9eb338a199fca0470ed1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/26878b0d7aa87ea6ca14e9ad5a1e7e28.jpg\" _src=\"http://yanxuan.nosdn.127.net/26878b0d7aa87ea6ca14e9ad5a1e7e28.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b2d42e7df82105f2fa0725a5d1f9e967.jpg\" _src=\"http://yanxuan.nosdn.127.net/b2d42e7df82105f2fa0725a5d1f9e967.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4dd59366d29dd79d94bdf1a015d13340.jpg\" _src=\"http://yanxuan.nosdn.127.net/4dd59366d29dd79d94bdf1a015d13340.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/69ae431632b8f6cd7fd6169b248c755a.jpg\" _src=\"http://yanxuan.nosdn.127.net/69ae431632b8f6cd7fd6169b248c755a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a7cc2339764709b17ba30ab09c088ba2.jpg\" _src=\"http://yanxuan.nosdn.127.net/a7cc2339764709b17ba30ab09c088ba2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/baaf875d2f9113049ecdfe4368ae997e.jpg\" _src=\"http://yanxuan.nosdn.127.net/baaf875d2f9113049ecdfe4368ae997e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8899a3367f43543e7990fe00d27ef6a9.jpg\" _src=\"http://yanxuan.nosdn.127.net/8899a3367f43543e7990fe00d27ef6a9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d640655f288850e49e385ca62553b423.jpg\" _src=\"http://yanxuan.nosdn.127.net/d640655f288850e49e385ca62553b423.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5be64320b03f6c68cfb89481b3127529.jpg\" _src=\"http://yanxuan.nosdn.127.net/5be64320b03f6c68cfb89481b3127529.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ba6c788e03d06929b105209c07646106.jpg\" _src=\"http://yanxuan.nosdn.127.net/ba6c788e03d06929b105209c07646106.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/37a3cab46afb1afb717fc5536cb5bd81.jpg\" _src=\"http://yanxuan.nosdn.127.net/37a3cab46afb1afb717fc5536cb5bd81.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/807c872ecb54480af96f46ca1dd5b8d2.jpg\" _src=\"http://yanxuan.nosdn.127.net/807c872ecb54480af96f46ca1dd5b8d2.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '14', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/f77d0da8a08d35cbedd3d1b5117064d7.jpg', 'http://yanxuan.nosdn.127.net/534231583f82572398ec84bad425cdaf.png', '79.00', '154', '1111087', '0.00', '限时购', '', '0.00', '0', '0', '0', '86.90', null, null, null, null);
  704. INSERT INTO `nideshop_goods` VALUES ('1110018', '1017000', '1110018', '耐用狗狗清洁美容护理套装', '0', '100', '', '精致钢材,耐咬美容', '<p><img src=\"http://yanxuan.nosdn.127.net/3854994be7c4da17e5a2f316b8e0a115.jpg\" _src=\"http://yanxuan.nosdn.127.net/3854994be7c4da17e5a2f316b8e0a115.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/875e35f196d220324fa1d1448c635852.jpg\" _src=\"http://yanxuan.nosdn.127.net/875e35f196d220324fa1d1448c635852.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/60ed2b973f7be99c217d2a7cebbd4296.jpg\" _src=\"http://yanxuan.nosdn.127.net/60ed2b973f7be99c217d2a7cebbd4296.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ff5e0e33fd75703190ae409c6d21e366.jpg\" _src=\"http://yanxuan.nosdn.127.net/ff5e0e33fd75703190ae409c6d21e366.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/be57569f669c85a9b0187a66e1572178.jpg\" _src=\"http://yanxuan.nosdn.127.net/be57569f669c85a9b0187a66e1572178.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/191dc75b06fa04bef578f0e848d17d07.jpg\" _src=\"http://yanxuan.nosdn.127.net/191dc75b06fa04bef578f0e848d17d07.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bbf0148a77e3441b68939abb092496e9.jpg\" _src=\"http://yanxuan.nosdn.127.net/bbf0148a77e3441b68939abb092496e9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ac2fa1219b362841a6d1dc241a51d2c9.jpg\" _src=\"http://yanxuan.nosdn.127.net/ac2fa1219b362841a6d1dc241a51d2c9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c27a79ce5a90f227ff4e50f3fb619e1b.jpg\" _src=\"http://yanxuan.nosdn.127.net/c27a79ce5a90f227ff4e50f3fb619e1b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9ce899dc8db6d3353d9c34b50a24a111.jpg\" _src=\"http://yanxuan.nosdn.127.net/9ce899dc8db6d3353d9c34b50a24a111.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f2c7d9ad1e857941277f82f9874c2081.jpg\" _src=\"http://yanxuan.nosdn.127.net/f2c7d9ad1e857941277f82f9874c2081.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/28edef9e1654a433a400ca200d7c7c55.jpg\" _src=\"http://yanxuan.nosdn.127.net/28edef9e1654a433a400ca200d7c7c55.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2ba3171699b0d6c2f695e6cdcf8e598e.jpg\" _src=\"http://yanxuan.nosdn.127.net/2ba3171699b0d6c2f695e6cdcf8e598e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d0d29d0225d53e8922260018b0c86642.jpg\" _src=\"http://yanxuan.nosdn.127.net/d0d29d0225d53e8922260018b0c86642.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/70a629edf4e3d395ba12c96a1e6d7180.jpg\" _src=\"http://yanxuan.nosdn.127.net/70a629edf4e3d395ba12c96a1e6d7180.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f6c160891c4df84eda72a641f86cadd6.jpg\" _src=\"http://yanxuan.nosdn.127.net/f6c160891c4df84eda72a641f86cadd6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e96a60883b2bd0145f8af51168c547a8.jpg\" _src=\"http://yanxuan.nosdn.127.net/e96a60883b2bd0145f8af51168c547a8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a45dd7da46705aee759e95d0d8587f06.jpg\" _src=\"http://yanxuan.nosdn.127.net/a45dd7da46705aee759e95d0d8587f06.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b7f20607c2e7a2780e2b37cae44b52af.jpg\" _src=\"http://yanxuan.nosdn.127.net/b7f20607c2e7a2780e2b37cae44b52af.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8efd5ead32d88db8fcd944dd1f72f9d6.jpg\" _src=\"http://yanxuan.nosdn.127.net/8efd5ead32d88db8fcd944dd1f72f9d6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1032f7228911b42dbfae13d3a7093b9e.jpg\" _src=\"http://yanxuan.nosdn.127.net/1032f7228911b42dbfae13d3a7093b9e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b96b094cedf2ddceb42c273477cc3717.jpg\" _src=\"http://yanxuan.nosdn.127.net/b96b094cedf2ddceb42c273477cc3717.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3c7bc21e4bc28e894d58cbd7c66706eb.jpg\" _src=\"http://yanxuan.nosdn.127.net/3c7bc21e4bc28e894d58cbd7c66706eb.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/491b83a15dda113d32f03807ca005684.jpg\" _src=\"http://yanxuan.nosdn.127.net/491b83a15dda113d32f03807ca005684.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/625930a2fa643787da5d7f2f8b7403a2.jpg\" _src=\"http://yanxuan.nosdn.127.net/625930a2fa643787da5d7f2f8b7403a2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/dd061b996d5bfa2b0ff4cb0252fc193a.jpg\" _src=\"http://yanxuan.nosdn.127.net/dd061b996d5bfa2b0ff4cb0252fc193a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/433c5a8317a3806cc81e14c3f8cb84a9.jpg\" _src=\"http://yanxuan.nosdn.127.net/433c5a8317a3806cc81e14c3f8cb84a9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2bace2645a1676f402168453afe0abc6.jpg\" _src=\"http://yanxuan.nosdn.127.net/2bace2645a1676f402168453afe0abc6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f71c354f48548663f30b982b56dffd2f.jpg\" _src=\"http://yanxuan.nosdn.127.net/f71c354f48548663f30b982b56dffd2f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/47d6aeeefdeb2c16fc0fb5e3dfadf5d3.jpg\" _src=\"http://yanxuan.nosdn.127.net/47d6aeeefdeb2c16fc0fb5e3dfadf5d3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9950b6e3db69079542793ff1a5767e7b.jpg\" _src=\"http://yanxuan.nosdn.127.net/9950b6e3db69079542793ff1a5767e7b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/30b8844248a0063ac6242f0c71be15ff.jpg\" _src=\"http://yanxuan.nosdn.127.net/30b8844248a0063ac6242f0c71be15ff.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/66c73c753f1071a23b0d9a1b2557726a.jpg\" _src=\"http://yanxuan.nosdn.127.net/66c73c753f1071a23b0d9a1b2557726a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/448f60c3e39778df00dc650374005029.jpg\" _src=\"http://yanxuan.nosdn.127.net/448f60c3e39778df00dc650374005029.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d02115e001d27a057cfe22c7d5aebf2e.jpg\" _src=\"http://yanxuan.nosdn.127.net/d02115e001d27a057cfe22c7d5aebf2e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/38af331901526fa722a8287481fb926c.jpg\" _src=\"http://yanxuan.nosdn.127.net/38af331901526fa722a8287481fb926c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ab8fdd7ef8d01c0130b53095d6497a94.jpg\" _src=\"http://yanxuan.nosdn.127.net/ab8fdd7ef8d01c0130b53095d6497a94.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3ecabbfba3838ec15af9f0599943f47a.jpg\" _src=\"http://yanxuan.nosdn.127.net/3ecabbfba3838ec15af9f0599943f47a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d502d68633f2c4ea2b4c5d0ab80c5a5c.jpg\" _src=\"http://yanxuan.nosdn.127.net/d502d68633f2c4ea2b4c5d0ab80c5a5c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4a45df861c4167e26960694ddc076401.jpg\" _src=\"http://yanxuan.nosdn.127.net/4a45df861c4167e26960694ddc076401.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0d1aabd78848eea2965f9668e5335d5f.jpg\" _src=\"http://yanxuan.nosdn.127.net/0d1aabd78848eea2965f9668e5335d5f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/dbb869169b8b23830e324f96779424c1.jpg\" _src=\"http://yanxuan.nosdn.127.net/dbb869169b8b23830e324f96779424c1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fd9ce065fe1563d5520de468a1179b65.jpg\" _src=\"http://yanxuan.nosdn.127.net/fd9ce065fe1563d5520de468a1179b65.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7b89dfd9f8acd2b5cd2782d1a648c5e6.jpg\" _src=\"http://yanxuan.nosdn.127.net/7b89dfd9f8acd2b5cd2782d1a648c5e6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/70876851a29e0e910842ac894f96eba8.jpg\" _src=\"http://yanxuan.nosdn.127.net/70876851a29e0e910842ac894f96eba8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ace99aa398960caeb7ca6c5b766be6e4.jpg\" _src=\"http://yanxuan.nosdn.127.net/ace99aa398960caeb7ca6c5b766be6e4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a7f4307003805e93698588edee29c130.jpg\" _src=\"http://yanxuan.nosdn.127.net/a7f4307003805e93698588edee29c130.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fecdb7d78e8301c026397575a661d02e.jpg\" _src=\"http://yanxuan.nosdn.127.net/fecdb7d78e8301c026397575a661d02e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6f3a1391596df218f87ee68336bb3074.jpg\" _src=\"http://yanxuan.nosdn.127.net/6f3a1391596df218f87ee68336bb3074.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '15', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/4f00698bc45451f04738ddb4d9ae2228.jpg', 'http://yanxuan.nosdn.127.net/d93aa5d6e7a296101cf4cb72613aeda6.png', '79.00', '362', '1111088', '0.00', '限时购', '', '0.00', '0', '0', '0', '86.90', null, null, null, null);
  705. INSERT INTO `nideshop_goods` VALUES ('1110019', '1017000', '1110019', '宠物合金钢安全除菌指甲护理组合', '0', '100', '', '猫狗皆可用,保护家具', '<p><img src=\"http://yanxuan.nosdn.127.net/ddc3b83c0849e81d292991b65df5aa60.jpg\" _src=\"http://yanxuan.nosdn.127.net/ddc3b83c0849e81d292991b65df5aa60.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1015c576df64e0676520bf6e150aa491.jpg\" _src=\"http://yanxuan.nosdn.127.net/1015c576df64e0676520bf6e150aa491.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4b31db06b2dfa8da6ae97c5c49e0efc9.jpg\" _src=\"http://yanxuan.nosdn.127.net/4b31db06b2dfa8da6ae97c5c49e0efc9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2b3515f46bb6f9159faf77c8c0cbb2f4.jpg\" _src=\"http://yanxuan.nosdn.127.net/2b3515f46bb6f9159faf77c8c0cbb2f4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3457351f5689883379142f404f51e400.jpg\" _src=\"http://yanxuan.nosdn.127.net/3457351f5689883379142f404f51e400.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f1b1e7315c2486cd112de7f9fc479012.jpg\" _src=\"http://yanxuan.nosdn.127.net/f1b1e7315c2486cd112de7f9fc479012.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9afdd4bf281e983d5519feb39326a670.jpg\" _src=\"http://yanxuan.nosdn.127.net/9afdd4bf281e983d5519feb39326a670.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9c178d019321a1573e54cd15e192177a.jpg\" _src=\"http://yanxuan.nosdn.127.net/9c178d019321a1573e54cd15e192177a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/07073287b255e8a425369cdc893f5f20.jpg\" _src=\"http://yanxuan.nosdn.127.net/07073287b255e8a425369cdc893f5f20.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/293d2a36e7185e7f66b896e25c2c8305.jpg\" _src=\"http://yanxuan.nosdn.127.net/293d2a36e7185e7f66b896e25c2c8305.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d80991ea2ce193d597e2eee242bc9a80.jpg\" _src=\"http://yanxuan.nosdn.127.net/d80991ea2ce193d597e2eee242bc9a80.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1e5e9936313a9c60240056405ee2ba04.jpg\" _src=\"http://yanxuan.nosdn.127.net/1e5e9936313a9c60240056405ee2ba04.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/72f3065c41af1565f7a532382fc79ef4.jpg\" _src=\"http://yanxuan.nosdn.127.net/72f3065c41af1565f7a532382fc79ef4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ea7ed70f911913fcb0f9c82c0f7144d7.jpg\" _src=\"http://yanxuan.nosdn.127.net/ea7ed70f911913fcb0f9c82c0f7144d7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9d3c4a51893f1cab2790ef8bb415b874.jpg\" _src=\"http://yanxuan.nosdn.127.net/9d3c4a51893f1cab2790ef8bb415b874.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9a102958c5c967148d2ddc829928e128.jpg\" _src=\"http://yanxuan.nosdn.127.net/9a102958c5c967148d2ddc829928e128.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/eba4e71d802b4a643aa8d1b6f1ef538d.jpg\" _src=\"http://yanxuan.nosdn.127.net/eba4e71d802b4a643aa8d1b6f1ef538d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2bc8520fe40de2d7476fe1798080f28a.jpg\" _src=\"http://yanxuan.nosdn.127.net/2bc8520fe40de2d7476fe1798080f28a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/74cd885cd96572e9a130b128f9f67f06.jpg\" _src=\"http://yanxuan.nosdn.127.net/74cd885cd96572e9a130b128f9f67f06.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/368eab0ae5725751b99059da17d1fe40.jpg\" _src=\"http://yanxuan.nosdn.127.net/368eab0ae5725751b99059da17d1fe40.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a0b19f0579e1e6a83137aac04731b897.jpg\" _src=\"http://yanxuan.nosdn.127.net/a0b19f0579e1e6a83137aac04731b897.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0ae42c7dc053d8fe3ec9f3c55dfbd775.jpg\" _src=\"http://yanxuan.nosdn.127.net/0ae42c7dc053d8fe3ec9f3c55dfbd775.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f1e422c2778e752789c04187cd021f41.jpg\" _src=\"http://yanxuan.nosdn.127.net/f1e422c2778e752789c04187cd021f41.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ea2a040b902d957500aa9b34a46c9ab6.jpg\" _src=\"http://yanxuan.nosdn.127.net/ea2a040b902d957500aa9b34a46c9ab6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5761b8ff0a8585edef490a4d4ac301ce.jpg\" _src=\"http://yanxuan.nosdn.127.net/5761b8ff0a8585edef490a4d4ac301ce.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/839c1f5686172cf0412e5d3eaba8a82c.jpg\" _src=\"http://yanxuan.nosdn.127.net/839c1f5686172cf0412e5d3eaba8a82c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3985040baac585a6f0934e2b05e2e6ff.jpg\" _src=\"http://yanxuan.nosdn.127.net/3985040baac585a6f0934e2b05e2e6ff.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/014628292ae6101a20bbb92866b63f25.jpg\" _src=\"http://yanxuan.nosdn.127.net/014628292ae6101a20bbb92866b63f25.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8347e039b379c389b74789fe0f50b7d9.jpg\" _src=\"http://yanxuan.nosdn.127.net/8347e039b379c389b74789fe0f50b7d9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a11a6cc14c6c289b329e186b92009e25.jpg\" _src=\"http://yanxuan.nosdn.127.net/a11a6cc14c6c289b329e186b92009e25.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e3f2434dfe4be243056e58123eee6a7d.jpg\" _src=\"http://yanxuan.nosdn.127.net/e3f2434dfe4be243056e58123eee6a7d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/774f19c00df4da1e0c7909add91a1370.jpg\" _src=\"http://yanxuan.nosdn.127.net/774f19c00df4da1e0c7909add91a1370.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e69dfd820c7abf9825fb94ebce881244.jpg\" _src=\"http://yanxuan.nosdn.127.net/e69dfd820c7abf9825fb94ebce881244.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e7ec56aeda2b7ab12758e7d1c7806cc4.jpg\" _src=\"http://yanxuan.nosdn.127.net/e7ec56aeda2b7ab12758e7d1c7806cc4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5a537ccc12aed9a406c392a7d862cb1e.jpg\" _src=\"http://yanxuan.nosdn.127.net/5a537ccc12aed9a406c392a7d862cb1e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b14cfaad56ea13375db5996e8fd755f4.jpg\" _src=\"http://yanxuan.nosdn.127.net/b14cfaad56ea13375db5996e8fd755f4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1498337acf06675f75910ce5aa5aed94.jpg\" _src=\"http://yanxuan.nosdn.127.net/1498337acf06675f75910ce5aa5aed94.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/874ffbe6adf9a5441434ff9f6a6f18f7.jpg\" _src=\"http://yanxuan.nosdn.127.net/874ffbe6adf9a5441434ff9f6a6f18f7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/00750da19e23f4503a15186b49426093.jpg\" _src=\"http://yanxuan.nosdn.127.net/00750da19e23f4503a15186b49426093.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a9d2b56d241ce7bed1995e1eff43c376.jpg\" _src=\"http://yanxuan.nosdn.127.net/a9d2b56d241ce7bed1995e1eff43c376.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7f36cf5f4dd5285d52d5e3d00356dc67.jpg\" _src=\"http://yanxuan.nosdn.127.net/7f36cf5f4dd5285d52d5e3d00356dc67.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1b90d5200ab88c58ffedd0674202163e.jpg\" _src=\"http://yanxuan.nosdn.127.net/1b90d5200ab88c58ffedd0674202163e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0654bc2c783d15611855a7785b119650.jpg\" _src=\"http://yanxuan.nosdn.127.net/0654bc2c783d15611855a7785b119650.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8858b07274e515c941876822ed90ed24.jpg\" _src=\"http://yanxuan.nosdn.127.net/8858b07274e515c941876822ed90ed24.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/819a3d7d46c9de4def544dc901cda509.jpg\" _src=\"http://yanxuan.nosdn.127.net/819a3d7d46c9de4def544dc901cda509.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2a48c7640b69a38257223bb54e9222bc.jpg\" _src=\"http://yanxuan.nosdn.127.net/2a48c7640b69a38257223bb54e9222bc.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bd5f7266799709dc96e3d9336b565171.jpg\" _src=\"http://yanxuan.nosdn.127.net/bd5f7266799709dc96e3d9336b565171.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '13', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/66823c76c19696e1c6418d833dfd274f.jpg', 'http://yanxuan.nosdn.127.net/1e7e392b6fc9da99dc112197b7444eec.png', '69.00', '107', '1111089', '0.00', '限时购', '', '0.00', '0', '0', '0', '75.90', null, null, null, null);
  706. INSERT INTO `nideshop_goods` VALUES ('1111007', '1008015', '1111007', '妙曲奇遇记曲奇礼盒 520克', '0', '100', '', '六种口味,酥香脆爽', '', '1', '2017-08-30 11:40:11', '4', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/b5b25363daed8cc56f8b455564538fd5.png', 'http://yanxuan.nosdn.127.net/8d228f767b136a67aaf2cbbf6deb46fa.png', '78.00', '2073', '1112010', '0.00', '限时购', '', '0.00', '0', '0', '0', '85.80', null, null, null, null);
  707. INSERT INTO `nideshop_goods` VALUES ('1111010', '1008001', '1111010', '静谧森林简欧色织提花面巾', '0', '100', '', '静谧神秘,亲肤耐用', '', '1', '2017-08-30 11:40:11', '9', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/4eeea55e7c6a0cf15c8a9574dcfa5e1d.jpg', 'http://yanxuan.nosdn.127.net/ef7efe55839e66993fb604dc3c2d9410.png', '69.00', '5514', '1112013', '0.00', '限时购', '', '0.00', '0', '0', '0', '75.90', null, null, null, null);
  708. INSERT INTO `nideshop_goods` VALUES ('1113010', '1010002', '1113010', '男式丝滑莫代尔平角内裤', '0', '100', '', 'Jockey供应商,亲肤贴合', '', '1', '2017-08-30 11:40:11', '6', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/e1fa80ecf411c0740927cebbe6546920.png', 'http://yanxuan.nosdn.127.net/2d0920b51331bb1636330ad8e07d1b97.png', '59.00', '52589', '1114017', '0.00', '限时购', '', '0.00', '0', '0', '0', '64.90', null, null, null, null);
  709. INSERT INTO `nideshop_goods` VALUES ('1113011', '1010002', '1113011', '女式丝滑莫代尔三角内裤', '0', '100', '', 'Jockey工厂,顺滑爽肤', '', '1', '2017-08-30 11:40:11', '5', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/4788f548071f24219faf943b1fb28a79.png', 'http://yanxuan.nosdn.127.net/7a683f68fc988df299b5cfe6273d6fb7.png', '49.00', '23282', '1114040', '0.00', '限时购', '', '0.00', '0', '0', '0', '53.90', null, null, null, null);
  710. INSERT INTO `nideshop_goods` VALUES ('1113019', '1012001', '1113019', '20寸 PC膜拉链登机箱', '0', '100', '', '热卖9万只,网易人手1只', '', '1', '2017-08-30 11:40:11', '1', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/2687b2a39cd77cf184cf387dc4cbb6af.png', 'http://yanxuan.nosdn.127.net/ad504bb389039ff35c4cd6ae912be87e.png', '208.00', '63669', '1114089', '0.00', '限时购', '', '0.00', '0', '0', '0', '228.80', null, null, null, null);
  711. INSERT INTO `nideshop_goods` VALUES ('1114011', '1012001', '1114011', '104升 纯PC拉链斜纹拉杆箱', '0', '100', '', '104升的体积,90升的价格', '', '1', '2017-08-30 11:40:11', '5', '0', '0', '369.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/7e622b47c4d28dc5e7f97be57ba17b84.png', 'http://yanxuan.nosdn.127.net/196b5ce11930b4eadaec563cb0406634.png', '299.00', '4719', '1115089', '0.00', '三石福利价', '三石福利价', '0.00', '0', '203', '0', '328.90', null, null, null, null);
  712. INSERT INTO `nideshop_goods` VALUES ('1115023', '1008008', '1115023', '新年礼盒 双宫茧纱布美肤手工蚕丝被', '0', '100', '', '手工匠心织造', '<p><img src=\"http://yanxuan.nosdn.127.net/4c43f2c47b3c9add17fae31e7fe26a13.jpg\" _src=\"http://yanxuan.nosdn.127.net/4c43f2c47b3c9add17fae31e7fe26a13.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/dde334e64507ecb2020bece8632256ac.jpg\" _src=\"http://yanxuan.nosdn.127.net/dde334e64507ecb2020bece8632256ac.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7d0ac4805b5cbba2c99494aaa095b96c.jpg\" _src=\"http://yanxuan.nosdn.127.net/7d0ac4805b5cbba2c99494aaa095b96c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a4b7fade54796fac479d3512632f53c0.jpg\" _src=\"http://yanxuan.nosdn.127.net/a4b7fade54796fac479d3512632f53c0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9c1b9410c37aa278b27b1c1c9d688332.jpg\" _src=\"http://yanxuan.nosdn.127.net/9c1b9410c37aa278b27b1c1c9d688332.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/69027eeafd9ce6f9c28f8e9eacccac1c.jpg\" _src=\"http://yanxuan.nosdn.127.net/69027eeafd9ce6f9c28f8e9eacccac1c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/17945f8075ec3d09cc9b3b45c1b23954.jpg\" _src=\"http://yanxuan.nosdn.127.net/17945f8075ec3d09cc9b3b45c1b23954.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bdcc84a9987078f47428bc9802f52a71.jpg\" _src=\"http://yanxuan.nosdn.127.net/bdcc84a9987078f47428bc9802f52a71.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/454b63ab7133ec9fea35b8b09e823922.jpg\" _src=\"http://yanxuan.nosdn.127.net/454b63ab7133ec9fea35b8b09e823922.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/217f38b044ca468b5078114b18bffdf1.jpg\" _src=\"http://yanxuan.nosdn.127.net/217f38b044ca468b5078114b18bffdf1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/eaa60f902992461dacdd7e941afd6ce1.jpg\" _src=\"http://yanxuan.nosdn.127.net/eaa60f902992461dacdd7e941afd6ce1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3ed15f21fffb449f371059235876e382.jpg\" _src=\"http://yanxuan.nosdn.127.net/3ed15f21fffb449f371059235876e382.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/686e234a86c089de50d3e25aa9ad9bdf.jpg\" _src=\"http://yanxuan.nosdn.127.net/686e234a86c089de50d3e25aa9ad9bdf.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1c5876107596920d047902bc20512f87.jpg\" _src=\"http://yanxuan.nosdn.127.net/1c5876107596920d047902bc20512f87.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/13f310f8a94423864b3c927dbae63dd7.jpg\" _src=\"http://yanxuan.nosdn.127.net/13f310f8a94423864b3c927dbae63dd7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c2ddc5e7c65eb108c0963399a577d027.jpg\" _src=\"http://yanxuan.nosdn.127.net/c2ddc5e7c65eb108c0963399a577d027.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c805b24ed55349a58d0fb9cf5d6c261f.jpg\" _src=\"http://yanxuan.nosdn.127.net/c805b24ed55349a58d0fb9cf5d6c261f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a230022fb66841c03150cf3fe89c818e.jpg\" _src=\"http://yanxuan.nosdn.127.net/a230022fb66841c03150cf3fe89c818e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/40f1ce851c58791fcae3caae74c8f0d0.jpg\" _src=\"http://yanxuan.nosdn.127.net/40f1ce851c58791fcae3caae74c8f0d0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/df61ff302af83280e8e2c36c4e80a393.jpg\" _src=\"http://yanxuan.nosdn.127.net/df61ff302af83280e8e2c36c4e80a393.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1672e49a265eac0d2fb319e7f5088ff0.jpg\" _src=\"http://yanxuan.nosdn.127.net/1672e49a265eac0d2fb319e7f5088ff0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b444408fbe681615abfb77bbe6e516df.jpg\" _src=\"http://yanxuan.nosdn.127.net/b444408fbe681615abfb77bbe6e516df.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a0debfd075ce1c7894c4a992fa4b00eb.jpg\" _src=\"http://yanxuan.nosdn.127.net/a0debfd075ce1c7894c4a992fa4b00eb.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/00b4174990e426b43dcddc69716833e9.jpg\" _src=\"http://yanxuan.nosdn.127.net/00b4174990e426b43dcddc69716833e9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ec68bbed4061fb2b49ff26f5e3a204f6.jpg\" _src=\"http://yanxuan.nosdn.127.net/ec68bbed4061fb2b49ff26f5e3a204f6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4f65623230b18f1040bc42ab410cebea.jpg\" _src=\"http://yanxuan.nosdn.127.net/4f65623230b18f1040bc42ab410cebea.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/12c57280d771639226579355e3508225.jpg\" _src=\"http://yanxuan.nosdn.127.net/12c57280d771639226579355e3508225.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/94f0d4b78a6e055a3bc933b38cde4676.jpg\" _src=\"http://yanxuan.nosdn.127.net/94f0d4b78a6e055a3bc933b38cde4676.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/377023664a1ecc7ae02de53a4c393493.jpg\" _src=\"http://yanxuan.nosdn.127.net/377023664a1ecc7ae02de53a4c393493.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/94bbae92dc9bc96cc262201c28443354.jpg\" _src=\"http://yanxuan.nosdn.127.net/94bbae92dc9bc96cc262201c28443354.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/59fbd18f4669bc5dd44a6dcce78a592d.jpg\" _src=\"http://yanxuan.nosdn.127.net/59fbd18f4669bc5dd44a6dcce78a592d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/99794ca0ea180fa5b61c6e8e9652234a.jpg\" _src=\"http://yanxuan.nosdn.127.net/99794ca0ea180fa5b61c6e8e9652234a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c263493b621abf732f0f471b0f863f94.jpg\" _src=\"http://yanxuan.nosdn.127.net/c263493b621abf732f0f471b0f863f94.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9e765a0f7f98ed029e50d82e5031c525.jpg\" _src=\"http://yanxuan.nosdn.127.net/9e765a0f7f98ed029e50d82e5031c525.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/02224d48e5035a0927979e91003514d6.jpg\" _src=\"http://yanxuan.nosdn.127.net/02224d48e5035a0927979e91003514d6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6dd2913a65cdf895816c4d131b1fcc1b.jpg\" _src=\"http://yanxuan.nosdn.127.net/6dd2913a65cdf895816c4d131b1fcc1b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/46d2edf60200fee3c56bcc1b2e67d5d9.jpg\" _src=\"http://yanxuan.nosdn.127.net/46d2edf60200fee3c56bcc1b2e67d5d9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/42fb7948dd89a4563c365fb75c35fc5c.jpg\" _src=\"http://yanxuan.nosdn.127.net/42fb7948dd89a4563c365fb75c35fc5c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/44ecec55301bac953355e425b833c4b5.jpg\" _src=\"http://yanxuan.nosdn.127.net/44ecec55301bac953355e425b833c4b5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bdc9c3ef74e64d5992f382e9e10f5147.jpg\" _src=\"http://yanxuan.nosdn.127.net/bdc9c3ef74e64d5992f382e9e10f5147.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/57145f6ce36ba8be808db121b29508e5.jpg\" _src=\"http://yanxuan.nosdn.127.net/57145f6ce36ba8be808db121b29508e5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/995ed62fb2f43ba14026b33f592dfbd8.jpg\" _src=\"http://yanxuan.nosdn.127.net/995ed62fb2f43ba14026b33f592dfbd8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2b4c9fa91ce933a10e0961c462e991d8.jpg\" _src=\"http://yanxuan.nosdn.127.net/2b4c9fa91ce933a10e0961c462e991d8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8f597f53ff837012a84c70f607478bb4.jpg\" _src=\"http://yanxuan.nosdn.127.net/8f597f53ff837012a84c70f607478bb4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/82987ce707f21ec0e3855d365e2ffc38.jpg\" _src=\"http://yanxuan.nosdn.127.net/82987ce707f21ec0e3855d365e2ffc38.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e1ca5c866a9f1035c1f220a2df9ef989.jpg\" _src=\"http://yanxuan.nosdn.127.net/e1ca5c866a9f1035c1f220a2df9ef989.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/028a65df8b5cd56e2f02a13d210652b5.jpg\" _src=\"http://yanxuan.nosdn.127.net/028a65df8b5cd56e2f02a13d210652b5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/683072f00fa3a3a8fb656d239a941da2.jpg\" _src=\"http://yanxuan.nosdn.127.net/683072f00fa3a3a8fb656d239a941da2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b087f76096d58c93035cb9a5252e242d.jpg\" _src=\"http://yanxuan.nosdn.127.net/b087f76096d58c93035cb9a5252e242d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5dc6c83e63cda0b42ccdd796f101703e.jpg\" _src=\"http://yanxuan.nosdn.127.net/5dc6c83e63cda0b42ccdd796f101703e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5166cd7c4f2083b5c7ef9c0e2fe39bff.jpg\" _src=\"http://yanxuan.nosdn.127.net/5166cd7c4f2083b5c7ef9c0e2fe39bff.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c37c9000c45935834f7102ddd438ba60.jpg\" _src=\"http://yanxuan.nosdn.127.net/c37c9000c45935834f7102ddd438ba60.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2e6639ec9703eba5814155ee2adb3358.jpg\" _src=\"http://yanxuan.nosdn.127.net/2e6639ec9703eba5814155ee2adb3358.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bb6879fa88e498a12b7ebdc3109b5c3b.jpg\" _src=\"http://yanxuan.nosdn.127.net/bb6879fa88e498a12b7ebdc3109b5c3b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d91b86efaabd244e1cfecf75033511f1.jpg\" _src=\"http://yanxuan.nosdn.127.net/d91b86efaabd244e1cfecf75033511f1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/217cbc83a7fab144b45a191e08dffdc1.jpg\" _src=\"http://yanxuan.nosdn.127.net/217cbc83a7fab144b45a191e08dffdc1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e65816dcd382d520dcd54fd7a17b242d.jpg\" _src=\"http://yanxuan.nosdn.127.net/e65816dcd382d520dcd54fd7a17b242d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/dc47abd7279a420920aceda815321575.jpg\" _src=\"http://yanxuan.nosdn.127.net/dc47abd7279a420920aceda815321575.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/66c4dd6abb1a48d315c621a1c0d921bd.jpg\" _src=\"http://yanxuan.nosdn.127.net/66c4dd6abb1a48d315c621a1c0d921bd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7b7300878dca46c3bcdb6149af3ad348.jpg\" _src=\"http://yanxuan.nosdn.127.net/7b7300878dca46c3bcdb6149af3ad348.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c5c40a9f499e5ade62e2e29daade5d08.jpg\" _src=\"http://yanxuan.nosdn.127.net/c5c40a9f499e5ade62e2e29daade5d08.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fb9f8961bcda56e9820c4145b52c14f1.jpg\" _src=\"http://yanxuan.nosdn.127.net/fb9f8961bcda56e9820c4145b52c14f1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d0b2e8fc816ab6f9436e2f2aa31b479c.jpg\" _src=\"http://yanxuan.nosdn.127.net/d0b2e8fc816ab6f9436e2f2aa31b479c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3261f979d8f60c3dc3b2fbf445a9b2ce.jpg\" _src=\"http://yanxuan.nosdn.127.net/3261f979d8f60c3dc3b2fbf445a9b2ce.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/44bbc9ca537c22ecbb2a70e4f33ce951.jpg\" _src=\"http://yanxuan.nosdn.127.net/44bbc9ca537c22ecbb2a70e4f33ce951.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/31231ed6c10173f61fa7557a62dadb0c.jpg\" _src=\"http://yanxuan.nosdn.127.net/31231ed6c10173f61fa7557a62dadb0c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cd654bed4757dca27da1e22795004a81.jpg\" _src=\"http://yanxuan.nosdn.127.net/cd654bed4757dca27da1e22795004a81.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6441397fb853ce2f84bb14a057b757c4.jpg\" _src=\"http://yanxuan.nosdn.127.net/6441397fb853ce2f84bb14a057b757c4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f4781f226a98fd5cd7b9495f1fc7b360.jpg\" _src=\"http://yanxuan.nosdn.127.net/f4781f226a98fd5cd7b9495f1fc7b360.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ae422e9f55e752cff9482178ea066280.jpg\" _src=\"http://yanxuan.nosdn.127.net/ae422e9f55e752cff9482178ea066280.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '13', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/a1492979beb737bd745dab27cadfb677.jpg', 'http://yanxuan.nosdn.127.net/f3d1f0217ed250a37ea807f456351a51.png', '1599.00', '133', '1116045', '0.00', '限时购', '', '0.00', '0', '0', '0', '1758.90', null, null, null, null);
  713. INSERT INTO `nideshop_goods` VALUES ('1115028', '1008009', '1115028', '日式色织水洗棉条纹四件套', '1001000', '100', '', '纯棉水洗感,柔软吸汗', '<p><img src=\"http://yanxuan.nosdn.127.net/c7a4904d00fec84dcb8d024acf9c9124.jpg\" _src=\"http://yanxuan.nosdn.127.net/c7a4904d00fec84dcb8d024acf9c9124.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1ca8260a0e668703f99b76d2b5febe39.jpg\" _src=\"http://yanxuan.nosdn.127.net/1ca8260a0e668703f99b76d2b5febe39.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1a8001ac179af2b6a9710754ab3be0a6.jpg\" _src=\"http://yanxuan.nosdn.127.net/1a8001ac179af2b6a9710754ab3be0a6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4565564e3359df7c1bfa3ad75d482fff.jpg\" _src=\"http://yanxuan.nosdn.127.net/4565564e3359df7c1bfa3ad75d482fff.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/dd7ace2c6a2c4324ef5e1f9355e89268.jpg\" _src=\"http://yanxuan.nosdn.127.net/dd7ace2c6a2c4324ef5e1f9355e89268.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cb9241fa90a48c6f9820785c728d2bff.jpg\" _src=\"http://yanxuan.nosdn.127.net/cb9241fa90a48c6f9820785c728d2bff.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8fae72fff469beacc683209a4514a41f.jpg\" _src=\"http://yanxuan.nosdn.127.net/8fae72fff469beacc683209a4514a41f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/395d99acde8e480bde8dc765ac1eb580.jpg\" _src=\"http://yanxuan.nosdn.127.net/395d99acde8e480bde8dc765ac1eb580.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3f5a5bc28c4db2fffc72228668a09534.jpg\" _src=\"http://yanxuan.nosdn.127.net/3f5a5bc28c4db2fffc72228668a09534.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/849c44ecb9149dbe4186fd2a7176c2b8.jpg\" _src=\"http://yanxuan.nosdn.127.net/849c44ecb9149dbe4186fd2a7176c2b8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/85c02b7f73716798a07078ca99a84dcc.jpg\" _src=\"http://yanxuan.nosdn.127.net/85c02b7f73716798a07078ca99a84dcc.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/02e8ed22c5110a71db1bbe3ea911246d.jpg\" _src=\"http://yanxuan.nosdn.127.net/02e8ed22c5110a71db1bbe3ea911246d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3d668a817a0c0fbf2c550fb2732e3278.jpg\" _src=\"http://yanxuan.nosdn.127.net/3d668a817a0c0fbf2c550fb2732e3278.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7504ed0982387d5837de6f146aeae2a6.jpg\" _src=\"http://yanxuan.nosdn.127.net/7504ed0982387d5837de6f146aeae2a6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5825013e93079cd9389a1a85db9ea986.jpg\" _src=\"http://yanxuan.nosdn.127.net/5825013e93079cd9389a1a85db9ea986.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c9895d59d2ce2c2f05b7d7d342edf8b0.jpg\" _src=\"http://yanxuan.nosdn.127.net/c9895d59d2ce2c2f05b7d7d342edf8b0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/85c29c4c8fb2db231665bcbf2322671d.jpg\" _src=\"http://yanxuan.nosdn.127.net/85c29c4c8fb2db231665bcbf2322671d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/57615e82ddcb6f5b4eb1239d3948d8fd.jpg\" _src=\"http://yanxuan.nosdn.127.net/57615e82ddcb6f5b4eb1239d3948d8fd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/518b4a422d10e1075a76bb79232391e6.jpg\" _src=\"http://yanxuan.nosdn.127.net/518b4a422d10e1075a76bb79232391e6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d5928965b398160fdfef1a1a826bac75.jpg\" _src=\"http://yanxuan.nosdn.127.net/d5928965b398160fdfef1a1a826bac75.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6271c3f5120f19b42bb913e6945cbf95.jpg\" _src=\"http://yanxuan.nosdn.127.net/6271c3f5120f19b42bb913e6945cbf95.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/674aee6d3a58fb51551f6766689bc7ab.jpg\" _src=\"http://yanxuan.nosdn.127.net/674aee6d3a58fb51551f6766689bc7ab.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/29f78e78e62742cff9b760a9b97e4347.jpg\" _src=\"http://yanxuan.nosdn.127.net/29f78e78e62742cff9b760a9b97e4347.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/755ac0784730b54dc44fc2a3fc97d941.jpg\" _src=\"http://yanxuan.nosdn.127.net/755ac0784730b54dc44fc2a3fc97d941.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b0cd4cc9a627be11362be64fa4bcbf06.jpg\" _src=\"http://yanxuan.nosdn.127.net/b0cd4cc9a627be11362be64fa4bcbf06.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3205cd14570da7022b1943da198763f0.jpg\" _src=\"http://yanxuan.nosdn.127.net/3205cd14570da7022b1943da198763f0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f263b42fc5808f4de777410befd094cb.jpg\" _src=\"http://yanxuan.nosdn.127.net/f263b42fc5808f4de777410befd094cb.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/93d0a8bea9bd2f52941628dff09ef381.jpg\" _src=\"http://yanxuan.nosdn.127.net/93d0a8bea9bd2f52941628dff09ef381.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/97e43d6548d7215956380ffd0c5a1810.jpg\" _src=\"http://yanxuan.nosdn.127.net/97e43d6548d7215956380ffd0c5a1810.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e3e8b023e2dbf472c8889456c00cf9be.jpg\" _src=\"http://yanxuan.nosdn.127.net/e3e8b023e2dbf472c8889456c00cf9be.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/158be4bab49629d527bd8e27e55c77d1.jpg\" _src=\"http://yanxuan.nosdn.127.net/158be4bab49629d527bd8e27e55c77d1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4d345c8615953a60a424e5a47c0cd16a.jpg\" _src=\"http://yanxuan.nosdn.127.net/4d345c8615953a60a424e5a47c0cd16a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ff89423e056191c2d4a12196b900d7f7.jpg\" _src=\"http://yanxuan.nosdn.127.net/ff89423e056191c2d4a12196b900d7f7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e953286fce6c89f74ce7150f2f478d64.jpg\" _src=\"http://yanxuan.nosdn.127.net/e953286fce6c89f74ce7150f2f478d64.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ff0d95c718fe73cd66dff1de8a43d7a6.jpg\" _src=\"http://yanxuan.nosdn.127.net/ff0d95c718fe73cd66dff1de8a43d7a6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c2009a46185b6bd5463528971ef2c2af.jpg\" _src=\"http://yanxuan.nosdn.127.net/c2009a46185b6bd5463528971ef2c2af.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f08bae55ef68af811f57ff105ec5ec3f.jpg\" _src=\"http://yanxuan.nosdn.127.net/f08bae55ef68af811f57ff105ec5ec3f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/84ac737dabdb85482f2ce39df119c753.jpg\" _src=\"http://yanxuan.nosdn.127.net/84ac737dabdb85482f2ce39df119c753.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fc95259418359a519d7f604af79d6f19.jpg\" _src=\"http://yanxuan.nosdn.127.net/fc95259418359a519d7f604af79d6f19.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9b673c4829dceec9488b5bddacc3ae7c.jpg\" _src=\"http://yanxuan.nosdn.127.net/9b673c4829dceec9488b5bddacc3ae7c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/da72e531c1bc3bba73d61456396dcaba.jpg\" _src=\"http://yanxuan.nosdn.127.net/da72e531c1bc3bba73d61456396dcaba.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/10e489150f5b12c3fed27560df0cb391.jpg\" _src=\"http://yanxuan.nosdn.127.net/10e489150f5b12c3fed27560df0cb391.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fc42020bc2b630c1be212b734bf70e53.jpg\" _src=\"http://yanxuan.nosdn.127.net/fc42020bc2b630c1be212b734bf70e53.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f27be3e26b925f26d81e5f90b12cd1cf.jpg\" _src=\"http://yanxuan.nosdn.127.net/f27be3e26b925f26d81e5f90b12cd1cf.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/33e9cfb394b44658be3ab3fbae977638.jpg\" _src=\"http://yanxuan.nosdn.127.net/33e9cfb394b44658be3ab3fbae977638.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/008e03c492bf5b1cf9a3b94c525e3920.jpg\" _src=\"http://yanxuan.nosdn.127.net/008e03c492bf5b1cf9a3b94c525e3920.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e4bc8cbbb6b937bb0b122649a4560e1c.jpg\" _src=\"http://yanxuan.nosdn.127.net/e4bc8cbbb6b937bb0b122649a4560e1c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/dbee4d90772a3e0c40811de3fd2cfdea.jpg\" _src=\"http://yanxuan.nosdn.127.net/dbee4d90772a3e0c40811de3fd2cfdea.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '5', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/34ce3734403b04de2a027206237aad6f.jpg', 'http://yanxuan.nosdn.127.net/3d0045e8f43439c7004fae052b2162ed.png', '299.00', '4440', '1116061', '0.00', '限时购', '', '0.00', '0', '0', '0', '328.90', null, null, null, null);
  714. INSERT INTO `nideshop_goods` VALUES ('1115052', '1008002', '1115052', '日式和风蔺草蒲团坐垫', '0', '100', '', '龙眉蔺草编织 日式茶禅风', '<p><img src=\"http://yanxuan.nosdn.127.net/c5c39ed4982045a32efde6f8e4b3d327.jpg\" _src=\"http://yanxuan.nosdn.127.net/c5c39ed4982045a32efde6f8e4b3d327.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/385b1a317b993c403f5b1532bf714592.jpg\" _src=\"http://yanxuan.nosdn.127.net/385b1a317b993c403f5b1532bf714592.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/97c44d5c2411a2b8bb39ee34957783bc.jpg\" _src=\"http://yanxuan.nosdn.127.net/97c44d5c2411a2b8bb39ee34957783bc.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/489a326e13a5bb3ce44a40fc71ccbc40.jpg\" _src=\"http://yanxuan.nosdn.127.net/489a326e13a5bb3ce44a40fc71ccbc40.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a2d6eb8e6ba1de0db4bdc1d4ef8d124d.jpg\" _src=\"http://yanxuan.nosdn.127.net/a2d6eb8e6ba1de0db4bdc1d4ef8d124d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5e723ef50260b98666955796f6dab4c4.jpg\" _src=\"http://yanxuan.nosdn.127.net/5e723ef50260b98666955796f6dab4c4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3cd9585a68c6b746f509408c2c16783a.jpg\" _src=\"http://yanxuan.nosdn.127.net/3cd9585a68c6b746f509408c2c16783a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/582bdb6e01ad3b8f2d76d0124dfdcf8e.jpg\" _src=\"http://yanxuan.nosdn.127.net/582bdb6e01ad3b8f2d76d0124dfdcf8e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8dd281a87afd1ae88dc05e1db35142a4.jpg\" _src=\"http://yanxuan.nosdn.127.net/8dd281a87afd1ae88dc05e1db35142a4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/73a608d337ac09b75b4bd14d8170b6d6.jpg\" _src=\"http://yanxuan.nosdn.127.net/73a608d337ac09b75b4bd14d8170b6d6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fdc10bae153b0dda81dd53b57c2b9e10.jpg\" _src=\"http://yanxuan.nosdn.127.net/fdc10bae153b0dda81dd53b57c2b9e10.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cccdb8b1831f0b70306a4b4eed8859db.jpg\" _src=\"http://yanxuan.nosdn.127.net/cccdb8b1831f0b70306a4b4eed8859db.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5baf78b4175b0fdb0132b5d83bb7e279.jpg\" _src=\"http://yanxuan.nosdn.127.net/5baf78b4175b0fdb0132b5d83bb7e279.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e613832e2b3e0cfcad1c42e6cf3d6d3e.jpg\" _src=\"http://yanxuan.nosdn.127.net/e613832e2b3e0cfcad1c42e6cf3d6d3e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/de9c7cedfd555ceb5adfed1c0c96b9b4.jpg\" _src=\"http://yanxuan.nosdn.127.net/de9c7cedfd555ceb5adfed1c0c96b9b4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/61a0ecae290671c15ac857e0f5b8fb5f.jpg\" _src=\"http://yanxuan.nosdn.127.net/61a0ecae290671c15ac857e0f5b8fb5f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c8f15359576d133d55457f69c05aeab8.jpg\" _src=\"http://yanxuan.nosdn.127.net/c8f15359576d133d55457f69c05aeab8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/aae2ff89028e265b06656aa63a94c58e.jpg\" _src=\"http://yanxuan.nosdn.127.net/aae2ff89028e265b06656aa63a94c58e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/dbecb94e2a020007505cad42c4e8553a.jpg\" _src=\"http://yanxuan.nosdn.127.net/dbecb94e2a020007505cad42c4e8553a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4adb8529010d4348b90cdc445f37d241.jpg\" _src=\"http://yanxuan.nosdn.127.net/4adb8529010d4348b90cdc445f37d241.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/953207acdb90210c681deb18b59fdadb.jpg\" _src=\"http://yanxuan.nosdn.127.net/953207acdb90210c681deb18b59fdadb.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fa5b73dea7f39614c01de4ee8acdc216.jpg\" _src=\"http://yanxuan.nosdn.127.net/fa5b73dea7f39614c01de4ee8acdc216.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2b7ccd3a548618f2fadb20aee9ab9531.jpg\" _src=\"http://yanxuan.nosdn.127.net/2b7ccd3a548618f2fadb20aee9ab9531.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ecde950588789c70df2222f1ded0f579.jpg\" _src=\"http://yanxuan.nosdn.127.net/ecde950588789c70df2222f1ded0f579.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/597505ee5976bf7f68646ef2321c5b39.jpg\" _src=\"http://yanxuan.nosdn.127.net/597505ee5976bf7f68646ef2321c5b39.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7f317d788383403a224a191452183b9f.jpg\" _src=\"http://yanxuan.nosdn.127.net/7f317d788383403a224a191452183b9f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9ca568894e24f4aa5d6eaf4174667ffa.jpg\" _src=\"http://yanxuan.nosdn.127.net/9ca568894e24f4aa5d6eaf4174667ffa.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bdbf86365486d602bc2c2b1aa4bd8781.jpg\" _src=\"http://yanxuan.nosdn.127.net/bdbf86365486d602bc2c2b1aa4bd8781.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/aa9db3d211c93fa9d2914754464e679c.jpg\" _src=\"http://yanxuan.nosdn.127.net/aa9db3d211c93fa9d2914754464e679c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/58e5cd852682d404200f57471e883485.jpg\" _src=\"http://yanxuan.nosdn.127.net/58e5cd852682d404200f57471e883485.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/14cc6189a160dcf8f0d2f0d0bd0b7f27.jpg\" _src=\"http://yanxuan.nosdn.127.net/14cc6189a160dcf8f0d2f0d0bd0b7f27.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c49b33afea38804de07fc9a6bb80dda9.jpg\" _src=\"http://yanxuan.nosdn.127.net/c49b33afea38804de07fc9a6bb80dda9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8cf4bc3c1b476cba2ec6290b02c698be.jpg\" _src=\"http://yanxuan.nosdn.127.net/8cf4bc3c1b476cba2ec6290b02c698be.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c3d5eb1291c79204e2e23dede15b8cac.jpg\" _src=\"http://yanxuan.nosdn.127.net/c3d5eb1291c79204e2e23dede15b8cac.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/38791f147ef4ee52bfee5e240f2a5f52.jpg\" _src=\"http://yanxuan.nosdn.127.net/38791f147ef4ee52bfee5e240f2a5f52.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9756648996576857cabe3740da2edaa6.jpg\" _src=\"http://yanxuan.nosdn.127.net/9756648996576857cabe3740da2edaa6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f4247a5ccb0f39be52a8c99cb15f92f7.jpg\" _src=\"http://yanxuan.nosdn.127.net/f4247a5ccb0f39be52a8c99cb15f92f7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/40d0ceae7b2300246501b72540727505.jpg\" _src=\"http://yanxuan.nosdn.127.net/40d0ceae7b2300246501b72540727505.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/14603e5d6e54d7e1abaae04ea713de08.jpg\" _src=\"http://yanxuan.nosdn.127.net/14603e5d6e54d7e1abaae04ea713de08.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/06d66618b49e447645e3650dc6cb11ca.jpg\" _src=\"http://yanxuan.nosdn.127.net/06d66618b49e447645e3650dc6cb11ca.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5ef12ad1adb0d16743a0054489846a13.jpg\" _src=\"http://yanxuan.nosdn.127.net/5ef12ad1adb0d16743a0054489846a13.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/99d648a6665d2a25f790a469c464d34b.jpg\" _src=\"http://yanxuan.nosdn.127.net/99d648a6665d2a25f790a469c464d34b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/76e121103fb90fdf267eb204af59c0d4.jpg\" _src=\"http://yanxuan.nosdn.127.net/76e121103fb90fdf267eb204af59c0d4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9d92a1874c26534262643772dbdef1d2.jpg\" _src=\"http://yanxuan.nosdn.127.net/9d92a1874c26534262643772dbdef1d2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9cb04ad36ddc0b45066f8233ab9cf888.jpg\" _src=\"http://yanxuan.nosdn.127.net/9cb04ad36ddc0b45066f8233ab9cf888.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cdb4947e9c035fea2bb271c9f0b43d2f.jpg\" _src=\"http://yanxuan.nosdn.127.net/cdb4947e9c035fea2bb271c9f0b43d2f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/55c1446b40d52e2da86f92fccc47ea2b.jpg\" _src=\"http://yanxuan.nosdn.127.net/55c1446b40d52e2da86f92fccc47ea2b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/339c0d5acef5c3029fd3c0d500883ce5.jpg\" _src=\"http://yanxuan.nosdn.127.net/339c0d5acef5c3029fd3c0d500883ce5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/11dc59302185026721eaa23509c333ee.jpg\" _src=\"http://yanxuan.nosdn.127.net/11dc59302185026721eaa23509c333ee.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/81ed48a7099d3bfa9860fcdd4e546b60.jpg\" _src=\"http://yanxuan.nosdn.127.net/81ed48a7099d3bfa9860fcdd4e546b60.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c615061f6c675ba67897e03e1f9cee17.jpg\" _src=\"http://yanxuan.nosdn.127.net/c615061f6c675ba67897e03e1f9cee17.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e30a5c3df143363971c97e75f254818d.jpg\" _src=\"http://yanxuan.nosdn.127.net/e30a5c3df143363971c97e75f254818d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4b33a8b54250cf02206d1d9fa5674725.jpg\" _src=\"http://yanxuan.nosdn.127.net/4b33a8b54250cf02206d1d9fa5674725.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cf292ce53420b314368494c36b189ce1.jpg\" _src=\"http://yanxuan.nosdn.127.net/cf292ce53420b314368494c36b189ce1.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '18', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/66d736aa8e3e33e3c76a014e1379c9a9.jpg', 'http://yanxuan.nosdn.127.net/39dea35a3ea2361e4b054ee2f421af53.png', '86.00', '5586', '1116105', '0.00', '限时购', '', '0.00', '0', '0', '0', '94.60', null, null, null, null);
  715. INSERT INTO `nideshop_goods` VALUES ('1115053', '1036000', '1115053', '日式天然蔺草席三件套', '0', '100', '', '龙眉蔺草密经编织 爽滑沁凉', '<p><img src=\"http://yanxuan.nosdn.127.net/1101093b92cac924e69bcefcf40c76e5.jpg\" _src=\"http://yanxuan.nosdn.127.net/1101093b92cac924e69bcefcf40c76e5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6776cd9b430fe30d4aabcd411c89c0dd.jpg\" _src=\"http://yanxuan.nosdn.127.net/6776cd9b430fe30d4aabcd411c89c0dd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bc7b58c7dfa8794786643b8287de29bf.jpg\" _src=\"http://yanxuan.nosdn.127.net/bc7b58c7dfa8794786643b8287de29bf.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c8c5738275ab840d6808329d00ceb350.jpg\" _src=\"http://yanxuan.nosdn.127.net/c8c5738275ab840d6808329d00ceb350.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4f5bc2cfc6ce9c430b1802f709ebf76c.jpg\" _src=\"http://yanxuan.nosdn.127.net/4f5bc2cfc6ce9c430b1802f709ebf76c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bca29c9e21a53dd795321efffb0812dd.jpg\" _src=\"http://yanxuan.nosdn.127.net/bca29c9e21a53dd795321efffb0812dd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/48b5847777cc06af17803e296765fe8b.jpg\" _src=\"http://yanxuan.nosdn.127.net/48b5847777cc06af17803e296765fe8b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8ac8105831478e9cef9ca6621fafc926.jpg\" _src=\"http://yanxuan.nosdn.127.net/8ac8105831478e9cef9ca6621fafc926.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/74b08e41ac62e2b2ac4d4f5460e0df0e.jpg\" _src=\"http://yanxuan.nosdn.127.net/74b08e41ac62e2b2ac4d4f5460e0df0e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2fd64fe69b33ae2aafe4f819a664685b.jpg\" _src=\"http://yanxuan.nosdn.127.net/2fd64fe69b33ae2aafe4f819a664685b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/46fe74304568a5ce8e32d1273002aca8.jpg\" _src=\"http://yanxuan.nosdn.127.net/46fe74304568a5ce8e32d1273002aca8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7140b1208675fe3f4cdf88ea53433070.jpg\" _src=\"http://yanxuan.nosdn.127.net/7140b1208675fe3f4cdf88ea53433070.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/94689138ad6f93014e8590af7e247803.jpg\" _src=\"http://yanxuan.nosdn.127.net/94689138ad6f93014e8590af7e247803.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c86acaba2c5c058fffbbdc5e002fe95a.jpg\" _src=\"http://yanxuan.nosdn.127.net/c86acaba2c5c058fffbbdc5e002fe95a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cd42872bf6525ad08c534a5badaf4b66.jpg\" _src=\"http://yanxuan.nosdn.127.net/cd42872bf6525ad08c534a5badaf4b66.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/756c2e86e4f0ce987d376374614a8913.jpg\" _src=\"http://yanxuan.nosdn.127.net/756c2e86e4f0ce987d376374614a8913.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/81686652f491aa2bf8e3e6350a6da81a.jpg\" _src=\"http://yanxuan.nosdn.127.net/81686652f491aa2bf8e3e6350a6da81a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ee7c88390c08dd2bfe4cba481ab9a41e.jpg\" _src=\"http://yanxuan.nosdn.127.net/ee7c88390c08dd2bfe4cba481ab9a41e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b8339919fcd6f1287c0403390fc5c6b6.jpg\" _src=\"http://yanxuan.nosdn.127.net/b8339919fcd6f1287c0403390fc5c6b6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7d0f30eaf2b59c891275f0227c090db4.jpg\" _src=\"http://yanxuan.nosdn.127.net/7d0f30eaf2b59c891275f0227c090db4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3468d31e225a394811dc5dc7dbfe0982.jpg\" _src=\"http://yanxuan.nosdn.127.net/3468d31e225a394811dc5dc7dbfe0982.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/00b9c24ff917bd437d1f4d1ece0d6629.jpg\" _src=\"http://yanxuan.nosdn.127.net/00b9c24ff917bd437d1f4d1ece0d6629.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f2a81e7940224cdb166250e719584f72.jpg\" _src=\"http://yanxuan.nosdn.127.net/f2a81e7940224cdb166250e719584f72.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ac0b69a3422113c220e8e3cbc442a1f9.jpg\" _src=\"http://yanxuan.nosdn.127.net/ac0b69a3422113c220e8e3cbc442a1f9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c95c80f7e6d87f29902c08f1c60ac738.jpg\" _src=\"http://yanxuan.nosdn.127.net/c95c80f7e6d87f29902c08f1c60ac738.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/631ee88cd7236f84b0b98c73d50796fa.jpg\" _src=\"http://yanxuan.nosdn.127.net/631ee88cd7236f84b0b98c73d50796fa.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cede72de2ecc4b359eb8854fc6508517.jpg\" _src=\"http://yanxuan.nosdn.127.net/cede72de2ecc4b359eb8854fc6508517.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6611f225c11ec3bea660dcc578465651.jpg\" _src=\"http://yanxuan.nosdn.127.net/6611f225c11ec3bea660dcc578465651.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a2e5c23264a8f4a50300b0dd5d8fd94f.jpg\" _src=\"http://yanxuan.nosdn.127.net/a2e5c23264a8f4a50300b0dd5d8fd94f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ee98563912792d365ab59650dfaea696.jpg\" _src=\"http://yanxuan.nosdn.127.net/ee98563912792d365ab59650dfaea696.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a50d584c6047756a5af6b62846842741.jpg\" _src=\"http://yanxuan.nosdn.127.net/a50d584c6047756a5af6b62846842741.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a175dd64f5674e734daa9a6bc9735955.jpg\" _src=\"http://yanxuan.nosdn.127.net/a175dd64f5674e734daa9a6bc9735955.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7aace408f3eeb3243d6afe6c6a7b296c.jpg\" _src=\"http://yanxuan.nosdn.127.net/7aace408f3eeb3243d6afe6c6a7b296c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/90ac2e08bc3f730bb95539f53b2bb20e.jpg\" _src=\"http://yanxuan.nosdn.127.net/90ac2e08bc3f730bb95539f53b2bb20e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8e390e497fd481f621ab539f209c0ae0.jpg\" _src=\"http://yanxuan.nosdn.127.net/8e390e497fd481f621ab539f209c0ae0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7b48987038ed6af0b8953549bd751990.jpg\" _src=\"http://yanxuan.nosdn.127.net/7b48987038ed6af0b8953549bd751990.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0eb6cb3a72b990b98e31440b663c2111.jpg\" _src=\"http://yanxuan.nosdn.127.net/0eb6cb3a72b990b98e31440b663c2111.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1df4c2d1c331ef6e100bb53b501e6d9d.jpg\" _src=\"http://yanxuan.nosdn.127.net/1df4c2d1c331ef6e100bb53b501e6d9d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1b690644dbb7167aebdb353d7d5a0928.jpg\" _src=\"http://yanxuan.nosdn.127.net/1b690644dbb7167aebdb353d7d5a0928.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ac5acdb025c3a82113037c3357101827.jpg\" _src=\"http://yanxuan.nosdn.127.net/ac5acdb025c3a82113037c3357101827.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/890eb4575249e74dd8a06767a05b248d.jpg\" _src=\"http://yanxuan.nosdn.127.net/890eb4575249e74dd8a06767a05b248d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e479eff62a3907fa2aed7330a6640432.jpg\" _src=\"http://yanxuan.nosdn.127.net/e479eff62a3907fa2aed7330a6640432.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/129476d180036152278d9bf3001ec869.jpg\" _src=\"http://yanxuan.nosdn.127.net/129476d180036152278d9bf3001ec869.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a403b6ae33aa215095f9d7400f56f9c0.jpg\" _src=\"http://yanxuan.nosdn.127.net/a403b6ae33aa215095f9d7400f56f9c0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1985869d88e77119e45fcf09c18781ac.jpg\" _src=\"http://yanxuan.nosdn.127.net/1985869d88e77119e45fcf09c18781ac.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/40a54361f841fa9da9691949866e3eaa.jpg\" _src=\"http://yanxuan.nosdn.127.net/40a54361f841fa9da9691949866e3eaa.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/53fe39319189dbf28392a965b836e896.jpg\" _src=\"http://yanxuan.nosdn.127.net/53fe39319189dbf28392a965b836e896.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/77d8c21cb8be3e393559e450efe8b65d.jpg\" _src=\"http://yanxuan.nosdn.127.net/77d8c21cb8be3e393559e450efe8b65d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/10f4168ff6c6557ad962db0a0464a16c.jpg\" _src=\"http://yanxuan.nosdn.127.net/10f4168ff6c6557ad962db0a0464a16c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/48d368fdee1649b11a650fcc8e6b386d.jpg\" _src=\"http://yanxuan.nosdn.127.net/48d368fdee1649b11a650fcc8e6b386d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4bb06f567d4c4c7491353a3d9ddae20c.jpg\" _src=\"http://yanxuan.nosdn.127.net/4bb06f567d4c4c7491353a3d9ddae20c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2e99a9027b337c789bc23aeb8b351c70.jpg\" _src=\"http://yanxuan.nosdn.127.net/2e99a9027b337c789bc23aeb8b351c70.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4eb55207d6bf571fa254992984d2cd20.jpg\" _src=\"http://yanxuan.nosdn.127.net/4eb55207d6bf571fa254992984d2cd20.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fbc0ffd84c8e782ef6f10a3231d00b60.jpg\" _src=\"http://yanxuan.nosdn.127.net/fbc0ffd84c8e782ef6f10a3231d00b60.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c202d3f7a4b2342f0e5df9db4fc09cb3.jpg\" _src=\"http://yanxuan.nosdn.127.net/c202d3f7a4b2342f0e5df9db4fc09cb3.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '11', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/79190d038c3e40a015a086752450e890.jpg', 'http://yanxuan.nosdn.127.net/fabf9ac36751a2e1322135c56f1dc338.png', '299.00', '34', '1116107', '0.00', '限时购', '', '0.00', '0', '0', '1', '328.90', null, null, null, null);
  716. INSERT INTO `nideshop_goods` VALUES ('1116004', '1020003', '1116004', '条纹长袖海魂衫(男婴童)', '0', '100', '', 'A类一等品,无荧光承诺', '', '1', '2017-08-30 11:40:11', '6', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/69e2463f7fb6b606f29af9f2b85c9562.jpg', 'http://yanxuan.nosdn.127.net/14d3a47ccf52815baf6df308be6db5a6.png', '79.00', '4518', '1118018', '0.00', '限时购', '', '0.00', '0', '0', '0', '86.90', null, null, null, null);
  717. INSERT INTO `nideshop_goods` VALUES ('1116005', '1020003', '1116005', '条纹长袖海魂衫(女婴童)', '0', '100', '', '纯棉亲肤娃娃衫', '', '1', '2017-08-30 11:40:11', '5', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/24db6b40ecc02d111f136918a3ee0e29.jpg', 'http://yanxuan.nosdn.127.net/71937456c3cd654f936f619201a79c09.png', '79.00', '998', '1118030', '0.00', '限时购', '', '0.00', '0', '0', '0', '86.90', null, null, null, null);
  718. INSERT INTO `nideshop_goods` VALUES ('1116008', '1020003', '1116008', '棉双层纱波点娃娃裙(婴童)', '0', '100', '', '波点娃娃裙搭配面包裤', '', '1', '2017-08-30 11:40:11', '9', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/1fafe089c873ba699797fe6a41f566bd.jpg', 'http://yanxuan.nosdn.127.net/149a09a391ea5a888debf50b9dc4ed7b.png', '99.00', '1565', '1118055', '0.00', '限时购', '', '0.00', '0', '0', '0', '108.90', null, null, null, null);
  719. INSERT INTO `nideshop_goods` VALUES ('1116011', '1008015', '1116011', '蔓越莓曲奇 200克', '0', '100', '', '酥脆奶香,甜酸回味', '', '1', '2017-08-30 11:40:11', '5', '0', '0', '0.00', '0.00', '1', '件', 'http://yanxuan.nosdn.127.net/1900349493220bfebcc67b2b6466e9f5.jpg', 'http://yanxuan.nosdn.127.net/767b370d07f3973500db54900bcbd2a7.png', '36.00', '664', '1118071', '0.00', '限时购', '', '0.00', '0', '0', '1', '39.60', null, null, null, null);
  720. INSERT INTO `nideshop_goods` VALUES ('1116030', '1011004', '1116030', '罗马假日 永生花', '0', '100', '', '黑粉的性感结合', '<p><img src=\"http://yanxuan.nosdn.127.net/52119891a3013b0bc5bb7acb96f27b09.jpg\" _src=\"http://yanxuan.nosdn.127.net/52119891a3013b0bc5bb7acb96f27b09.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7aad301c49e4b4ac31b6a5c2ff961084.jpg\" _src=\"http://yanxuan.nosdn.127.net/7aad301c49e4b4ac31b6a5c2ff961084.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/acda526adc6f8c69fe78629508a9ff83.jpg\" _src=\"http://yanxuan.nosdn.127.net/acda526adc6f8c69fe78629508a9ff83.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d0ba77f8820b98d3d14b6288457e4ba6.jpg\" _src=\"http://yanxuan.nosdn.127.net/d0ba77f8820b98d3d14b6288457e4ba6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/763516409d3720a57aef6130e6162bd7.jpg\" _src=\"http://yanxuan.nosdn.127.net/763516409d3720a57aef6130e6162bd7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1135909130ce5e577b3bfba553b765da.jpg\" _src=\"http://yanxuan.nosdn.127.net/1135909130ce5e577b3bfba553b765da.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/71b1a285d4b205679cff83d5a845e496.jpg\" _src=\"http://yanxuan.nosdn.127.net/71b1a285d4b205679cff83d5a845e496.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/262488c9a83012a73cb4cf2033ddcbd3.jpg\" _src=\"http://yanxuan.nosdn.127.net/262488c9a83012a73cb4cf2033ddcbd3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f28f2144fffc730d0fa1649f62d90e55.jpg\" _src=\"http://yanxuan.nosdn.127.net/f28f2144fffc730d0fa1649f62d90e55.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4617c511270ad4a83b4c43dea2a91ee6.jpg\" _src=\"http://yanxuan.nosdn.127.net/4617c511270ad4a83b4c43dea2a91ee6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d17cd0be9cfc4624fb058662fd898515.jpg\" _src=\"http://yanxuan.nosdn.127.net/d17cd0be9cfc4624fb058662fd898515.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/58a038c6be056de449bc79a8c102286f.jpg\" _src=\"http://yanxuan.nosdn.127.net/58a038c6be056de449bc79a8c102286f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/78f6119baa644d598d6b5a35df27a0d4.jpg\" _src=\"http://yanxuan.nosdn.127.net/78f6119baa644d598d6b5a35df27a0d4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/47fa5da3b3f490f321fe86331ab10d6a.jpg\" _src=\"http://yanxuan.nosdn.127.net/47fa5da3b3f490f321fe86331ab10d6a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8ddaca5bbbbbf0b606764233b2282b25.jpg\" _src=\"http://yanxuan.nosdn.127.net/8ddaca5bbbbbf0b606764233b2282b25.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/eabab9779be18dae3ac805293d4216fd.jpg\" _src=\"http://yanxuan.nosdn.127.net/eabab9779be18dae3ac805293d4216fd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f1890ad60a18c4f692aa192536a36c48.jpg\" _src=\"http://yanxuan.nosdn.127.net/f1890ad60a18c4f692aa192536a36c48.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/00df2f6498b721ff0e7e2107787e37e1.jpg\" _src=\"http://yanxuan.nosdn.127.net/00df2f6498b721ff0e7e2107787e37e1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6124ba09896786076cbdd12fb07c652c.jpg\" _src=\"http://yanxuan.nosdn.127.net/6124ba09896786076cbdd12fb07c652c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/89614d0d2194aa2539a984056b8bf639.jpg\" _src=\"http://yanxuan.nosdn.127.net/89614d0d2194aa2539a984056b8bf639.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/050ac06f91828d346a4711c0773e7d51.jpg\" _src=\"http://yanxuan.nosdn.127.net/050ac06f91828d346a4711c0773e7d51.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3caa9b2882b9d9b73faefad3e41891fc.jpg\" _src=\"http://yanxuan.nosdn.127.net/3caa9b2882b9d9b73faefad3e41891fc.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/aba134af8719641e3fd14692fdb49f88.jpg\" _src=\"http://yanxuan.nosdn.127.net/aba134af8719641e3fd14692fdb49f88.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fd15551913bace0793c191e86e63412f.jpg\" _src=\"http://yanxuan.nosdn.127.net/fd15551913bace0793c191e86e63412f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/be891d204e489ba2547f1dd375414b42.jpg\" _src=\"http://yanxuan.nosdn.127.net/be891d204e489ba2547f1dd375414b42.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d716679f74749a7a096680bd8a532166.jpg\" _src=\"http://yanxuan.nosdn.127.net/d716679f74749a7a096680bd8a532166.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4d7fe2b7729237d8aa281f4c7128e469.jpg\" _src=\"http://yanxuan.nosdn.127.net/4d7fe2b7729237d8aa281f4c7128e469.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/920006e3a4fdace47bad39791e2be18d.jpg\" _src=\"http://yanxuan.nosdn.127.net/920006e3a4fdace47bad39791e2be18d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d9f436666176242cd083deac7a1f974d.jpg\" _src=\"http://yanxuan.nosdn.127.net/d9f436666176242cd083deac7a1f974d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2fe7fb69bde12c318347e13892ee8835.jpg\" _src=\"http://yanxuan.nosdn.127.net/2fe7fb69bde12c318347e13892ee8835.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d0232b217577ebd39c402599a6a2831d.jpg\" _src=\"http://yanxuan.nosdn.127.net/d0232b217577ebd39c402599a6a2831d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/de8a88d4be8764dcf28bb82e5add05bd.jpg\" _src=\"http://yanxuan.nosdn.127.net/de8a88d4be8764dcf28bb82e5add05bd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/20588fcd422660d6ed5cfd66b20614b8.jpg\" _src=\"http://yanxuan.nosdn.127.net/20588fcd422660d6ed5cfd66b20614b8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a30b5785696d64c18d462d02a98ef220.jpg\" _src=\"http://yanxuan.nosdn.127.net/a30b5785696d64c18d462d02a98ef220.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c93666cbdc49307a29c115fdfbf2b0fd.jpg\" _src=\"http://yanxuan.nosdn.127.net/c93666cbdc49307a29c115fdfbf2b0fd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0432fb444a253ae95bbc944223d241b0.jpg\" _src=\"http://yanxuan.nosdn.127.net/0432fb444a253ae95bbc944223d241b0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/174cef303a1ccb3c3c7b3abcc6d69a79.jpg\" _src=\"http://yanxuan.nosdn.127.net/174cef303a1ccb3c3c7b3abcc6d69a79.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/df1933e20477d0b12194865c8a395acc.jpg\" _src=\"http://yanxuan.nosdn.127.net/df1933e20477d0b12194865c8a395acc.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/68efb1f9ff10ccb5355121a2e7a103b8.jpg\" _src=\"http://yanxuan.nosdn.127.net/68efb1f9ff10ccb5355121a2e7a103b8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/941b363c45519392d1f08af67fc0aeb6.jpg\" _src=\"http://yanxuan.nosdn.127.net/941b363c45519392d1f08af67fc0aeb6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8d542ea99bca443dd8823592a0f6ca6a.jpg\" _src=\"http://yanxuan.nosdn.127.net/8d542ea99bca443dd8823592a0f6ca6a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f1c2a753686766d97002d30658611327.jpg\" _src=\"http://yanxuan.nosdn.127.net/f1c2a753686766d97002d30658611327.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fc6a7179190ce7963006dba0547531c0.jpg\" _src=\"http://yanxuan.nosdn.127.net/fc6a7179190ce7963006dba0547531c0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/df8cd196d673f7616aa55e12aca45fb2.jpg\" _src=\"http://yanxuan.nosdn.127.net/df8cd196d673f7616aa55e12aca45fb2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/67017cf2f13209590998f84128df1011.jpg\" _src=\"http://yanxuan.nosdn.127.net/67017cf2f13209590998f84128df1011.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b39df196ae3603ba6ec6647e9f326837.jpg\" _src=\"http://yanxuan.nosdn.127.net/b39df196ae3603ba6ec6647e9f326837.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cd2eed622687250febea37bb62b64b16.jpg\" _src=\"http://yanxuan.nosdn.127.net/cd2eed622687250febea37bb62b64b16.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7c2230bc26cdc64f4277d61d4c1374f3.jpg\" _src=\"http://yanxuan.nosdn.127.net/7c2230bc26cdc64f4277d61d4c1374f3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/dea4422a864f4e10b9095433117cb1f9.jpg\" _src=\"http://yanxuan.nosdn.127.net/dea4422a864f4e10b9095433117cb1f9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/56d863eb01d39f9185fdd88659eb0684.jpg\" _src=\"http://yanxuan.nosdn.127.net/56d863eb01d39f9185fdd88659eb0684.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/95faa6f6cb97f2c55b7050328494de12.jpg\" _src=\"http://yanxuan.nosdn.127.net/95faa6f6cb97f2c55b7050328494de12.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0c04cd28fc106614baca4abe505a7629.jpg\" _src=\"http://yanxuan.nosdn.127.net/0c04cd28fc106614baca4abe505a7629.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9c711766e6969a41f9560cd76f49d90b.jpg\" _src=\"http://yanxuan.nosdn.127.net/9c711766e6969a41f9560cd76f49d90b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/341dff60f8cb4d6b60ac4bbd48260b10.jpg\" _src=\"http://yanxuan.nosdn.127.net/341dff60f8cb4d6b60ac4bbd48260b10.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c0973bbfd9d85273e21e74a30ba1d1b6.jpg\" _src=\"http://yanxuan.nosdn.127.net/c0973bbfd9d85273e21e74a30ba1d1b6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/73d8985fddd28371b0387076e6d39e70.jpg\" _src=\"http://yanxuan.nosdn.127.net/73d8985fddd28371b0387076e6d39e70.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/262f2a347ce86ca2dc16c0bdb94a1446.jpg\" _src=\"http://yanxuan.nosdn.127.net/262f2a347ce86ca2dc16c0bdb94a1446.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b9366d8851805dd04a022e7ccc4cb794.jpg\" _src=\"http://yanxuan.nosdn.127.net/b9366d8851805dd04a022e7ccc4cb794.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2f2fb72b90019f51b45389e9f1111583.jpg\" _src=\"http://yanxuan.nosdn.127.net/2f2fb72b90019f51b45389e9f1111583.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '4', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/a5ece0953a14a9e397d3a58acf66f834.jpg', 'http://yanxuan.nosdn.127.net/9d59a22b5aff348b5aba5fc7e451ea4d.png', '439.00', '366', '1118102', '0.00', '限时购', '', '0.00', '0', '0', '0', '482.90', null, null, null, null);
  721. INSERT INTO `nideshop_goods` VALUES ('1116031', '1011004', '1116031', '怦然心动 永生花', '0', '100', '', '音乐与花的浪漫碰撞', '<p><img src=\"http://yanxuan.nosdn.127.net/1f8fde879eca2c5da12d42065a6a7c92.jpg\" _src=\"http://yanxuan.nosdn.127.net/1f8fde879eca2c5da12d42065a6a7c92.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e83253d44444e00c22dc2854b25382a6.jpg\" _src=\"http://yanxuan.nosdn.127.net/e83253d44444e00c22dc2854b25382a6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/231af05c4c520e6c09969cb93618b275.jpg\" _src=\"http://yanxuan.nosdn.127.net/231af05c4c520e6c09969cb93618b275.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f6a0f0b81b8ccd226be51a5db145bb13.jpg\" _src=\"http://yanxuan.nosdn.127.net/f6a0f0b81b8ccd226be51a5db145bb13.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/64eb0d46084c93410fb4bff14e1fe8a4.jpg\" _src=\"http://yanxuan.nosdn.127.net/64eb0d46084c93410fb4bff14e1fe8a4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8b1d5203bb18d0c4e3534bf41c610002.jpg\" _src=\"http://yanxuan.nosdn.127.net/8b1d5203bb18d0c4e3534bf41c610002.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3668e49363f10b8442476d0c62e4c1b1.jpg\" _src=\"http://yanxuan.nosdn.127.net/3668e49363f10b8442476d0c62e4c1b1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a93897c61b4a7b8ce77dbb5e80fe1d74.jpg\" _src=\"http://yanxuan.nosdn.127.net/a93897c61b4a7b8ce77dbb5e80fe1d74.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/32598f5b1b77543b85fbfdb1a1f7a2ef.jpg\" _src=\"http://yanxuan.nosdn.127.net/32598f5b1b77543b85fbfdb1a1f7a2ef.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cbd6c51e27f944c73ba85e1a6701b762.jpg\" _src=\"http://yanxuan.nosdn.127.net/cbd6c51e27f944c73ba85e1a6701b762.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/14b873f6a9efff885a4b799e0b7c48f1.jpg\" _src=\"http://yanxuan.nosdn.127.net/14b873f6a9efff885a4b799e0b7c48f1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7de96c6f0e6884656bb655a7d16fab17.jpg\" _src=\"http://yanxuan.nosdn.127.net/7de96c6f0e6884656bb655a7d16fab17.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/23642bec39f7a3d43c1c41fa75096671.jpg\" _src=\"http://yanxuan.nosdn.127.net/23642bec39f7a3d43c1c41fa75096671.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4da6db8ecc03fd2eb08dd73d3db2c1a3.jpg\" _src=\"http://yanxuan.nosdn.127.net/4da6db8ecc03fd2eb08dd73d3db2c1a3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a8b31f9da5e8b70e344d43c647a7dfb2.jpg\" _src=\"http://yanxuan.nosdn.127.net/a8b31f9da5e8b70e344d43c647a7dfb2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e36833de623d2280db9372dce636564e.jpg\" _src=\"http://yanxuan.nosdn.127.net/e36833de623d2280db9372dce636564e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/035ad8e4e650aa656698badd2742300e.jpg\" _src=\"http://yanxuan.nosdn.127.net/035ad8e4e650aa656698badd2742300e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/27713a06a7c720c057231dabaa257f2a.jpg\" _src=\"http://yanxuan.nosdn.127.net/27713a06a7c720c057231dabaa257f2a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4e9a60403dbb41d9f3d390c261b37514.jpg\" _src=\"http://yanxuan.nosdn.127.net/4e9a60403dbb41d9f3d390c261b37514.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3ab0ad63ae7cf999de2a90b970ce88de.jpg\" _src=\"http://yanxuan.nosdn.127.net/3ab0ad63ae7cf999de2a90b970ce88de.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c0ab6efedce6b0f7840421f9e9576845.jpg\" _src=\"http://yanxuan.nosdn.127.net/c0ab6efedce6b0f7840421f9e9576845.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7f2c6964649681cff624261ce2651298.jpg\" _src=\"http://yanxuan.nosdn.127.net/7f2c6964649681cff624261ce2651298.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4e6ddfbccd07eb8062eee005ecdfe132.jpg\" _src=\"http://yanxuan.nosdn.127.net/4e6ddfbccd07eb8062eee005ecdfe132.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7be5e5bad19b16ea8df4ed3779c0c71a.jpg\" _src=\"http://yanxuan.nosdn.127.net/7be5e5bad19b16ea8df4ed3779c0c71a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/964980d2361fdb0cdbc81d6a9f96088e.jpg\" _src=\"http://yanxuan.nosdn.127.net/964980d2361fdb0cdbc81d6a9f96088e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/616db1683eb6635e8c32c768d721f436.jpg\" _src=\"http://yanxuan.nosdn.127.net/616db1683eb6635e8c32c768d721f436.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b7b14c2ba90064f3f6232faee6b0725c.jpg\" _src=\"http://yanxuan.nosdn.127.net/b7b14c2ba90064f3f6232faee6b0725c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/86f0a8a9691c4611dd0fe1e9a5c84bd5.jpg\" _src=\"http://yanxuan.nosdn.127.net/86f0a8a9691c4611dd0fe1e9a5c84bd5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4875d80c0b2b7aafa04e00539f39637f.jpg\" _src=\"http://yanxuan.nosdn.127.net/4875d80c0b2b7aafa04e00539f39637f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e7ec652544724ba8bbb714e552bd4f97.jpg\" _src=\"http://yanxuan.nosdn.127.net/e7ec652544724ba8bbb714e552bd4f97.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/edb9b4e1b864bb8c81d56b013566a88c.jpg\" _src=\"http://yanxuan.nosdn.127.net/edb9b4e1b864bb8c81d56b013566a88c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2a89ecd98fa4ab7ab63c0fd10d9ef31a.jpg\" _src=\"http://yanxuan.nosdn.127.net/2a89ecd98fa4ab7ab63c0fd10d9ef31a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bbf4fd1d2b73b4bce7b7ba4e99562ad1.jpg\" _src=\"http://yanxuan.nosdn.127.net/bbf4fd1d2b73b4bce7b7ba4e99562ad1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fbb46b9ce6174088b879950f2a3ec851.jpg\" _src=\"http://yanxuan.nosdn.127.net/fbb46b9ce6174088b879950f2a3ec851.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c0ba5de59fa74bd35cabf5d57c9be1fb.jpg\" _src=\"http://yanxuan.nosdn.127.net/c0ba5de59fa74bd35cabf5d57c9be1fb.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c12862d30dae922563d886e2a740e281.jpg\" _src=\"http://yanxuan.nosdn.127.net/c12862d30dae922563d886e2a740e281.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/78f584abdf567cfc8a65012e111bd173.jpg\" _src=\"http://yanxuan.nosdn.127.net/78f584abdf567cfc8a65012e111bd173.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d07018e220531306755d9aff3e88b5fa.jpg\" _src=\"http://yanxuan.nosdn.127.net/d07018e220531306755d9aff3e88b5fa.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9cfa16826c4d55bcfb23643a6e07b5b0.jpg\" _src=\"http://yanxuan.nosdn.127.net/9cfa16826c4d55bcfb23643a6e07b5b0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3ec9c0c398115a803b6f1cdf6ddd25f6.jpg\" _src=\"http://yanxuan.nosdn.127.net/3ec9c0c398115a803b6f1cdf6ddd25f6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/093d3941f2ac24bd5fef654d4ddc72ae.jpg\" _src=\"http://yanxuan.nosdn.127.net/093d3941f2ac24bd5fef654d4ddc72ae.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a2f72361252cd006faa0220683a45dbc.jpg\" _src=\"http://yanxuan.nosdn.127.net/a2f72361252cd006faa0220683a45dbc.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/60118d449ed00ae28fcd0a7a970d185b.jpg\" _src=\"http://yanxuan.nosdn.127.net/60118d449ed00ae28fcd0a7a970d185b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f2f39559f1d635dad8a8e238178f6704.jpg\" _src=\"http://yanxuan.nosdn.127.net/f2f39559f1d635dad8a8e238178f6704.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f1123c946875caa552ec8d26103828f1.jpg\" _src=\"http://yanxuan.nosdn.127.net/f1123c946875caa552ec8d26103828f1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b83441ec460295662adfad5bb375967b.jpg\" _src=\"http://yanxuan.nosdn.127.net/b83441ec460295662adfad5bb375967b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/172db1c1d303f0cfb2f74bf95422da78.jpg\" _src=\"http://yanxuan.nosdn.127.net/172db1c1d303f0cfb2f74bf95422da78.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8f9816aec40f2de91ebc5925ef8d7330.jpg\" _src=\"http://yanxuan.nosdn.127.net/8f9816aec40f2de91ebc5925ef8d7330.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5d0cb944c7bd57a65f9a50678771cc02.jpg\" _src=\"http://yanxuan.nosdn.127.net/5d0cb944c7bd57a65f9a50678771cc02.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3616ccc1b81e11add08967cf29ba1bf3.jpg\" _src=\"http://yanxuan.nosdn.127.net/3616ccc1b81e11add08967cf29ba1bf3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e464578c2c484a5fed8c62136b695f02.jpg\" _src=\"http://yanxuan.nosdn.127.net/e464578c2c484a5fed8c62136b695f02.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c5131472582e8e698c4862eca958662f.jpg\" _src=\"http://yanxuan.nosdn.127.net/c5131472582e8e698c4862eca958662f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/00b86dc531883833cc924143d1b7af61.jpg\" _src=\"http://yanxuan.nosdn.127.net/00b86dc531883833cc924143d1b7af61.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/63461dbf9068e5fbbfcb27bb46140cc7.jpg\" _src=\"http://yanxuan.nosdn.127.net/63461dbf9068e5fbbfcb27bb46140cc7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c3cb76e13daa99464c9026b74679891b.jpg\" _src=\"http://yanxuan.nosdn.127.net/c3cb76e13daa99464c9026b74679891b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8cba57e902fb6a3f714c1e289de4c6ac.jpg\" _src=\"http://yanxuan.nosdn.127.net/8cba57e902fb6a3f714c1e289de4c6ac.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/df2fc3df57586246497b42f105befb7c.jpg\" _src=\"http://yanxuan.nosdn.127.net/df2fc3df57586246497b42f105befb7c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7ee008ef606dbbc78da9a2b81a3fd76c.jpg\" _src=\"http://yanxuan.nosdn.127.net/7ee008ef606dbbc78da9a2b81a3fd76c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a676cc3d44822ad4df474651a65822b0.jpg\" _src=\"http://yanxuan.nosdn.127.net/a676cc3d44822ad4df474651a65822b0.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '2', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/8eafebe2db07f08460150d01192b1b35.jpg', 'http://yanxuan.nosdn.127.net/f88c3dc42f3e4d7da1ded8c1ee6a97ba.png', '439.00', '567', '1118103', '0.00', '限时购', '', '0.00', '0', '0', '0', '482.90', null, null, null, null);
  722. INSERT INTO `nideshop_goods` VALUES ('1116032', '1015000', '1116032', '怀抱休闲椅组合', '0', '100', '', '敦厚包裹感 葛优躺神器', '<p><img src=\"http://yanxuan.nosdn.127.net/88d52c4926392aa6653c45d1388e3280.jpg\" _src=\"http://yanxuan.nosdn.127.net/88d52c4926392aa6653c45d1388e3280.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/668187f24a64b4d8fcd44d224741e714.jpg\" _src=\"http://yanxuan.nosdn.127.net/668187f24a64b4d8fcd44d224741e714.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/574615fed83af630261df73b98da707f.jpg\" _src=\"http://yanxuan.nosdn.127.net/574615fed83af630261df73b98da707f.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cae837e54bc33d821551054ab68862ce.jpg\" _src=\"http://yanxuan.nosdn.127.net/cae837e54bc33d821551054ab68862ce.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/13fd44d78b82f4e6a74d3312531ea8a8.jpg\" _src=\"http://yanxuan.nosdn.127.net/13fd44d78b82f4e6a74d3312531ea8a8.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/67a377423dc9bf6837210ef4146eb286.jpg\" _src=\"http://yanxuan.nosdn.127.net/67a377423dc9bf6837210ef4146eb286.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a8a679b7e44eaeeae77022347c8e491e.jpg\" _src=\"http://yanxuan.nosdn.127.net/a8a679b7e44eaeeae77022347c8e491e.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bf9045bec58bf0bf60ccc5362746d6fb.jpg\" _src=\"http://yanxuan.nosdn.127.net/bf9045bec58bf0bf60ccc5362746d6fb.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a317543d10929b8a1d2dad955264a1e3.jpg\" _src=\"http://yanxuan.nosdn.127.net/a317543d10929b8a1d2dad955264a1e3.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c00736edc5a48031dcb09785007884f0.jpg\" _src=\"http://yanxuan.nosdn.127.net/c00736edc5a48031dcb09785007884f0.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4c55e7b8a4f4ea6980667d7c61a36e66.jpg\" _src=\"http://yanxuan.nosdn.127.net/4c55e7b8a4f4ea6980667d7c61a36e66.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9b0f3f57248f3b823aef76b0ed91214b.jpg\" _src=\"http://yanxuan.nosdn.127.net/9b0f3f57248f3b823aef76b0ed91214b.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7b780bba60d8a56055c87ce0c6fdbe89.jpg\" _src=\"http://yanxuan.nosdn.127.net/7b780bba60d8a56055c87ce0c6fdbe89.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0eb69b9d33c756bb77e392dcf0bb597c.jpg\" _src=\"http://yanxuan.nosdn.127.net/0eb69b9d33c756bb77e392dcf0bb597c.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3b585e58a719503db9b8eca8fdccb352.jpg\" _src=\"http://yanxuan.nosdn.127.net/3b585e58a719503db9b8eca8fdccb352.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/dde4f43a23d4f0e1a3b9efefe8d265ac.jpg\" _src=\"http://yanxuan.nosdn.127.net/dde4f43a23d4f0e1a3b9efefe8d265ac.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7c0ecf0409ea9eda721535a82dca4746.jpg\" _src=\"http://yanxuan.nosdn.127.net/7c0ecf0409ea9eda721535a82dca4746.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/72d61ccfc27ac87dedecf8486be3b64b.jpg\" _src=\"http://yanxuan.nosdn.127.net/72d61ccfc27ac87dedecf8486be3b64b.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0c0cde5c4c095ebba2e028a83ae2efdc.jpg\" _src=\"http://yanxuan.nosdn.127.net/0c0cde5c4c095ebba2e028a83ae2efdc.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8106e6013e8fd26af4e3c77093a7670d.jpg\" _src=\"http://yanxuan.nosdn.127.net/8106e6013e8fd26af4e3c77093a7670d.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fc04391abc45187476824dd8bae45d64.jpg\" _src=\"http://yanxuan.nosdn.127.net/fc04391abc45187476824dd8bae45d64.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/518ea06314e2c087567b0740c4215565.jpg\" _src=\"http://yanxuan.nosdn.127.net/518ea06314e2c087567b0740c4215565.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0953e49fca6fe0df017d95e6cbba6415.jpg\" _src=\"http://yanxuan.nosdn.127.net/0953e49fca6fe0df017d95e6cbba6415.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c3d734b26b4264dd0a12637a4bdf5421.jpg\" _src=\"http://yanxuan.nosdn.127.net/c3d734b26b4264dd0a12637a4bdf5421.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/025c947c2166a9866fe83a1ec55766cc.jpg\" _src=\"http://yanxuan.nosdn.127.net/025c947c2166a9866fe83a1ec55766cc.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/eb2bb395dbea5e15a10410680b31b1fc.jpg\" _src=\"http://yanxuan.nosdn.127.net/eb2bb395dbea5e15a10410680b31b1fc.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e731e9ba13f1bd3de2550bb4658921ba.jpg\" _src=\"http://yanxuan.nosdn.127.net/e731e9ba13f1bd3de2550bb4658921ba.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6904c0eab54fe8dede20794373640d18.jpg\" _src=\"http://yanxuan.nosdn.127.net/6904c0eab54fe8dede20794373640d18.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b0a1f01da92b00576e3d95353ba00afc.jpg\" _src=\"http://yanxuan.nosdn.127.net/b0a1f01da92b00576e3d95353ba00afc.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/06a4080c4c1c095c22090234f96ed226.jpg\" _src=\"http://yanxuan.nosdn.127.net/06a4080c4c1c095c22090234f96ed226.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/46e76c1e1ac52b512e23e1ff621b5aa1.jpg\" _src=\"http://yanxuan.nosdn.127.net/46e76c1e1ac52b512e23e1ff621b5aa1.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f61bbbcc5827cbf2ff68c7950622414f.jpg\" _src=\"http://yanxuan.nosdn.127.net/f61bbbcc5827cbf2ff68c7950622414f.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fb6cb2a0ed0de99b5ee6692618ed8342.jpg\" _src=\"http://yanxuan.nosdn.127.net/fb6cb2a0ed0de99b5ee6692618ed8342.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/333707fd687185d03c828e5518ff13d6.jpg\" _src=\"http://yanxuan.nosdn.127.net/333707fd687185d03c828e5518ff13d6.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/25124a2a017492df6fced6dad85c1911.jpg\" _src=\"http://yanxuan.nosdn.127.net/25124a2a017492df6fced6dad85c1911.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/10b8919cfd9084deefc26be2bd3576f6.jpg\" _src=\"http://yanxuan.nosdn.127.net/10b8919cfd9084deefc26be2bd3576f6.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ef9d385bef82407d14d8c4970181e789.jpg\" _src=\"http://yanxuan.nosdn.127.net/ef9d385bef82407d14d8c4970181e789.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1106a8e1cd4fe8accd800517609a825a.jpg\" _src=\"http://yanxuan.nosdn.127.net/1106a8e1cd4fe8accd800517609a825a.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b97c0ccbdba3fa51eeedb68041124c88.jpg\" _src=\"http://yanxuan.nosdn.127.net/b97c0ccbdba3fa51eeedb68041124c88.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a64f226818e68fb61add735577606126.jpg\" _src=\"http://yanxuan.nosdn.127.net/a64f226818e68fb61add735577606126.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f271ee33c5989a60ed932ab031403937.jpg\" _src=\"http://yanxuan.nosdn.127.net/f271ee33c5989a60ed932ab031403937.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/317d03a5d1fe21e1f2109dd47c8d64dd.jpg\" _src=\"http://yanxuan.nosdn.127.net/317d03a5d1fe21e1f2109dd47c8d64dd.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3979ba529061bddc53546ba35fc3423e.jpg\" _src=\"http://yanxuan.nosdn.127.net/3979ba529061bddc53546ba35fc3423e.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c0cfaccfe5688dddcc0cfeb483657df4.jpg\" _src=\"http://yanxuan.nosdn.127.net/c0cfaccfe5688dddcc0cfeb483657df4.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9bb0d52ee071bc0785c8520beb7e0186.jpg\" _src=\"http://yanxuan.nosdn.127.net/9bb0d52ee071bc0785c8520beb7e0186.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d9432f203fb8201ef2163fbdc9733bf8.jpg\" _src=\"http://yanxuan.nosdn.127.net/d9432f203fb8201ef2163fbdc9733bf8.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1fde4a66048448168323c750a00eb252.jpg\" _src=\"http://yanxuan.nosdn.127.net/1fde4a66048448168323c750a00eb252.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/eaf1344d59e4abc904944927ef0ed456.jpg\" _src=\"http://yanxuan.nosdn.127.net/eaf1344d59e4abc904944927ef0ed456.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/96d7acf75b95077be963b4bfbbac1567.jpg\" _src=\"http://yanxuan.nosdn.127.net/96d7acf75b95077be963b4bfbbac1567.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3a3975461a987e25f6245842599539fe.jpg\" _src=\"http://yanxuan.nosdn.127.net/3a3975461a987e25f6245842599539fe.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e30f6a3e529b0f3c20952be4e6a7db95.jpg\" _src=\"http://yanxuan.nosdn.127.net/e30f6a3e529b0f3c20952be4e6a7db95.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4a59d1eb6f3e7dbc9e736eeeff66ab14.jpg\" _src=\"http://yanxuan.nosdn.127.net/4a59d1eb6f3e7dbc9e736eeeff66ab14.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/996b0dfc0047f527a6405f307a123783.jpg\" _src=\"http://yanxuan.nosdn.127.net/996b0dfc0047f527a6405f307a123783.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cb4c00b89e2b9f97a63c82b0284e8055.jpg\" _src=\"http://yanxuan.nosdn.127.net/cb4c00b89e2b9f97a63c82b0284e8055.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5dffecb54355d3e772355b84dedcea2d.jpg\" _src=\"http://yanxuan.nosdn.127.net/5dffecb54355d3e772355b84dedcea2d.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7212745591c3a80dc9548a0d9e34a796.jpg\" _src=\"http://yanxuan.nosdn.127.net/7212745591c3a80dc9548a0d9e34a796.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ef390be5fc6cf4cda5461bddb12cb87b.jpg\" _src=\"http://yanxuan.nosdn.127.net/ef390be5fc6cf4cda5461bddb12cb87b.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8ea1314f11d6c90e77d51b799c2cc3b9.jpg\" _src=\"http://yanxuan.nosdn.127.net/8ea1314f11d6c90e77d51b799c2cc3b9.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3224b07340abf6a8f51d4e9f06bae9c2.jpg\" _src=\"http://yanxuan.nosdn.127.net/3224b07340abf6a8f51d4e9f06bae9c2.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/843c954c1320f8481e5cfc802f51eb60.jpg\" _src=\"http://yanxuan.nosdn.127.net/843c954c1320f8481e5cfc802f51eb60.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9171e66174ae921b8a0a575704afc5af.jpg\" _src=\"http://yanxuan.nosdn.127.net/9171e66174ae921b8a0a575704afc5af.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/93927264f8848f36e5796cc178dd1b81.jpg\" _src=\"http://yanxuan.nosdn.127.net/93927264f8848f36e5796cc178dd1b81.jpg\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '1', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/7ea965cd5cc484d1b8f1c1b33626482f.jpg', 'http://yanxuan.nosdn.127.net/45176a783387751fc07a07f5031dd62c.png', '3499.00', '102', '1118104', '0.00', '限时购', '', '0.00', '0', '0', '1', '3848.90', null, null, null, null);
  723. INSERT INTO `nideshop_goods` VALUES ('1116033', '1015000', '1116033', '多功能人体工学转椅', '0', '100', '', '预计5月10号开始发货', '<p><img src=\"http://yanxuan.nosdn.127.net/a35c2f6c405130457f07485d8110c5fe.jpg\" _src=\"http://yanxuan.nosdn.127.net/a35c2f6c405130457f07485d8110c5fe.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d49df12f1c65dbce39b70a230d829900.jpg\" _src=\"http://yanxuan.nosdn.127.net/d49df12f1c65dbce39b70a230d829900.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/abe704206a3d57e44625cc1793ada434.jpg\" _src=\"http://yanxuan.nosdn.127.net/abe704206a3d57e44625cc1793ada434.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8683d0333725186cbdd05a8038ce77b3.jpg\" _src=\"http://yanxuan.nosdn.127.net/8683d0333725186cbdd05a8038ce77b3.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8a5149be65741bcc63788b8bd54daa27.jpg\" _src=\"http://yanxuan.nosdn.127.net/8a5149be65741bcc63788b8bd54daa27.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4c91550c140f150270e7d79791844928.jpg\" _src=\"http://yanxuan.nosdn.127.net/4c91550c140f150270e7d79791844928.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/091afce4f8e25191eec74c9e1e9dbd79.jpg\" _src=\"http://yanxuan.nosdn.127.net/091afce4f8e25191eec74c9e1e9dbd79.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d42023d5c13d600bb2452234519ff0a4.jpg\" _src=\"http://yanxuan.nosdn.127.net/d42023d5c13d600bb2452234519ff0a4.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c58578f82e3cb240f0d52c7fddc27bac.jpg\" _src=\"http://yanxuan.nosdn.127.net/c58578f82e3cb240f0d52c7fddc27bac.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/236429032fea116515784b192735c0ac.jpg\" _src=\"http://yanxuan.nosdn.127.net/236429032fea116515784b192735c0ac.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/975e7e104e2ae217584763b9c75cd4ef.jpg\" _src=\"http://yanxuan.nosdn.127.net/975e7e104e2ae217584763b9c75cd4ef.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/be50421c492237297e7e8bb2fcc6a9cf.jpg\" _src=\"http://yanxuan.nosdn.127.net/be50421c492237297e7e8bb2fcc6a9cf.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/76442972358a4eeeed620810d2f574b5.jpg\" _src=\"http://yanxuan.nosdn.127.net/76442972358a4eeeed620810d2f574b5.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/73f51a64113eb1a5e9559971f8b94e5c.jpg\" _src=\"http://yanxuan.nosdn.127.net/73f51a64113eb1a5e9559971f8b94e5c.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0b29317f0d378c2c7f0ba2bdb6527277.jpg\" _src=\"http://yanxuan.nosdn.127.net/0b29317f0d378c2c7f0ba2bdb6527277.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f9afe14c0dad5e49d5a798478df5f8b6.jpg\" _src=\"http://yanxuan.nosdn.127.net/f9afe14c0dad5e49d5a798478df5f8b6.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3f205e6de0fcdd91368ccac1275235a5.jpg\" _src=\"http://yanxuan.nosdn.127.net/3f205e6de0fcdd91368ccac1275235a5.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/99648e1b4fd46cd46fc791be63781e36.jpg\" _src=\"http://yanxuan.nosdn.127.net/99648e1b4fd46cd46fc791be63781e36.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5549d39568ed01630b7774412c98034b.jpg\" _src=\"http://yanxuan.nosdn.127.net/5549d39568ed01630b7774412c98034b.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3965b5d4e8c1130ad619df283acece41.jpg\" _src=\"http://yanxuan.nosdn.127.net/3965b5d4e8c1130ad619df283acece41.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/12cdcfdad4e2647c353d305977aae6e0.jpg\" _src=\"http://yanxuan.nosdn.127.net/12cdcfdad4e2647c353d305977aae6e0.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bc14e35c75f4cf35a614c4db06a841ec.jpg\" _src=\"http://yanxuan.nosdn.127.net/bc14e35c75f4cf35a614c4db06a841ec.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8d09628d897a9451ea78f101aeab8e3d.jpg\" _src=\"http://yanxuan.nosdn.127.net/8d09628d897a9451ea78f101aeab8e3d.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4fcc8864a72677e66a171ba9974f0ca4.jpg\" _src=\"http://yanxuan.nosdn.127.net/4fcc8864a72677e66a171ba9974f0ca4.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9d8b46aa87dedb72385e1719eb65a6d9.jpg\" _src=\"http://yanxuan.nosdn.127.net/9d8b46aa87dedb72385e1719eb65a6d9.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6ffa698dd8a3fb2ae2fdb1c6ec160617.jpg\" _src=\"http://yanxuan.nosdn.127.net/6ffa698dd8a3fb2ae2fdb1c6ec160617.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2da2809ff213e248b1408e661ae8d925.jpg\" _src=\"http://yanxuan.nosdn.127.net/2da2809ff213e248b1408e661ae8d925.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7756ac7e9a82e97b6b4b674e4e366685.jpg\" _src=\"http://yanxuan.nosdn.127.net/7756ac7e9a82e97b6b4b674e4e366685.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/baa8d3ed6847041f3b4e8c32af9c95a3.jpg\" _src=\"http://yanxuan.nosdn.127.net/baa8d3ed6847041f3b4e8c32af9c95a3.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/691d27d43d2532297e3266c9e0e56525.jpg\" _src=\"http://yanxuan.nosdn.127.net/691d27d43d2532297e3266c9e0e56525.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ea4c78203418892d2ada3e39497f6521.jpg\" _src=\"http://yanxuan.nosdn.127.net/ea4c78203418892d2ada3e39497f6521.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/535974f413df30de66e1211008ea26e7.jpg\" _src=\"http://yanxuan.nosdn.127.net/535974f413df30de66e1211008ea26e7.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ba9b8932741a8a391ea4039f3907d86b.jpg\" _src=\"http://yanxuan.nosdn.127.net/ba9b8932741a8a391ea4039f3907d86b.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/41cde8cf7bcc7800f47a10d9e06a5e20.jpg\" _src=\"http://yanxuan.nosdn.127.net/41cde8cf7bcc7800f47a10d9e06a5e20.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c4d3f83bb6fa700f0f12f4c5b3197720.jpg\" _src=\"http://yanxuan.nosdn.127.net/c4d3f83bb6fa700f0f12f4c5b3197720.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c1ea50299d2b58c7b77ee3029e249133.jpg\" _src=\"http://yanxuan.nosdn.127.net/c1ea50299d2b58c7b77ee3029e249133.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b08dea5b4563eb49bdd9aad1e1c9f433.jpg\" _src=\"http://yanxuan.nosdn.127.net/b08dea5b4563eb49bdd9aad1e1c9f433.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/97e66d00e3a2a5bd2421f9974ae51efa.jpg\" _src=\"http://yanxuan.nosdn.127.net/97e66d00e3a2a5bd2421f9974ae51efa.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/781a0089cedbd5772ca82c1738ea8e55.jpg\" _src=\"http://yanxuan.nosdn.127.net/781a0089cedbd5772ca82c1738ea8e55.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0e5d0797adbbef9f6eb3af266748ae39.jpg\" _src=\"http://yanxuan.nosdn.127.net/0e5d0797adbbef9f6eb3af266748ae39.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2d8e44dad25c8b9f7f3234a2cc62b6af.jpg\" _src=\"http://yanxuan.nosdn.127.net/2d8e44dad25c8b9f7f3234a2cc62b6af.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d643dc0a24767f0ec81234f9722bbf83.jpg\" _src=\"http://yanxuan.nosdn.127.net/d643dc0a24767f0ec81234f9722bbf83.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c122aafba3a0588b6e37c5f2a63796ad.jpg\" _src=\"http://yanxuan.nosdn.127.net/c122aafba3a0588b6e37c5f2a63796ad.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4985c059ff618a7c74b47f22ca291a49.jpg\" _src=\"http://yanxuan.nosdn.127.net/4985c059ff618a7c74b47f22ca291a49.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/de6a54cddf00cfb25fdd226ec89befb1.jpg\" _src=\"http://yanxuan.nosdn.127.net/de6a54cddf00cfb25fdd226ec89befb1.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/eda812fa7f6b2254111602e17ee66764.jpg\" _src=\"http://yanxuan.nosdn.127.net/eda812fa7f6b2254111602e17ee66764.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cb64397692cff14073cfc67ee7b8f970.jpg\" _src=\"http://yanxuan.nosdn.127.net/cb64397692cff14073cfc67ee7b8f970.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/200d95892946f8eedc5ff1ae8fb8a3e2.jpg\" _src=\"http://yanxuan.nosdn.127.net/200d95892946f8eedc5ff1ae8fb8a3e2.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3c55a38a436f7f0e893959db4ead2c6a.jpg\" _src=\"http://yanxuan.nosdn.127.net/3c55a38a436f7f0e893959db4ead2c6a.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/91f4362e02d4860a8e707ff837a68b0a.jpg\" _src=\"http://yanxuan.nosdn.127.net/91f4362e02d4860a8e707ff837a68b0a.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/da351ce650737304c47f50529048ce35.jpg\" _src=\"http://yanxuan.nosdn.127.net/da351ce650737304c47f50529048ce35.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ee474a5b5d85ae9f6013ed7b628b71ec.jpg\" _src=\"http://yanxuan.nosdn.127.net/ee474a5b5d85ae9f6013ed7b628b71ec.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/36bc5b0e74bec3554fc61c1df1608148.jpg\" _src=\"http://yanxuan.nosdn.127.net/36bc5b0e74bec3554fc61c1df1608148.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2826a1846567c28964e44834f4a75585.jpg\" _src=\"http://yanxuan.nosdn.127.net/2826a1846567c28964e44834f4a75585.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/623f2742c0e4c422ab4994846ea1e4df.jpg\" _src=\"http://yanxuan.nosdn.127.net/623f2742c0e4c422ab4994846ea1e4df.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0a7671e8e21e8d0433648e9c1a5dce7e.jpg\" _src=\"http://yanxuan.nosdn.127.net/0a7671e8e21e8d0433648e9c1a5dce7e.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/abafb52fdef5cd3a2c95834c9708c0b9.jpg\" _src=\"http://yanxuan.nosdn.127.net/abafb52fdef5cd3a2c95834c9708c0b9.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f95931a53b8fb862a88cf2ae74f4976b.jpg\" _src=\"http://yanxuan.nosdn.127.net/f95931a53b8fb862a88cf2ae74f4976b.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d9d2665980ed7dd5282ea62d1dd6612f.jpg\" _src=\"http://yanxuan.nosdn.127.net/d9d2665980ed7dd5282ea62d1dd6612f.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/65f16f5fc693da8910be533c35039254.jpg\" _src=\"http://yanxuan.nosdn.127.net/65f16f5fc693da8910be533c35039254.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1aca96b7e433529c8c8b322790301c9c.jpg\" _src=\"http://yanxuan.nosdn.127.net/1aca96b7e433529c8c8b322790301c9c.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a2270078225ce988b17ff74e243c3991.jpg\" _src=\"http://yanxuan.nosdn.127.net/a2270078225ce988b17ff74e243c3991.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e18275185da4383a63538cccf511094f.jpg\" _src=\"http://yanxuan.nosdn.127.net/e18275185da4383a63538cccf511094f.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7d768713b91aa6f8e55838c6391910cc.jpg\" _src=\"http://yanxuan.nosdn.127.net/7d768713b91aa6f8e55838c6391910cc.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b782a2b46bd3a4b9e1759c2d27d7c386.jpg\" _src=\"http://yanxuan.nosdn.127.net/b782a2b46bd3a4b9e1759c2d27d7c386.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/19640c76822d0ea2800d5d85ab010a88.jpg\" _src=\"http://yanxuan.nosdn.127.net/19640c76822d0ea2800d5d85ab010a88.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cba52e53018cc367f8dc1113275800c1.jpg\" _src=\"http://yanxuan.nosdn.127.net/cba52e53018cc367f8dc1113275800c1.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/13f27ff5bd17aa084b2966dd1b025d04.jpg\" _src=\"http://yanxuan.nosdn.127.net/13f27ff5bd17aa084b2966dd1b025d04.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/550cfd3e8d44686f03e2d7ac92b09fa3.jpg\" _src=\"http://yanxuan.nosdn.127.net/550cfd3e8d44686f03e2d7ac92b09fa3.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bc8199816c961fc76467ad5b9e3b3684.jpg\" _src=\"http://yanxuan.nosdn.127.net/bc8199816c961fc76467ad5b9e3b3684.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a2ed2dc26da3fcc47fc1cf36dc3db093.jpg\" _src=\"http://yanxuan.nosdn.127.net/a2ed2dc26da3fcc47fc1cf36dc3db093.jpg\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '14', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/75af400189c01dd8120383caab304c82.jpg', 'http://yanxuan.nosdn.127.net/f1dbf1d9967c478ee6def81ed40734a2.png', '1399.00', '0', '1118105', '0.00', '限时购', '', '0.00', '0', '0', '0', '1538.90', null, null, null, null);
  724. INSERT INTO `nideshop_goods` VALUES ('1125010', '1020003', '1125010', '格纹棉质褶皱娃娃裙(婴童)', '0', '100', '', '彼得潘领 内搭短裤', '', '1', '2017-08-30 11:40:11', '7', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/cdd7640a18e30a9477e361070aa1f8d5.jpg', 'http://yanxuan.nosdn.127.net/f82995ccb2a2f6beddd4ad794f5da2a1.png', '159.00', '3235', '1125033', '0.00', '限时购', '', '0.00', '0', '0', '0', '174.90', null, null, null, null);
  725. INSERT INTO `nideshop_goods` VALUES ('1125011', '1020003', '1125011', '格纹棉质衬衣(婴童)', '0', '100', '', '法式翻领 气质格纹', '', '1', '2017-08-30 11:40:11', '8', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/4bdb2505c78946143da20543fc318749.jpg', 'http://yanxuan.nosdn.127.net/be9740b734087f294f59a6560b932bc1.png', '139.00', '1402', '1125039', '0.00', '限时购', '', '0.00', '0', '0', '0', '152.90', null, null, null, null);
  726. INSERT INTO `nideshop_goods` VALUES ('1125016', '1011004', '1125016', '大丰收收纳摆件', '0', '100', '', '兼具设计感与实用性', '<p><br/></p><p><img src=\"http://yanxuan.nosdn.127.net/ae27e0a0c0ab324a41f8b2d248780ad9.jpg\" _src=\"http://yanxuan.nosdn.127.net/ae27e0a0c0ab324a41f8b2d248780ad9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/987d4a3348e3ebe7f2c1440226fb4cb6.jpg\" _src=\"http://yanxuan.nosdn.127.net/987d4a3348e3ebe7f2c1440226fb4cb6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/13e4aa784b0eb73bfb6b5b3e5977b243.jpg\" _src=\"http://yanxuan.nosdn.127.net/13e4aa784b0eb73bfb6b5b3e5977b243.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6db31027e707b02234f23c756be58af2.jpg\" _src=\"http://yanxuan.nosdn.127.net/6db31027e707b02234f23c756be58af2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4cc9ee906052c55216cb39bf8486dc4f.jpg\" _src=\"http://yanxuan.nosdn.127.net/4cc9ee906052c55216cb39bf8486dc4f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3147f03dbe5a1c4c2ffefb029447eefc.jpg\" _src=\"http://yanxuan.nosdn.127.net/3147f03dbe5a1c4c2ffefb029447eefc.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/04528ccb2039eedf2ee402fee77301c3.jpg\" _src=\"http://yanxuan.nosdn.127.net/04528ccb2039eedf2ee402fee77301c3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4fa302f9f9c7184d664dc1e54d59f417.jpg\" _src=\"http://yanxuan.nosdn.127.net/4fa302f9f9c7184d664dc1e54d59f417.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4672db948312ed04f3e6d15aa38b458a.jpg\" _src=\"http://yanxuan.nosdn.127.net/4672db948312ed04f3e6d15aa38b458a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/98d129cece00b5ce0463d28b98b40a02.jpg\" _src=\"http://yanxuan.nosdn.127.net/98d129cece00b5ce0463d28b98b40a02.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e323f9d77edd608b1e5e8e198b0edf4e.jpg\" _src=\"http://yanxuan.nosdn.127.net/e323f9d77edd608b1e5e8e198b0edf4e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2200ffe2ab0a7fbef6d7fc6156259bda.jpg\" _src=\"http://yanxuan.nosdn.127.net/2200ffe2ab0a7fbef6d7fc6156259bda.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/809f7fa3f0946e0f071f2a8cf6f04d30.jpg\" _src=\"http://yanxuan.nosdn.127.net/809f7fa3f0946e0f071f2a8cf6f04d30.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3bcef4f852c8e352402b9505e92b1d98.jpg\" _src=\"http://yanxuan.nosdn.127.net/3bcef4f852c8e352402b9505e92b1d98.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4dc8f9234990ef09bcbca29095c3454e.jpg\" _src=\"http://yanxuan.nosdn.127.net/4dc8f9234990ef09bcbca29095c3454e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b78ea3f7063792c1d8eaa14e31da7416.jpg\" _src=\"http://yanxuan.nosdn.127.net/b78ea3f7063792c1d8eaa14e31da7416.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c836ec4710bf71a67c7347530e708974.jpg\" _src=\"http://yanxuan.nosdn.127.net/c836ec4710bf71a67c7347530e708974.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ef4691a37792a9a91e1e9495f10eee2c.jpg\" _src=\"http://yanxuan.nosdn.127.net/ef4691a37792a9a91e1e9495f10eee2c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/423d98ad66c3e43960d613c9392a94ec.jpg\" _src=\"http://yanxuan.nosdn.127.net/423d98ad66c3e43960d613c9392a94ec.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d82731aeadfa5991f9afb47cd85c7263.jpg\" _src=\"http://yanxuan.nosdn.127.net/d82731aeadfa5991f9afb47cd85c7263.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/70763b7fb7facddc6e2f053e596cf879.jpg\" _src=\"http://yanxuan.nosdn.127.net/70763b7fb7facddc6e2f053e596cf879.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/437ad106a1fd0f8f84c5ff52568e56a5.jpg\" _src=\"http://yanxuan.nosdn.127.net/437ad106a1fd0f8f84c5ff52568e56a5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/21fbefc6cdff6874487678915a57bc50.jpg\" _src=\"http://yanxuan.nosdn.127.net/21fbefc6cdff6874487678915a57bc50.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cb4184aa045e950887fcb49d9c1ff850.jpg\" _src=\"http://yanxuan.nosdn.127.net/cb4184aa045e950887fcb49d9c1ff850.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/47c2ca629524b9f4f57f5ea83d9397c1.jpg\" _src=\"http://yanxuan.nosdn.127.net/47c2ca629524b9f4f57f5ea83d9397c1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9f9f766b6cde02b09d1d757bad857b16.jpg\" _src=\"http://yanxuan.nosdn.127.net/9f9f766b6cde02b09d1d757bad857b16.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d2a5fd13539ec6952af8a1500b01d194.jpg\" _src=\"http://yanxuan.nosdn.127.net/d2a5fd13539ec6952af8a1500b01d194.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0580fde8988f4f549aeea35adbb379bd.jpg\" _src=\"http://yanxuan.nosdn.127.net/0580fde8988f4f549aeea35adbb379bd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e1627cb343db58af5e477a493c5579d1.jpg\" _src=\"http://yanxuan.nosdn.127.net/e1627cb343db58af5e477a493c5579d1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/80372df184a4486aac0b9bc7d64179eb.jpg\" _src=\"http://yanxuan.nosdn.127.net/80372df184a4486aac0b9bc7d64179eb.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/357e9f911d22e61b0bf316bd9a60e813.jpg\" _src=\"http://yanxuan.nosdn.127.net/357e9f911d22e61b0bf316bd9a60e813.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bd5ffb54d54ad9cd45a2bb093878aebc.jpg\" _src=\"http://yanxuan.nosdn.127.net/bd5ffb54d54ad9cd45a2bb093878aebc.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/41511325b5f2d1809937d656c4436539.jpg\" _src=\"http://yanxuan.nosdn.127.net/41511325b5f2d1809937d656c4436539.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a0ae5c4f81d44a7e39be64e22b20fb9e.jpg\" _src=\"http://yanxuan.nosdn.127.net/a0ae5c4f81d44a7e39be64e22b20fb9e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/85620c4bbf824adaad9357ebcf63100f.jpg\" _src=\"http://yanxuan.nosdn.127.net/85620c4bbf824adaad9357ebcf63100f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/20c40764fa85e99b9957ec1ab9ef47f1.jpg\" _src=\"http://yanxuan.nosdn.127.net/20c40764fa85e99b9957ec1ab9ef47f1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/824167c4acb7f568a207de964c9e3950.jpg\" _src=\"http://yanxuan.nosdn.127.net/824167c4acb7f568a207de964c9e3950.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a009b2ba646a28ec871e280cfda71970.jpg\" _src=\"http://yanxuan.nosdn.127.net/a009b2ba646a28ec871e280cfda71970.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ff81e9f5d4e2f7cd9bdf1ca8b8716590.jpg\" _src=\"http://yanxuan.nosdn.127.net/ff81e9f5d4e2f7cd9bdf1ca8b8716590.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a2b8815482e71297b5d866093d84899f.jpg\" _src=\"http://yanxuan.nosdn.127.net/a2b8815482e71297b5d866093d84899f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6db10a758905d3e85231a35f1f10a2fd.jpg\" _src=\"http://yanxuan.nosdn.127.net/6db10a758905d3e85231a35f1f10a2fd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/96bfe146d6c11c42fdca1d609f326536.jpg\" _src=\"http://yanxuan.nosdn.127.net/96bfe146d6c11c42fdca1d609f326536.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b4d890102d42ff9c6467ab23cddbaa8b.jpg\" _src=\"http://yanxuan.nosdn.127.net/b4d890102d42ff9c6467ab23cddbaa8b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1199aadeb28c7373a4bd7d2408790620.jpg\" _src=\"http://yanxuan.nosdn.127.net/1199aadeb28c7373a4bd7d2408790620.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8bb6be9a67727515fa270bf9628fb4a7.jpg\" _src=\"http://yanxuan.nosdn.127.net/8bb6be9a67727515fa270bf9628fb4a7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/015c9f8d18232f2fd932d77e89ef5127.jpg\" _src=\"http://yanxuan.nosdn.127.net/015c9f8d18232f2fd932d77e89ef5127.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9a43c8b6676832dc4ff37cd4183e9e7f.jpg\" _src=\"http://yanxuan.nosdn.127.net/9a43c8b6676832dc4ff37cd4183e9e7f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7cd095a43dca96f64994e6e29092c33a.jpg\" _src=\"http://yanxuan.nosdn.127.net/7cd095a43dca96f64994e6e29092c33a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/43d1f07be1aee43e1730bec251c430f4.jpg\" _src=\"http://yanxuan.nosdn.127.net/43d1f07be1aee43e1730bec251c430f4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/145e05fcee62c4c61cb1081b15133422.jpg\" _src=\"http://yanxuan.nosdn.127.net/145e05fcee62c4c61cb1081b15133422.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '14', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/95c6822c3364568fa7fb93478c0765af.jpg', 'http://yanxuan.nosdn.127.net/46f3059b020eb3900e9af8e8c1af8a97.png', '139.00', '435', '1125065', '0.00', '限时购', '', '0.00', '0', '0', '0', '152.90', null, null, null, null);
  727. INSERT INTO `nideshop_goods` VALUES ('1125017', '1011004', '1125017', '天鹅船创意摆件', '0', '100', '', '造型可人,精巧实用', '<p><img src=\"http://yanxuan.nosdn.127.net/a51dfc28aa51d1b4771cd67040e606bc.jpg\" _src=\"http://yanxuan.nosdn.127.net/a51dfc28aa51d1b4771cd67040e606bc.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e0aa16773f6637c6d03e031491a828fd.jpg\" _src=\"http://yanxuan.nosdn.127.net/e0aa16773f6637c6d03e031491a828fd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/15b29314162f7a4058c2546e7704fefb.jpg\" _src=\"http://yanxuan.nosdn.127.net/15b29314162f7a4058c2546e7704fefb.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5b89e060a6a1fdbe350784ff7e39d2f8.jpg\" _src=\"http://yanxuan.nosdn.127.net/5b89e060a6a1fdbe350784ff7e39d2f8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0906675208be301e4fce31d761366ef1.jpg\" _src=\"http://yanxuan.nosdn.127.net/0906675208be301e4fce31d761366ef1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8f7bd4bc1d95ac4fefa49bc4011fa18e.jpg\" _src=\"http://yanxuan.nosdn.127.net/8f7bd4bc1d95ac4fefa49bc4011fa18e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/41fa6ebead02bcde81a7b7c1ad51d199.jpg\" _src=\"http://yanxuan.nosdn.127.net/41fa6ebead02bcde81a7b7c1ad51d199.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8fb341ce2b44d9cac286ee3573bd1448.jpg\" _src=\"http://yanxuan.nosdn.127.net/8fb341ce2b44d9cac286ee3573bd1448.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/446aa2f61b820732aec4387464ba6eec.jpg\" _src=\"http://yanxuan.nosdn.127.net/446aa2f61b820732aec4387464ba6eec.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9d65185d342b039333d4914d06f26b3e.jpg\" _src=\"http://yanxuan.nosdn.127.net/9d65185d342b039333d4914d06f26b3e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2185e0d078235feebd200752601e14a7.jpg\" _src=\"http://yanxuan.nosdn.127.net/2185e0d078235feebd200752601e14a7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/281ae1164e204a908f15159bbc55d682.jpg\" _src=\"http://yanxuan.nosdn.127.net/281ae1164e204a908f15159bbc55d682.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2c2fbd771452be4375466eca773d5b71.jpg\" _src=\"http://yanxuan.nosdn.127.net/2c2fbd771452be4375466eca773d5b71.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9f9a5117024408d2ef4175e570e31b6d.jpg\" _src=\"http://yanxuan.nosdn.127.net/9f9a5117024408d2ef4175e570e31b6d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/889b4854a059e7aebdc02f9cd7b3d4a6.jpg\" _src=\"http://yanxuan.nosdn.127.net/889b4854a059e7aebdc02f9cd7b3d4a6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/29ee93a187a8048b4a45d92481d76d69.jpg\" _src=\"http://yanxuan.nosdn.127.net/29ee93a187a8048b4a45d92481d76d69.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fc9f7d810b79157d293927cd8b9bd6af.jpg\" _src=\"http://yanxuan.nosdn.127.net/fc9f7d810b79157d293927cd8b9bd6af.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/facdaec0774f7bd948b44cff20601cc3.jpg\" _src=\"http://yanxuan.nosdn.127.net/facdaec0774f7bd948b44cff20601cc3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/26b9a61917f842b65a20d71c7ce9eeb2.jpg\" _src=\"http://yanxuan.nosdn.127.net/26b9a61917f842b65a20d71c7ce9eeb2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7f3cd2ffbcde3c2515e971b627cf92f4.jpg\" _src=\"http://yanxuan.nosdn.127.net/7f3cd2ffbcde3c2515e971b627cf92f4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bddd887a78dcce7105b69bc4b7278403.jpg\" _src=\"http://yanxuan.nosdn.127.net/bddd887a78dcce7105b69bc4b7278403.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5ae5da1a932d09bae158e27107140213.jpg\" _src=\"http://yanxuan.nosdn.127.net/5ae5da1a932d09bae158e27107140213.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ad5270a07e24be663407702d93b1726e.jpg\" _src=\"http://yanxuan.nosdn.127.net/ad5270a07e24be663407702d93b1726e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a7ae98eed18dae98c68633c0b3faadd3.jpg\" _src=\"http://yanxuan.nosdn.127.net/a7ae98eed18dae98c68633c0b3faadd3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/349d8491cbf7df8209ff3648c8aaff56.jpg\" _src=\"http://yanxuan.nosdn.127.net/349d8491cbf7df8209ff3648c8aaff56.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cc7b3d5b3b866b7f797c9116451174d0.jpg\" _src=\"http://yanxuan.nosdn.127.net/cc7b3d5b3b866b7f797c9116451174d0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bf42f7ccdaba23f767b3bbbd57c8f9a7.jpg\" _src=\"http://yanxuan.nosdn.127.net/bf42f7ccdaba23f767b3bbbd57c8f9a7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/14b8fda555eb3792186cac4ada29547b.jpg\" _src=\"http://yanxuan.nosdn.127.net/14b8fda555eb3792186cac4ada29547b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8d6eb01d8614d2301365c4af07eb3f62.jpg\" _src=\"http://yanxuan.nosdn.127.net/8d6eb01d8614d2301365c4af07eb3f62.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/25f9940e2cdc70a3698aca1bdd0c13fa.jpg\" _src=\"http://yanxuan.nosdn.127.net/25f9940e2cdc70a3698aca1bdd0c13fa.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7863d339f85ec1cabea6ffdbbb7cde5e.jpg\" _src=\"http://yanxuan.nosdn.127.net/7863d339f85ec1cabea6ffdbbb7cde5e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ea2478d43f3478ebe89688e49a479522.jpg\" _src=\"http://yanxuan.nosdn.127.net/ea2478d43f3478ebe89688e49a479522.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8cd1f58b12bdcc4e583b582f19b26996.jpg\" _src=\"http://yanxuan.nosdn.127.net/8cd1f58b12bdcc4e583b582f19b26996.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/65b153479f9a7ba1dac5f55c1045e143.jpg\" _src=\"http://yanxuan.nosdn.127.net/65b153479f9a7ba1dac5f55c1045e143.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/36570da498aea05ab30da0b062c4f18e.jpg\" _src=\"http://yanxuan.nosdn.127.net/36570da498aea05ab30da0b062c4f18e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e4f6d9bf0f69dc04391b5e114025a144.jpg\" _src=\"http://yanxuan.nosdn.127.net/e4f6d9bf0f69dc04391b5e114025a144.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2f11681610b750c9df77971695bca463.jpg\" _src=\"http://yanxuan.nosdn.127.net/2f11681610b750c9df77971695bca463.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6d7458ad28a8c7dd09937789625d623d.jpg\" _src=\"http://yanxuan.nosdn.127.net/6d7458ad28a8c7dd09937789625d623d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3eade836202126955fef56da3094ac18.jpg\" _src=\"http://yanxuan.nosdn.127.net/3eade836202126955fef56da3094ac18.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d2d2b70f33d4e49b95a116ceece3fff5.jpg\" _src=\"http://yanxuan.nosdn.127.net/d2d2b70f33d4e49b95a116ceece3fff5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2edc095b18e555ac4885151019df8700.jpg\" _src=\"http://yanxuan.nosdn.127.net/2edc095b18e555ac4885151019df8700.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4c0e54da96db752c4ba4299efe73f543.jpg\" _src=\"http://yanxuan.nosdn.127.net/4c0e54da96db752c4ba4299efe73f543.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0bd47f5860de32e185b1bf64d2a92aa0.jpg\" _src=\"http://yanxuan.nosdn.127.net/0bd47f5860de32e185b1bf64d2a92aa0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0976af88cba94c894fd18c4405959dd3.jpg\" _src=\"http://yanxuan.nosdn.127.net/0976af88cba94c894fd18c4405959dd3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fab77fe01f06d7cf816d1b29cef412ec.jpg\" _src=\"http://yanxuan.nosdn.127.net/fab77fe01f06d7cf816d1b29cef412ec.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/51c96503b34613aefb25e8e173bba736.jpg\" _src=\"http://yanxuan.nosdn.127.net/51c96503b34613aefb25e8e173bba736.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f9019d59726e02ee0e0160766c70aaa6.jpg\" _src=\"http://yanxuan.nosdn.127.net/f9019d59726e02ee0e0160766c70aaa6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/db22ecba52a1cc7accce3d9deb2a2a3b.jpg\" _src=\"http://yanxuan.nosdn.127.net/db22ecba52a1cc7accce3d9deb2a2a3b.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '15', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/66f2005b3eb5f9f44c277a994fd80f45.jpg', 'http://yanxuan.nosdn.127.net/ae63fed274187e3e572043c53fefd836.png', '99.00', '203', '1125067', '0.00', '限时购', '', '0.00', '0', '0', '0', '108.90', null, null, null, null);
  728. INSERT INTO `nideshop_goods` VALUES ('1125026', '1020003', '1125026', '中国红满月百天礼盒', '0', '100', '', '新生满月,送礼中国红', '', '1', '2017-08-30 11:40:11', '1', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/7676cbbd83506834b9a614ae5721bc62.png', 'http://yanxuan.nosdn.127.net/6308c120c441fd3e47658167ad944156.png', '159.00', '5814', '1125101', '0.00', '限时购', '', '0.00', '0', '0', '0', '174.90', null, null, null, null);
  729. INSERT INTO `nideshop_goods` VALUES ('1127003', '1008008', '1127003', 'AB面独立弹簧床垫 进口乳胶', '0', '100', '', '双面可用,抗菌防螨', '<p><img src=\"http://yanxuan.nosdn.127.net/b95a717cef75bb52dd5994fd67ffcc90.jpg\" _src=\"http://yanxuan.nosdn.127.net/b95a717cef75bb52dd5994fd67ffcc90.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/73a4a6b2ac1b8187d76514248a54ec5d.jpg\" _src=\"http://yanxuan.nosdn.127.net/73a4a6b2ac1b8187d76514248a54ec5d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e38da697cc92266ed49b5d958b4c4b8a.jpg\" _src=\"http://yanxuan.nosdn.127.net/e38da697cc92266ed49b5d958b4c4b8a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/66e01d77739c71631590ec06a1db7ca4.jpg\" _src=\"http://yanxuan.nosdn.127.net/66e01d77739c71631590ec06a1db7ca4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/713ed12beda8f667fc27910470226f3c.jpg\" _src=\"http://yanxuan.nosdn.127.net/713ed12beda8f667fc27910470226f3c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/58dc4c9ec7b19aa04112c8f8f2d473ea.jpg\" _src=\"http://yanxuan.nosdn.127.net/58dc4c9ec7b19aa04112c8f8f2d473ea.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b11a06d8d10a42b300fa8b2a3f162bec.jpg\" _src=\"http://yanxuan.nosdn.127.net/b11a06d8d10a42b300fa8b2a3f162bec.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e112fd089f47c7f7824bbc75f0a23668.jpg\" _src=\"http://yanxuan.nosdn.127.net/e112fd089f47c7f7824bbc75f0a23668.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/848a78a655a528df4bac6889e78ae477.jpg\" _src=\"http://yanxuan.nosdn.127.net/848a78a655a528df4bac6889e78ae477.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/39f8848e3163584230c3743d6f899f33.jpg\" _src=\"http://yanxuan.nosdn.127.net/39f8848e3163584230c3743d6f899f33.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ca7dc2e2f3ad071b48a72712263e233d.jpg\" _src=\"http://yanxuan.nosdn.127.net/ca7dc2e2f3ad071b48a72712263e233d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/84b2676ed4473b2de555a1e0793d6ca7.jpg\" _src=\"http://yanxuan.nosdn.127.net/84b2676ed4473b2de555a1e0793d6ca7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/48f55844d8c68e56d25605e3c5ab3554.jpg\" _src=\"http://yanxuan.nosdn.127.net/48f55844d8c68e56d25605e3c5ab3554.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2f1d0b7d4a4ea0732d5c224df8228327.jpg\" _src=\"http://yanxuan.nosdn.127.net/2f1d0b7d4a4ea0732d5c224df8228327.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d4615214340b545d6137d73bbc73b351.jpg\" _src=\"http://yanxuan.nosdn.127.net/d4615214340b545d6137d73bbc73b351.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/706a3d3f9428268704d0702f267f623f.jpg\" _src=\"http://yanxuan.nosdn.127.net/706a3d3f9428268704d0702f267f623f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ac5f9987ef6fdc4c18749f1a18ffb143.jpg\" _src=\"http://yanxuan.nosdn.127.net/ac5f9987ef6fdc4c18749f1a18ffb143.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9b8b4a730b0ca5858b9b5731b9b67d7a.jpg\" _src=\"http://yanxuan.nosdn.127.net/9b8b4a730b0ca5858b9b5731b9b67d7a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3304028a2523a1e624addbc15cf081ef.jpg\" _src=\"http://yanxuan.nosdn.127.net/3304028a2523a1e624addbc15cf081ef.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2a6ad47236678c8bfdd6d9a1dd93d483.jpg\" _src=\"http://yanxuan.nosdn.127.net/2a6ad47236678c8bfdd6d9a1dd93d483.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/28efa2ff28e18fa09efda046a1488409.jpg\" _src=\"http://yanxuan.nosdn.127.net/28efa2ff28e18fa09efda046a1488409.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0ebbc6e7f14b77dff9ffaeb6e7a3647d.jpg\" _src=\"http://yanxuan.nosdn.127.net/0ebbc6e7f14b77dff9ffaeb6e7a3647d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/506a349755bd30fb9f2a615719285e83.jpg\" _src=\"http://yanxuan.nosdn.127.net/506a349755bd30fb9f2a615719285e83.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2d07f141b1bcefc8a13123687c75243c.jpg\" _src=\"http://yanxuan.nosdn.127.net/2d07f141b1bcefc8a13123687c75243c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/629437964fc07f341e1550a3ea4fb76a.jpg\" _src=\"http://yanxuan.nosdn.127.net/629437964fc07f341e1550a3ea4fb76a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8c1f7a665aa181fbf8ae12f12dc87876.jpg\" _src=\"http://yanxuan.nosdn.127.net/8c1f7a665aa181fbf8ae12f12dc87876.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/173ae031e53c6909e23e60b585944b4b.jpg\" _src=\"http://yanxuan.nosdn.127.net/173ae031e53c6909e23e60b585944b4b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/79d8bad209250a11bc5c2ee2c643db54.jpg\" _src=\"http://yanxuan.nosdn.127.net/79d8bad209250a11bc5c2ee2c643db54.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3f77cce8d53a99c059071c73e8e33edf.jpg\" _src=\"http://yanxuan.nosdn.127.net/3f77cce8d53a99c059071c73e8e33edf.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/048d5401f4cecb7401c1d220db5eefae.jpg\" _src=\"http://yanxuan.nosdn.127.net/048d5401f4cecb7401c1d220db5eefae.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ba7866947baf43b145a79fe7fa67fb83.jpg\" _src=\"http://yanxuan.nosdn.127.net/ba7866947baf43b145a79fe7fa67fb83.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7d7b44b507729675b2181cf15ae211a4.jpg\" _src=\"http://yanxuan.nosdn.127.net/7d7b44b507729675b2181cf15ae211a4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/363fe4f5922b6fa176b609c668049914.jpg\" _src=\"http://yanxuan.nosdn.127.net/363fe4f5922b6fa176b609c668049914.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/52312d8fceae2fc18c90e02aa6c4ffac.jpg\" _src=\"http://yanxuan.nosdn.127.net/52312d8fceae2fc18c90e02aa6c4ffac.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/205dbbba79eea2b27d6d45958045c908.jpg\" _src=\"http://yanxuan.nosdn.127.net/205dbbba79eea2b27d6d45958045c908.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/edb8ad6c0b4d62148b0cd9004cd3d1db.jpg\" _src=\"http://yanxuan.nosdn.127.net/edb8ad6c0b4d62148b0cd9004cd3d1db.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/42ab3bbbe8ed4a443fbceaee41145ede.jpg\" _src=\"http://yanxuan.nosdn.127.net/42ab3bbbe8ed4a443fbceaee41145ede.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6d16c8a4bbaf471a686b55ccf29a2c7a.jpg\" _src=\"http://yanxuan.nosdn.127.net/6d16c8a4bbaf471a686b55ccf29a2c7a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f9f1e20d2b38ce93810ce63fd7e1103b.jpg\" _src=\"http://yanxuan.nosdn.127.net/f9f1e20d2b38ce93810ce63fd7e1103b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/11d1c180a723af71b1d0a0586116ed8a.jpg\" _src=\"http://yanxuan.nosdn.127.net/11d1c180a723af71b1d0a0586116ed8a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c7751fa7dc992c50200c8b32eba5aeb9.jpg\" _src=\"http://yanxuan.nosdn.127.net/c7751fa7dc992c50200c8b32eba5aeb9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/113a1934b4bc7ad4055c3b4d34dbbbee.jpg\" _src=\"http://yanxuan.nosdn.127.net/113a1934b4bc7ad4055c3b4d34dbbbee.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/67401e03df5d88c285a63f2b89deae1c.jpg\" _src=\"http://yanxuan.nosdn.127.net/67401e03df5d88c285a63f2b89deae1c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b793c2a0462399faeab3af6cde683454.jpg\" _src=\"http://yanxuan.nosdn.127.net/b793c2a0462399faeab3af6cde683454.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b54481d5181fd561feed03571cad4888.jpg\" _src=\"http://yanxuan.nosdn.127.net/b54481d5181fd561feed03571cad4888.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/77b754c2e9d9d5c09093d9807fa63734.jpg\" _src=\"http://yanxuan.nosdn.127.net/77b754c2e9d9d5c09093d9807fa63734.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e31bf5b249224ed2eb0bd048a86cf966.jpg\" _src=\"http://yanxuan.nosdn.127.net/e31bf5b249224ed2eb0bd048a86cf966.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e587e4e7e11d9b1e8e00e7d38daa5dc4.jpg\" _src=\"http://yanxuan.nosdn.127.net/e587e4e7e11d9b1e8e00e7d38daa5dc4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7e24c2bfe4c302c607294ef157606fe9.jpg\" _src=\"http://yanxuan.nosdn.127.net/7e24c2bfe4c302c607294ef157606fe9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d2cd43adef5bd4dd071ac1f83b328f94.jpg\" _src=\"http://yanxuan.nosdn.127.net/d2cd43adef5bd4dd071ac1f83b328f94.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/effb35400027c184faa19220e72442f0.jpg\" _src=\"http://yanxuan.nosdn.127.net/effb35400027c184faa19220e72442f0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9df9d77101b451fe21b691f116ec0601.jpg\" _src=\"http://yanxuan.nosdn.127.net/9df9d77101b451fe21b691f116ec0601.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0a10d1d1ba06b48e0696cc4a4b0a8df0.jpg\" _src=\"http://yanxuan.nosdn.127.net/0a10d1d1ba06b48e0696cc4a4b0a8df0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/769c99f34bb990c8d42996cf396b2c46.jpg\" _src=\"http://yanxuan.nosdn.127.net/769c99f34bb990c8d42996cf396b2c46.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/87899b9996a6b206ab0ccdc7e7e4fb48.jpg\" _src=\"http://yanxuan.nosdn.127.net/87899b9996a6b206ab0ccdc7e7e4fb48.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/42c6b1be44d139766943795555eab673.jpg\" _src=\"http://yanxuan.nosdn.127.net/42c6b1be44d139766943795555eab673.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e56ba8ef9f964e0546cf8b0b08d015d7.jpg\" _src=\"http://yanxuan.nosdn.127.net/e56ba8ef9f964e0546cf8b0b08d015d7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9f57d0a5872b78b6f9317a13f60dae6d.jpg\" _src=\"http://yanxuan.nosdn.127.net/9f57d0a5872b78b6f9317a13f60dae6d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6d6159d064520042a93c3cfbf25e3e13.jpg\" _src=\"http://yanxuan.nosdn.127.net/6d6159d064520042a93c3cfbf25e3e13.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5d88111c77c0c2bb4a3f71ea298ee4d4.jpg\" _src=\"http://yanxuan.nosdn.127.net/5d88111c77c0c2bb4a3f71ea298ee4d4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/edb887378ba184a6faa6798bc53106ce.jpg\" _src=\"http://yanxuan.nosdn.127.net/edb887378ba184a6faa6798bc53106ce.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/70df83cacd175e0aa535f638b403b429.jpg\" _src=\"http://yanxuan.nosdn.127.net/70df83cacd175e0aa535f638b403b429.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7829dc581defeaa3f9c7da72bad58cda.jpg\" _src=\"http://yanxuan.nosdn.127.net/7829dc581defeaa3f9c7da72bad58cda.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3a98b4fb2bcd05f907a15667daa4640e.jpg\" _src=\"http://yanxuan.nosdn.127.net/3a98b4fb2bcd05f907a15667daa4640e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ba248e4314309eaa657496f6b70ee355.jpg\" _src=\"http://yanxuan.nosdn.127.net/ba248e4314309eaa657496f6b70ee355.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5d384f2d446ef4e1783f553a27e045c8.jpg\" _src=\"http://yanxuan.nosdn.127.net/5d384f2d446ef4e1783f553a27e045c8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d581fd6450333516afdd8fb504af8ace.jpg\" _src=\"http://yanxuan.nosdn.127.net/d581fd6450333516afdd8fb504af8ace.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9c22e4a8469385ebf284e14303f89e1e.jpg\" _src=\"http://yanxuan.nosdn.127.net/9c22e4a8469385ebf284e14303f89e1e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fb7aa9149316c892d9786ec592e7981a.jpg\" _src=\"http://yanxuan.nosdn.127.net/fb7aa9149316c892d9786ec592e7981a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/670e23fa6425857af92595ceeeeb18c4.jpg\" _src=\"http://yanxuan.nosdn.127.net/670e23fa6425857af92595ceeeeb18c4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cd3a747f6396fa61d61f80bd47235b8b.jpg\" _src=\"http://yanxuan.nosdn.127.net/cd3a747f6396fa61d61f80bd47235b8b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/50b6b3532e0a58f69d3b6cb3151fc017.jpg\" _src=\"http://yanxuan.nosdn.127.net/50b6b3532e0a58f69d3b6cb3151fc017.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2cb3cc0e82e16296aed016874eef94b8.jpg\" _src=\"http://yanxuan.nosdn.127.net/2cb3cc0e82e16296aed016874eef94b8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b2a8f742ce79310b5b7becbe8283d6fd.jpg\" _src=\"http://yanxuan.nosdn.127.net/b2a8f742ce79310b5b7becbe8283d6fd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0c07b513138af7a8da082bb76163dff8.jpg\" _src=\"http://yanxuan.nosdn.127.net/0c07b513138af7a8da082bb76163dff8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b675855909ab078264ce433a51d8ca58.jpg\" _src=\"http://yanxuan.nosdn.127.net/b675855909ab078264ce433a51d8ca58.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8752779994188ed8b2c265a728f00c7e.jpg\" _src=\"http://yanxuan.nosdn.127.net/8752779994188ed8b2c265a728f00c7e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7349ec413588d56c53669402a86ed271.jpg\" _src=\"http://yanxuan.nosdn.127.net/7349ec413588d56c53669402a86ed271.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d0c4068e8c4b14b13245ecc8297dfb5c.jpg\" _src=\"http://yanxuan.nosdn.127.net/d0c4068e8c4b14b13245ecc8297dfb5c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e895f3dcee8229d6bad4c02a22d7d12d.jpg\" _src=\"http://yanxuan.nosdn.127.net/e895f3dcee8229d6bad4c02a22d7d12d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ecb93934355f7623558324662ec3d837.jpg\" _src=\"http://yanxuan.nosdn.127.net/ecb93934355f7623558324662ec3d837.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/35eab1fb0eea3014718d9b75ac85dab2.jpg\" _src=\"http://yanxuan.nosdn.127.net/35eab1fb0eea3014718d9b75ac85dab2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4e5eaa839044afbccbf50150943c422b.jpg\" _src=\"http://yanxuan.nosdn.127.net/4e5eaa839044afbccbf50150943c422b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cf5d1f44c8b0c93207dbb32fee55ce0c.jpg\" _src=\"http://yanxuan.nosdn.127.net/cf5d1f44c8b0c93207dbb32fee55ce0c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b6ea1672b4d39680256fce2cdc31e792.jpg\" _src=\"http://yanxuan.nosdn.127.net/b6ea1672b4d39680256fce2cdc31e792.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f901e6f246a20b51a76f3560ed827543.jpg\" _src=\"http://yanxuan.nosdn.127.net/f901e6f246a20b51a76f3560ed827543.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e409a52ea928208c0b1fe177e5b42b1e.jpg\" _src=\"http://yanxuan.nosdn.127.net/e409a52ea928208c0b1fe177e5b42b1e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6b308ebcbf6ecf128f991dc8e8b17e03.jpg\" _src=\"http://yanxuan.nosdn.127.net/6b308ebcbf6ecf128f991dc8e8b17e03.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6d5a1c5352dcb45d83fc44a61bef5809.jpg\" _src=\"http://yanxuan.nosdn.127.net/6d5a1c5352dcb45d83fc44a61bef5809.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0c47d2ab68c6c268425161733870d6ea.jpg\" _src=\"http://yanxuan.nosdn.127.net/0c47d2ab68c6c268425161733870d6ea.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2b633ba1712acc453d44c057c5d82ea9.jpg\" _src=\"http://yanxuan.nosdn.127.net/2b633ba1712acc453d44c057c5d82ea9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/56571537fcf26ce769d585c09e4ddd97.jpg\" _src=\"http://yanxuan.nosdn.127.net/56571537fcf26ce769d585c09e4ddd97.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a21829fd29c29415df950697277d1c2d.jpg\" _src=\"http://yanxuan.nosdn.127.net/a21829fd29c29415df950697277d1c2d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7d5feaa6c01cf70337073b6a65244fe7.jpg\" _src=\"http://yanxuan.nosdn.127.net/7d5feaa6c01cf70337073b6a65244fe7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e7a337545b721791bd5ab3651bf08e44.jpg\" _src=\"http://yanxuan.nosdn.127.net/e7a337545b721791bd5ab3651bf08e44.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/657fed4e75739e8e12644b32f3848136.jpg\" _src=\"http://yanxuan.nosdn.127.net/657fed4e75739e8e12644b32f3848136.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/400681bcddf290322afab3d7b5f98f64.jpg\" _src=\"http://yanxuan.nosdn.127.net/400681bcddf290322afab3d7b5f98f64.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/39882ed24db5429e95c733700b94a9cb.jpg\" _src=\"http://yanxuan.nosdn.127.net/39882ed24db5429e95c733700b94a9cb.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6bff7bdc580c061ba82a482a66159495.jpg\" _src=\"http://yanxuan.nosdn.127.net/6bff7bdc580c061ba82a482a66159495.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/473feafcaefbad481fb18d4aab66dc28.jpg\" _src=\"http://yanxuan.nosdn.127.net/473feafcaefbad481fb18d4aab66dc28.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8512bbb77646f5f0722ecad870a1f403.jpg\" _src=\"http://yanxuan.nosdn.127.net/8512bbb77646f5f0722ecad870a1f403.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e9dd43ef3354a41f2a07eef54bd7a2fe.jpg\" _src=\"http://yanxuan.nosdn.127.net/e9dd43ef3354a41f2a07eef54bd7a2fe.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b2e0ba6a2260be7a1c3952eab0dbf285.jpg\" _src=\"http://yanxuan.nosdn.127.net/b2e0ba6a2260be7a1c3952eab0dbf285.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f27b6b88f6569df22a07afac34fff1f5.jpg\" _src=\"http://yanxuan.nosdn.127.net/f27b6b88f6569df22a07afac34fff1f5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e38a52f11b9b3a6a53096f23fb928bd3.jpg\" _src=\"http://yanxuan.nosdn.127.net/e38a52f11b9b3a6a53096f23fb928bd3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/33b39bfe036addb764257e3d75104ae4.jpg\" _src=\"http://yanxuan.nosdn.127.net/33b39bfe036addb764257e3d75104ae4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/235669621a523dc06eeb4fd38894dd5f.jpg\" _src=\"http://yanxuan.nosdn.127.net/235669621a523dc06eeb4fd38894dd5f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c12663edd2618c17cfc2f15ec17556de.jpg\" _src=\"http://yanxuan.nosdn.127.net/c12663edd2618c17cfc2f15ec17556de.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/28d3e932300cc1db7e889847f808ccac.jpg\" _src=\"http://yanxuan.nosdn.127.net/28d3e932300cc1db7e889847f808ccac.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e6c97ce71400a01dccb702c25dc4ca14.jpg\" _src=\"http://yanxuan.nosdn.127.net/e6c97ce71400a01dccb702c25dc4ca14.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5745b0bae532c14d5b20e1784f0f9437.jpg\" _src=\"http://yanxuan.nosdn.127.net/5745b0bae532c14d5b20e1784f0f9437.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0d908757dd73fc3d3193dff6f3b021eb.jpg\" _src=\"http://yanxuan.nosdn.127.net/0d908757dd73fc3d3193dff6f3b021eb.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0406eaf05ac2d762ee397281832e0190.jpg\" _src=\"http://yanxuan.nosdn.127.net/0406eaf05ac2d762ee397281832e0190.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/da5a8dae4990f51d2725bfc8a4aa2205.jpg\" _src=\"http://yanxuan.nosdn.127.net/da5a8dae4990f51d2725bfc8a4aa2205.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/376952f135f0fec9837c561986c7eec0.jpg\" _src=\"http://yanxuan.nosdn.127.net/376952f135f0fec9837c561986c7eec0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3ea87aa58473f63c4004c67068480efd.jpg\" _src=\"http://yanxuan.nosdn.127.net/3ea87aa58473f63c4004c67068480efd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fe12c356c5c5e7baddc1925eaa62c034.jpg\" _src=\"http://yanxuan.nosdn.127.net/fe12c356c5c5e7baddc1925eaa62c034.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/66c2119db74e22cab6299281f147ef52.jpg\" _src=\"http://yanxuan.nosdn.127.net/66c2119db74e22cab6299281f147ef52.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f865899cc61a1e907a32e1b52f7952dc.jpg\" _src=\"http://yanxuan.nosdn.127.net/f865899cc61a1e907a32e1b52f7952dc.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e325e9d0551ea5f4d67baf467f068612.jpg\" _src=\"http://yanxuan.nosdn.127.net/e325e9d0551ea5f4d67baf467f068612.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0cda22b9035b7af93c63ac2e26202bfa.jpg\" _src=\"http://yanxuan.nosdn.127.net/0cda22b9035b7af93c63ac2e26202bfa.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/36a54a7eef96a552395e3e885c71a4d1.jpg\" _src=\"http://yanxuan.nosdn.127.net/36a54a7eef96a552395e3e885c71a4d1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/85c389a1b1d058e9192cad2834123375.jpg\" _src=\"http://yanxuan.nosdn.127.net/85c389a1b1d058e9192cad2834123375.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/dc6fddb574f98c5d889429062ad0ac1e.jpg\" _src=\"http://yanxuan.nosdn.127.net/dc6fddb574f98c5d889429062ad0ac1e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bdd8df716353b8e9c67cd0c1663aa22f.jpg\" _src=\"http://yanxuan.nosdn.127.net/bdd8df716353b8e9c67cd0c1663aa22f.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '23', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/067a8b01158c92a32dfb36171edd6c2e.jpg', 'http://yanxuan.nosdn.127.net/6ad1813d123f7a80f84c2cfa5f8c7caf.png', '2599.00', '3555', '1127006', '0.00', '限时购', '', '0.00', '0', '0', '0', '2858.90', null, null, null, null);
  730. INSERT INTO `nideshop_goods` VALUES ('1127024', '1010002', '1127024', '女式无痕真丝内裤', '0', '100', '', '德国热帖工艺无痕无缝', '', '1', '2017-08-30 11:40:11', '4', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/a89fcd110c582c28a5f6cd821effb37a.png', 'http://yanxuan.nosdn.127.net/0a70f12a712e90d7d93beec4f686fe8e.png', '39.00', '14193', '1127044', '0.00', '限时购', '', '0.00', '0', '0', '0', '42.90', null, null, null, null);
  731. INSERT INTO `nideshop_goods` VALUES ('1127025', '1010002', '1127025', '女式蝶边真丝内裤', '0', '100', '', '养肤蚕丝,蝶翼无痕', '', '1', '2017-08-30 11:40:11', '3', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/4b18824270819e1590e84671f6f2517f.png', 'http://yanxuan.nosdn.127.net/b2fe79c872a8a7f647264b5e51bcc802.png', '39.00', '8162', '1127062', '0.00', '限时购', '', '0.00', '0', '0', '0', '42.90', null, null, null, null);
  732. INSERT INTO `nideshop_goods` VALUES ('1127038', '1008009', '1127038', '简约知性全棉四件套 星空蓝', '0', '100', '', '静谧深邃蓝 沉稳中充满张力', '<p><img src=\"http://yanxuan.nosdn.127.net/e8e3a3e5ef76185d9a24d7d1fdca6205.jpg\" _src=\"http://yanxuan.nosdn.127.net/e8e3a3e5ef76185d9a24d7d1fdca6205.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5c26d7316d33e3949573d482ba7fe51e.jpg\" _src=\"http://yanxuan.nosdn.127.net/5c26d7316d33e3949573d482ba7fe51e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/adf85bd8f3cff1ee39908ca6b8ad4f3d.jpg\" _src=\"http://yanxuan.nosdn.127.net/adf85bd8f3cff1ee39908ca6b8ad4f3d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fca5a2fd89e5c1bed65d3b2aa166ae58.jpg\" _src=\"http://yanxuan.nosdn.127.net/fca5a2fd89e5c1bed65d3b2aa166ae58.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5e220d44ff5c83e90b1c0a7173b9f0f0.jpg\" _src=\"http://yanxuan.nosdn.127.net/5e220d44ff5c83e90b1c0a7173b9f0f0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d4813e15d906ec228951fe62904d3d98.jpg\" _src=\"http://yanxuan.nosdn.127.net/d4813e15d906ec228951fe62904d3d98.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6e2fc6fb0d7169796095f1443a1e60b4.jpg\" _src=\"http://yanxuan.nosdn.127.net/6e2fc6fb0d7169796095f1443a1e60b4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7609e717c43e3cda99a2e581bcd268f3.jpg\" _src=\"http://yanxuan.nosdn.127.net/7609e717c43e3cda99a2e581bcd268f3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2ddd7042327097b67605a46e3456458b.jpg\" _src=\"http://yanxuan.nosdn.127.net/2ddd7042327097b67605a46e3456458b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4707c34a21bb7eef2501329e87c92e49.jpg\" _src=\"http://yanxuan.nosdn.127.net/4707c34a21bb7eef2501329e87c92e49.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/63796fbd3e3c0e90b629454a540059cc.jpg\" _src=\"http://yanxuan.nosdn.127.net/63796fbd3e3c0e90b629454a540059cc.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/edb0a4f0384e69ebad91342c6ff9c2f4.jpg\" _src=\"http://yanxuan.nosdn.127.net/edb0a4f0384e69ebad91342c6ff9c2f4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f7cc92ac4d74635f150642335a6ad837.jpg\" _src=\"http://yanxuan.nosdn.127.net/f7cc92ac4d74635f150642335a6ad837.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f69ba0c6e52dfa8ee4dbdcd470306fd1.jpg\" _src=\"http://yanxuan.nosdn.127.net/f69ba0c6e52dfa8ee4dbdcd470306fd1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4620bc82e5686631548824845e41e2d4.jpg\" _src=\"http://yanxuan.nosdn.127.net/4620bc82e5686631548824845e41e2d4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/71a7f99f49aea5d284e4f30fd705e5fb.jpg\" _src=\"http://yanxuan.nosdn.127.net/71a7f99f49aea5d284e4f30fd705e5fb.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3cc7a9af75047a22e56a41d3703d208e.jpg\" _src=\"http://yanxuan.nosdn.127.net/3cc7a9af75047a22e56a41d3703d208e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cc883f1d39071228263d8a4c3884446f.jpg\" _src=\"http://yanxuan.nosdn.127.net/cc883f1d39071228263d8a4c3884446f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5343658eae0b55702debcf866380427f.jpg\" _src=\"http://yanxuan.nosdn.127.net/5343658eae0b55702debcf866380427f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2a85419630ecbe7a39ff0c10da84d420.jpg\" _src=\"http://yanxuan.nosdn.127.net/2a85419630ecbe7a39ff0c10da84d420.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a26206ae59b95cc7b63ea3782d392880.jpg\" _src=\"http://yanxuan.nosdn.127.net/a26206ae59b95cc7b63ea3782d392880.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6d825f838237550a2cb3b2e07ed67c68.jpg\" _src=\"http://yanxuan.nosdn.127.net/6d825f838237550a2cb3b2e07ed67c68.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7046dd88025e249ea5ccc1641c020c58.jpg\" _src=\"http://yanxuan.nosdn.127.net/7046dd88025e249ea5ccc1641c020c58.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4fbe3423c2eb67a05db596450a2e60b9.jpg\" _src=\"http://yanxuan.nosdn.127.net/4fbe3423c2eb67a05db596450a2e60b9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/05be800e060b4ee293fa18c6578d406c.jpg\" _src=\"http://yanxuan.nosdn.127.net/05be800e060b4ee293fa18c6578d406c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/dca514263bfaeba4387ec1585d189acc.jpg\" _src=\"http://yanxuan.nosdn.127.net/dca514263bfaeba4387ec1585d189acc.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0bd9c0919910ca927d038502f7b0b74e.jpg\" _src=\"http://yanxuan.nosdn.127.net/0bd9c0919910ca927d038502f7b0b74e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fa1dd1dd30b5a52db2fa62cc8b0cbe45.jpg\" _src=\"http://yanxuan.nosdn.127.net/fa1dd1dd30b5a52db2fa62cc8b0cbe45.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/213f1d5e588af63e2116b75106c43447.jpg\" _src=\"http://yanxuan.nosdn.127.net/213f1d5e588af63e2116b75106c43447.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/79d99f1d776f67f6f4d2458a3211ceda.jpg\" _src=\"http://yanxuan.nosdn.127.net/79d99f1d776f67f6f4d2458a3211ceda.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b6247cbd3bb2ca2a1e11c2328303ac3b.jpg\" _src=\"http://yanxuan.nosdn.127.net/b6247cbd3bb2ca2a1e11c2328303ac3b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5a36497c3f3598d66dd87e8bbbe486ca.jpg\" _src=\"http://yanxuan.nosdn.127.net/5a36497c3f3598d66dd87e8bbbe486ca.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f442d65fc76b11faa12f4330b6e0c03f.jpg\" _src=\"http://yanxuan.nosdn.127.net/f442d65fc76b11faa12f4330b6e0c03f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/945df523b806a4a32c585a3e0da1e523.jpg\" _src=\"http://yanxuan.nosdn.127.net/945df523b806a4a32c585a3e0da1e523.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/19fb36c7ef20de83b87b850cb914e7ed.jpg\" _src=\"http://yanxuan.nosdn.127.net/19fb36c7ef20de83b87b850cb914e7ed.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/54e25196e2ec8c482569dd458084b1cf.jpg\" _src=\"http://yanxuan.nosdn.127.net/54e25196e2ec8c482569dd458084b1cf.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/96b70460779fbe8ed61dd9700b6d62c7.jpg\" _src=\"http://yanxuan.nosdn.127.net/96b70460779fbe8ed61dd9700b6d62c7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/03dd7fddbe60be1dea52a9e6d5feff93.jpg\" _src=\"http://yanxuan.nosdn.127.net/03dd7fddbe60be1dea52a9e6d5feff93.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c966a24f3f5f8dcf18c259f5c296aff9.jpg\" _src=\"http://yanxuan.nosdn.127.net/c966a24f3f5f8dcf18c259f5c296aff9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f22c0d86b59ee3453789def93816bbe4.jpg\" _src=\"http://yanxuan.nosdn.127.net/f22c0d86b59ee3453789def93816bbe4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/51b48309ba61717d0b0e2480f659cab9.jpg\" _src=\"http://yanxuan.nosdn.127.net/51b48309ba61717d0b0e2480f659cab9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5327b64a52e49124a0d8c5c7695cdcf9.jpg\" _src=\"http://yanxuan.nosdn.127.net/5327b64a52e49124a0d8c5c7695cdcf9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cbdff49f92a400c7a010ee0288534cbf.jpg\" _src=\"http://yanxuan.nosdn.127.net/cbdff49f92a400c7a010ee0288534cbf.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/310ec51ce5c1ae38e71df8d13f436631.jpg\" _src=\"http://yanxuan.nosdn.127.net/310ec51ce5c1ae38e71df8d13f436631.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/faeb5e1d960b51cac995766ab60f5b9f.jpg\" _src=\"http://yanxuan.nosdn.127.net/faeb5e1d960b51cac995766ab60f5b9f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4349f92481aebcf318e5a99cb9a8b814.jpg\" _src=\"http://yanxuan.nosdn.127.net/4349f92481aebcf318e5a99cb9a8b814.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f0c0af16829312d97d22e99fc811291f.jpg\" _src=\"http://yanxuan.nosdn.127.net/f0c0af16829312d97d22e99fc811291f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ff6b65f53c08ede76c11c6ebf45a011b.jpg\" _src=\"http://yanxuan.nosdn.127.net/ff6b65f53c08ede76c11c6ebf45a011b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a2ceb429b91744f4f48cd37104d9089b.jpg\" _src=\"http://yanxuan.nosdn.127.net/a2ceb429b91744f4f48cd37104d9089b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8f0b280463ae6c3df3a8bd0513cf1a24.jpg\" _src=\"http://yanxuan.nosdn.127.net/8f0b280463ae6c3df3a8bd0513cf1a24.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e5b1d678db7517dd188515e9f24cd82b.jpg\" _src=\"http://yanxuan.nosdn.127.net/e5b1d678db7517dd188515e9f24cd82b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e74e4a91396a972307e809a8ad380a17.jpg\" _src=\"http://yanxuan.nosdn.127.net/e74e4a91396a972307e809a8ad380a17.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/623714f78c4b9a98fe6940b0461703e3.jpg\" _src=\"http://yanxuan.nosdn.127.net/623714f78c4b9a98fe6940b0461703e3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ae414d8c0b794b35df80db84dc5be540.jpg\" _src=\"http://yanxuan.nosdn.127.net/ae414d8c0b794b35df80db84dc5be540.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '8', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/ff8932be77f7622b4644d22aae8fb8b2.jpg', 'http://yanxuan.nosdn.127.net/addc278cf9c301dd535791df2e03b2ea.png', '359.00', '318', '1127096', '0.00', '限时购', '', '0.00', '0', '0', '0', '394.90', null, null, null, null);
  733. INSERT INTO `nideshop_goods` VALUES ('1127039', '1008009', '1127039', '清新趣粉全棉四件套 青粉拼接', '0', '100', '', '精梳长绒棉,亲肤舒适', '<p><img src=\"http://yanxuan.nosdn.127.net/43a852a45f4a56d3392f1ddea87eb8eb.jpg\" _src=\"http://yanxuan.nosdn.127.net/43a852a45f4a56d3392f1ddea87eb8eb.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3c9c1934bce0b69ec220ff981ec738fe.jpg\" _src=\"http://yanxuan.nosdn.127.net/3c9c1934bce0b69ec220ff981ec738fe.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/56aa71cb1c36013a6d4e7f884af010fa.jpg\" _src=\"http://yanxuan.nosdn.127.net/56aa71cb1c36013a6d4e7f884af010fa.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f8aab18bfc5b668651064d29cfcd4fcf.jpg\" _src=\"http://yanxuan.nosdn.127.net/f8aab18bfc5b668651064d29cfcd4fcf.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/caf48b811fb86d6a4ee47a849afbc3f5.jpg\" _src=\"http://yanxuan.nosdn.127.net/caf48b811fb86d6a4ee47a849afbc3f5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1a23bed5db163248ef7d5f696bde6923.jpg\" _src=\"http://yanxuan.nosdn.127.net/1a23bed5db163248ef7d5f696bde6923.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6d2c20eff38f2b10631fdaf45363642f.jpg\" _src=\"http://yanxuan.nosdn.127.net/6d2c20eff38f2b10631fdaf45363642f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/902eb2eefa3cfb7104755cf8fc7b7d33.jpg\" _src=\"http://yanxuan.nosdn.127.net/902eb2eefa3cfb7104755cf8fc7b7d33.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4e1a836f6969eb1694d62ce99ea70e5f.jpg\" _src=\"http://yanxuan.nosdn.127.net/4e1a836f6969eb1694d62ce99ea70e5f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1413c155daac6279deb6400671798da6.jpg\" _src=\"http://yanxuan.nosdn.127.net/1413c155daac6279deb6400671798da6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9ecdabedeeae302bfeed80572ca51490.jpg\" _src=\"http://yanxuan.nosdn.127.net/9ecdabedeeae302bfeed80572ca51490.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c6ff45ee262e8d486f17134a9dbc0a3a.jpg\" _src=\"http://yanxuan.nosdn.127.net/c6ff45ee262e8d486f17134a9dbc0a3a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/be082ed4addbd787bb44fae512fb55fe.jpg\" _src=\"http://yanxuan.nosdn.127.net/be082ed4addbd787bb44fae512fb55fe.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bd32aac49141d87b7a983fe4646a7a75.jpg\" _src=\"http://yanxuan.nosdn.127.net/bd32aac49141d87b7a983fe4646a7a75.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/62fd7c2f44ceccc4ee33bdde2ee998f4.jpg\" _src=\"http://yanxuan.nosdn.127.net/62fd7c2f44ceccc4ee33bdde2ee998f4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/91e4e6bc20051706e74a6f65684e97cc.jpg\" _src=\"http://yanxuan.nosdn.127.net/91e4e6bc20051706e74a6f65684e97cc.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f47723ba3ffdf2ee107b497c560aef88.jpg\" _src=\"http://yanxuan.nosdn.127.net/f47723ba3ffdf2ee107b497c560aef88.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/95836389e457d1a2c6810e104c907f93.jpg\" _src=\"http://yanxuan.nosdn.127.net/95836389e457d1a2c6810e104c907f93.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/871322a2bd8b44226d597af3f0c52249.jpg\" _src=\"http://yanxuan.nosdn.127.net/871322a2bd8b44226d597af3f0c52249.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/891195e7bb58a6782f0f1da15ff34176.jpg\" _src=\"http://yanxuan.nosdn.127.net/891195e7bb58a6782f0f1da15ff34176.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c232a44890a7e2c1312c214ee4aaead5.jpg\" _src=\"http://yanxuan.nosdn.127.net/c232a44890a7e2c1312c214ee4aaead5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c7ee91d512fc23f83a9cde92bcc9663d.jpg\" _src=\"http://yanxuan.nosdn.127.net/c7ee91d512fc23f83a9cde92bcc9663d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1649cd095c5299283d9d307c337f36ec.jpg\" _src=\"http://yanxuan.nosdn.127.net/1649cd095c5299283d9d307c337f36ec.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8f0e3f5422a1e605d2cb0c66d03389e4.jpg\" _src=\"http://yanxuan.nosdn.127.net/8f0e3f5422a1e605d2cb0c66d03389e4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e1e90d6bc0b48db9859944113ef36a49.jpg\" _src=\"http://yanxuan.nosdn.127.net/e1e90d6bc0b48db9859944113ef36a49.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e12296776ba8d5b6c0c18fac593772a2.jpg\" _src=\"http://yanxuan.nosdn.127.net/e12296776ba8d5b6c0c18fac593772a2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/eab9452b80d2c4e4cc68e309c7de50a8.jpg\" _src=\"http://yanxuan.nosdn.127.net/eab9452b80d2c4e4cc68e309c7de50a8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3ac44a0026be72d166cd4c00824d600b.jpg\" _src=\"http://yanxuan.nosdn.127.net/3ac44a0026be72d166cd4c00824d600b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f98ab8b23724f26fd3a2db9e539e2e4d.jpg\" _src=\"http://yanxuan.nosdn.127.net/f98ab8b23724f26fd3a2db9e539e2e4d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/579e35893568aa03920e05eb16d4009d.jpg\" _src=\"http://yanxuan.nosdn.127.net/579e35893568aa03920e05eb16d4009d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b8921d7ddfe11cb12db4f05a6f120632.jpg\" _src=\"http://yanxuan.nosdn.127.net/b8921d7ddfe11cb12db4f05a6f120632.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8398cca3432ace05b02234ff47cbb25f.jpg\" _src=\"http://yanxuan.nosdn.127.net/8398cca3432ace05b02234ff47cbb25f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1296cacff7a32d6fea465ff1859e52e2.jpg\" _src=\"http://yanxuan.nosdn.127.net/1296cacff7a32d6fea465ff1859e52e2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0ab0a51959ae1ac64818d568e64dc6c9.jpg\" _src=\"http://yanxuan.nosdn.127.net/0ab0a51959ae1ac64818d568e64dc6c9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1f0d167aa533ecf32abaf3521b744402.jpg\" _src=\"http://yanxuan.nosdn.127.net/1f0d167aa533ecf32abaf3521b744402.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7bdb1e96d56ca8542a130a4ddbba7ac9.jpg\" _src=\"http://yanxuan.nosdn.127.net/7bdb1e96d56ca8542a130a4ddbba7ac9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/66c8b538d430b7e4a9772aa9375d284f.jpg\" _src=\"http://yanxuan.nosdn.127.net/66c8b538d430b7e4a9772aa9375d284f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3410feb14590c53cd31c24c69a875732.jpg\" _src=\"http://yanxuan.nosdn.127.net/3410feb14590c53cd31c24c69a875732.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fc3fa3cbe0657feaf771a9703635fbc7.jpg\" _src=\"http://yanxuan.nosdn.127.net/fc3fa3cbe0657feaf771a9703635fbc7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1b44910a98624d648d266ef44922fb7d.jpg\" _src=\"http://yanxuan.nosdn.127.net/1b44910a98624d648d266ef44922fb7d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8eddee7e749deb33c8ca8c28f56f2568.jpg\" _src=\"http://yanxuan.nosdn.127.net/8eddee7e749deb33c8ca8c28f56f2568.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/adfe104a5b1132e734647dc0c950e8af.jpg\" _src=\"http://yanxuan.nosdn.127.net/adfe104a5b1132e734647dc0c950e8af.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/be8ef89cf818a4aeba8d0ddf413cbcf9.jpg\" _src=\"http://yanxuan.nosdn.127.net/be8ef89cf818a4aeba8d0ddf413cbcf9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3829f4ed5b477680f169d390c8220c15.jpg\" _src=\"http://yanxuan.nosdn.127.net/3829f4ed5b477680f169d390c8220c15.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/126768f1680c147b7e11f853074d5289.jpg\" _src=\"http://yanxuan.nosdn.127.net/126768f1680c147b7e11f853074d5289.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b1321f2e495b39212ff2b50c2d0a84b1.jpg\" _src=\"http://yanxuan.nosdn.127.net/b1321f2e495b39212ff2b50c2d0a84b1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/125bfac27b6596ebe50535ceb87ced60.jpg\" _src=\"http://yanxuan.nosdn.127.net/125bfac27b6596ebe50535ceb87ced60.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8a93ed3b3caf85e8fd26ad79d771fb69.jpg\" _src=\"http://yanxuan.nosdn.127.net/8a93ed3b3caf85e8fd26ad79d771fb69.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/efbe7ce1c9de4da97ca143a3566d4c48.jpg\" _src=\"http://yanxuan.nosdn.127.net/efbe7ce1c9de4da97ca143a3566d4c48.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/943384ff66cec540eb1c14c6b6a3ce2c.jpg\" _src=\"http://yanxuan.nosdn.127.net/943384ff66cec540eb1c14c6b6a3ce2c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/06ade0cd8bfe76fc980199281bf0073d.jpg\" _src=\"http://yanxuan.nosdn.127.net/06ade0cd8bfe76fc980199281bf0073d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/075c4bd0119df63479696ee151aa0bfc.jpg\" _src=\"http://yanxuan.nosdn.127.net/075c4bd0119df63479696ee151aa0bfc.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/65f98f9eb6cc47f603a27200335ed0bd.jpg\" _src=\"http://yanxuan.nosdn.127.net/65f98f9eb6cc47f603a27200335ed0bd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1b904f6f9f30b6eea98ee14116291573.jpg\" _src=\"http://yanxuan.nosdn.127.net/1b904f6f9f30b6eea98ee14116291573.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '11', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/874af1d48ff8d0e633ae5f62aeda0c42.jpg', 'http://yanxuan.nosdn.127.net/be64df0a04ade4cfd75bf7d4e8509ecc.png', '399.00', '383', '1127102', '0.00', '限时购', '', '0.00', '0', '0', '0', '438.90', null, null, null, null);
  734. INSERT INTO `nideshop_goods` VALUES ('1127047', '1012003', '1127047', '趣味粉彩系列笔记本', '0', '100', '', '粉彩色泽,记录生活', '', '1', '2017-08-30 11:40:11', '2', '0', '0', '0.00', '0.00', '1', '件', 'http://yanxuan.nosdn.127.net/fad166a4742ab3681808c80120eb452a.jpg', 'http://yanxuan.nosdn.127.net/6c03ca93d8fe404faa266ea86f3f1e43.png', '29.00', '7015', '1127155', '0.00', '限时购', '', '0.00', '0', '0', '0', '31.90', null, null, null, null);
  735. INSERT INTO `nideshop_goods` VALUES ('1127052', '1036000', '1127052', '纯棉水洗色织格夏凉被', '0', '100', '', '100%棉填充,透气排汗,双面可用', '<p><img src=\"http://yanxuan.nosdn.127.net/f328e0e5475565edb64afe2c85b5a831.jpg\" _src=\"http://yanxuan.nosdn.127.net/f328e0e5475565edb64afe2c85b5a831.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1bade2c06be043cd0995bc7646c26a2a.jpg\" _src=\"http://yanxuan.nosdn.127.net/1bade2c06be043cd0995bc7646c26a2a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c445c2e64e0596d7c07604a44701bb4e.jpg\" _src=\"http://yanxuan.nosdn.127.net/c445c2e64e0596d7c07604a44701bb4e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/716b5e66b3feed4210b299e3d2990bf4.jpg\" _src=\"http://yanxuan.nosdn.127.net/716b5e66b3feed4210b299e3d2990bf4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d1b0013ce52475d9e9fcbb212b420dc0.jpg\" _src=\"http://yanxuan.nosdn.127.net/d1b0013ce52475d9e9fcbb212b420dc0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ffc759c940069f9ac9371d09c2dc8bcf.jpg\" _src=\"http://yanxuan.nosdn.127.net/ffc759c940069f9ac9371d09c2dc8bcf.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/84b85b9c8718eec01297822235b92494.jpg\" _src=\"http://yanxuan.nosdn.127.net/84b85b9c8718eec01297822235b92494.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6050d830f0937527572bd50c1071dc69.jpg\" _src=\"http://yanxuan.nosdn.127.net/6050d830f0937527572bd50c1071dc69.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e14438c3c3d20136f1b6eb72a20bcfad.jpg\" _src=\"http://yanxuan.nosdn.127.net/e14438c3c3d20136f1b6eb72a20bcfad.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e5c2eb2db9e7bff8b5e4c30eb79f5d5a.jpg\" _src=\"http://yanxuan.nosdn.127.net/e5c2eb2db9e7bff8b5e4c30eb79f5d5a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7612761039ffd30cd5f42db483306602.jpg\" _src=\"http://yanxuan.nosdn.127.net/7612761039ffd30cd5f42db483306602.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a0cfee5d390dd47d970b3f341697a3bd.jpg\" _src=\"http://yanxuan.nosdn.127.net/a0cfee5d390dd47d970b3f341697a3bd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/aa1e2bf21b89336e6b17375472aaf15d.jpg\" _src=\"http://yanxuan.nosdn.127.net/aa1e2bf21b89336e6b17375472aaf15d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/444af3e9d80252fe5ccb1cd755ce9dd0.jpg\" _src=\"http://yanxuan.nosdn.127.net/444af3e9d80252fe5ccb1cd755ce9dd0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e03fb8f1bac6d99768aaba5bac1af679.jpg\" _src=\"http://yanxuan.nosdn.127.net/e03fb8f1bac6d99768aaba5bac1af679.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7c966e10b0c50ab4b7a1cce4fd2c2c87.jpg\" _src=\"http://yanxuan.nosdn.127.net/7c966e10b0c50ab4b7a1cce4fd2c2c87.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fab1152955f4f048cb1c58f30f96f5b5.jpg\" _src=\"http://yanxuan.nosdn.127.net/fab1152955f4f048cb1c58f30f96f5b5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d22180e80aa005d7c8f56d8e721e091f.jpg\" _src=\"http://yanxuan.nosdn.127.net/d22180e80aa005d7c8f56d8e721e091f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/700be173c782fd45fc9e1713e3e96d89.jpg\" _src=\"http://yanxuan.nosdn.127.net/700be173c782fd45fc9e1713e3e96d89.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b9041fd6f229c1941ad7792d35b06837.jpg\" _src=\"http://yanxuan.nosdn.127.net/b9041fd6f229c1941ad7792d35b06837.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fe5de03e655ce1bc2e3ec5bf272f759e.jpg\" _src=\"http://yanxuan.nosdn.127.net/fe5de03e655ce1bc2e3ec5bf272f759e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b3e398e9397126ddccee6c9a87629efe.jpg\" _src=\"http://yanxuan.nosdn.127.net/b3e398e9397126ddccee6c9a87629efe.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5ce9d30c469b766fbfa10c7ea6b27748.jpg\" _src=\"http://yanxuan.nosdn.127.net/5ce9d30c469b766fbfa10c7ea6b27748.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cfb73042491d3174bbb9373d873bb54e.jpg\" _src=\"http://yanxuan.nosdn.127.net/cfb73042491d3174bbb9373d873bb54e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/beb828e58a5ba65e6bb2189bfe592731.jpg\" _src=\"http://yanxuan.nosdn.127.net/beb828e58a5ba65e6bb2189bfe592731.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b257b7fdebe5327636b64b8a4f654608.jpg\" _src=\"http://yanxuan.nosdn.127.net/b257b7fdebe5327636b64b8a4f654608.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/aa2c803e52e3240515c60dd136dfcf10.jpg\" _src=\"http://yanxuan.nosdn.127.net/aa2c803e52e3240515c60dd136dfcf10.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/576203295fd33346e32e674ce5537cd0.jpg\" _src=\"http://yanxuan.nosdn.127.net/576203295fd33346e32e674ce5537cd0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0b9f4f9a24d72852f20ec3de3f7f4a26.jpg\" _src=\"http://yanxuan.nosdn.127.net/0b9f4f9a24d72852f20ec3de3f7f4a26.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6fda63607d59d0f119b72a76ea1d50bb.jpg\" _src=\"http://yanxuan.nosdn.127.net/6fda63607d59d0f119b72a76ea1d50bb.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bdd6d99258ce22ccf5246e4a4d02e97c.jpg\" _src=\"http://yanxuan.nosdn.127.net/bdd6d99258ce22ccf5246e4a4d02e97c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/25a5e8ef2f8f45e993f26a0f670fb282.jpg\" _src=\"http://yanxuan.nosdn.127.net/25a5e8ef2f8f45e993f26a0f670fb282.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9ca6747879000f08fd3d90ef30d546c8.jpg\" _src=\"http://yanxuan.nosdn.127.net/9ca6747879000f08fd3d90ef30d546c8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1de9b2d85d826a048db3bc4dfeb6007e.jpg\" _src=\"http://yanxuan.nosdn.127.net/1de9b2d85d826a048db3bc4dfeb6007e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/edddf949d4406d805b45465f7e425ac3.jpg\" _src=\"http://yanxuan.nosdn.127.net/edddf949d4406d805b45465f7e425ac3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/994df23b1aa0098ffaa544a1aeecae24.jpg\" _src=\"http://yanxuan.nosdn.127.net/994df23b1aa0098ffaa544a1aeecae24.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bbdba951ded641604c15774c74b8bb53.jpg\" _src=\"http://yanxuan.nosdn.127.net/bbdba951ded641604c15774c74b8bb53.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/72533c3c5775fedcf06b94f94fabc5f0.jpg\" _src=\"http://yanxuan.nosdn.127.net/72533c3c5775fedcf06b94f94fabc5f0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/854bdcb9d4ece16adb5bc5751a2cad3e.jpg\" _src=\"http://yanxuan.nosdn.127.net/854bdcb9d4ece16adb5bc5751a2cad3e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e6209f21bce639b2c2b71927046a956d.jpg\" _src=\"http://yanxuan.nosdn.127.net/e6209f21bce639b2c2b71927046a956d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6a42e2905f51f6889239792d615dd467.jpg\" _src=\"http://yanxuan.nosdn.127.net/6a42e2905f51f6889239792d615dd467.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/54d45e3240736dc5e58d697c676a1d12.jpg\" _src=\"http://yanxuan.nosdn.127.net/54d45e3240736dc5e58d697c676a1d12.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/80558a43c5b91b9ec76eeb5de23fe4d2.jpg\" _src=\"http://yanxuan.nosdn.127.net/80558a43c5b91b9ec76eeb5de23fe4d2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5f379b8d7cd4a6d6dcb2826c13dcf3b3.jpg\" _src=\"http://yanxuan.nosdn.127.net/5f379b8d7cd4a6d6dcb2826c13dcf3b3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/94208d3cb011e82b3e134cbed8fda099.jpg\" _src=\"http://yanxuan.nosdn.127.net/94208d3cb011e82b3e134cbed8fda099.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ba245f1964d7b1afcca24c32c07183cc.jpg\" _src=\"http://yanxuan.nosdn.127.net/ba245f1964d7b1afcca24c32c07183cc.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e9fe6ca05da9c5e2da9c04f3a9ca56e7.jpg\" _src=\"http://yanxuan.nosdn.127.net/e9fe6ca05da9c5e2da9c04f3a9ca56e7.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '1', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/46065172b85d4bbeb649bfa4767964a6.jpg', 'http://yanxuan.nosdn.127.net/4f483526cfe3b953f403ae02049df5b9.png', '169.00', '3093', '1127179', '0.00', '限时购', '', '0.00', '0', '0', '1', '185.90', null, null, null, null);
  736. INSERT INTO `nideshop_goods` VALUES ('1128002', '1008002', '1128002', '清新趣粉系列居家地毯 青粉拼接', '0', '100', '', '清新撞色 细腻柔软', '<p><img src=\"http://yanxuan.nosdn.127.net/191b701367615b452976b4c740ef1c52.jpg\" _src=\"http://yanxuan.nosdn.127.net/191b701367615b452976b4c740ef1c52.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8f83f2a2b556d9d0b4b4a65ca76f4689.jpg\" _src=\"http://yanxuan.nosdn.127.net/8f83f2a2b556d9d0b4b4a65ca76f4689.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/119231f5f75494b2249cd14009b452aa.jpg\" _src=\"http://yanxuan.nosdn.127.net/119231f5f75494b2249cd14009b452aa.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/085c0b2b140f9b3e499209f3ca2b3b16.jpg\" _src=\"http://yanxuan.nosdn.127.net/085c0b2b140f9b3e499209f3ca2b3b16.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ac2cdba24df037dfe0704bd47c73d3e8.jpg\" _src=\"http://yanxuan.nosdn.127.net/ac2cdba24df037dfe0704bd47c73d3e8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/35def50dabd355332d47a994e29a53c4.jpg\" _src=\"http://yanxuan.nosdn.127.net/35def50dabd355332d47a994e29a53c4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0378678601a27aa2e0fea8fcd757ae51.jpg\" _src=\"http://yanxuan.nosdn.127.net/0378678601a27aa2e0fea8fcd757ae51.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4c3d214fea7c5a768c7a0f77172a70d8.jpg\" _src=\"http://yanxuan.nosdn.127.net/4c3d214fea7c5a768c7a0f77172a70d8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bec41337e525e74998290e7378f3bb8b.jpg\" _src=\"http://yanxuan.nosdn.127.net/bec41337e525e74998290e7378f3bb8b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d5d50c46c26a0c2be14d2c845a4e15c5.jpg\" _src=\"http://yanxuan.nosdn.127.net/d5d50c46c26a0c2be14d2c845a4e15c5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0c138155947879f4af0e7ce3c7d4713d.jpg\" _src=\"http://yanxuan.nosdn.127.net/0c138155947879f4af0e7ce3c7d4713d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/da7c0824e22218d320719560989d537e.jpg\" _src=\"http://yanxuan.nosdn.127.net/da7c0824e22218d320719560989d537e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6bf35a5b2a1747108cb8d225f0da227d.jpg\" _src=\"http://yanxuan.nosdn.127.net/6bf35a5b2a1747108cb8d225f0da227d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e93c3ee67c2f953fae54295b0f4a7173.jpg\" _src=\"http://yanxuan.nosdn.127.net/e93c3ee67c2f953fae54295b0f4a7173.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fa47796942f2ba1f6bf0032fe316ac27.jpg\" _src=\"http://yanxuan.nosdn.127.net/fa47796942f2ba1f6bf0032fe316ac27.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1f116e257387af4f48bf2ddb8c840132.jpg\" _src=\"http://yanxuan.nosdn.127.net/1f116e257387af4f48bf2ddb8c840132.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a756a78742cd1e018a66e40e0cf3f5ec.jpg\" _src=\"http://yanxuan.nosdn.127.net/a756a78742cd1e018a66e40e0cf3f5ec.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/567a0391d29b41c75216203f0327360d.jpg\" _src=\"http://yanxuan.nosdn.127.net/567a0391d29b41c75216203f0327360d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0e3bb469a99952ad770a1782ebabe0a3.jpg\" _src=\"http://yanxuan.nosdn.127.net/0e3bb469a99952ad770a1782ebabe0a3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/98e4edc31d260fcfdff9d74527a36361.jpg\" _src=\"http://yanxuan.nosdn.127.net/98e4edc31d260fcfdff9d74527a36361.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d8f9871f90756a1833bea06961285087.jpg\" _src=\"http://yanxuan.nosdn.127.net/d8f9871f90756a1833bea06961285087.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fa9d442de4aa9b93b48fefafe0f869b0.jpg\" _src=\"http://yanxuan.nosdn.127.net/fa9d442de4aa9b93b48fefafe0f869b0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8c3c00ea6a2f13c5ce37b6dec024edf5.jpg\" _src=\"http://yanxuan.nosdn.127.net/8c3c00ea6a2f13c5ce37b6dec024edf5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7d83a1dc525bb6aa23d456efd5a2c74c.jpg\" _src=\"http://yanxuan.nosdn.127.net/7d83a1dc525bb6aa23d456efd5a2c74c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7397347cfc3d7ce697386941201d1615.jpg\" _src=\"http://yanxuan.nosdn.127.net/7397347cfc3d7ce697386941201d1615.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8e40e07ef01e1950ddb708d6ed56eea3.jpg\" _src=\"http://yanxuan.nosdn.127.net/8e40e07ef01e1950ddb708d6ed56eea3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bb59b7f4df5d97e9ac407fe75e095e81.jpg\" _src=\"http://yanxuan.nosdn.127.net/bb59b7f4df5d97e9ac407fe75e095e81.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6660e07c91870230941f9bfe160f9f49.jpg\" _src=\"http://yanxuan.nosdn.127.net/6660e07c91870230941f9bfe160f9f49.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e40bb0099d592ca0f1335eabe43570cb.jpg\" _src=\"http://yanxuan.nosdn.127.net/e40bb0099d592ca0f1335eabe43570cb.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7310efd4551e1a851668d01733711d39.jpg\" _src=\"http://yanxuan.nosdn.127.net/7310efd4551e1a851668d01733711d39.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4c7ab57bdf16a7a88e526e82deba2879.jpg\" _src=\"http://yanxuan.nosdn.127.net/4c7ab57bdf16a7a88e526e82deba2879.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1e1a120dc4898e9e871d4005d30c7937.jpg\" _src=\"http://yanxuan.nosdn.127.net/1e1a120dc4898e9e871d4005d30c7937.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/22fe678cf2b8e594c15fba60f86b717e.jpg\" _src=\"http://yanxuan.nosdn.127.net/22fe678cf2b8e594c15fba60f86b717e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c7e4053e6340d8fc377babc65cd40823.jpg\" _src=\"http://yanxuan.nosdn.127.net/c7e4053e6340d8fc377babc65cd40823.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9ae576390b96e274b10c71104e210d33.jpg\" _src=\"http://yanxuan.nosdn.127.net/9ae576390b96e274b10c71104e210d33.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/425feec1ad943958c28edaf1504af645.jpg\" _src=\"http://yanxuan.nosdn.127.net/425feec1ad943958c28edaf1504af645.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8e8d1bd0e0277e74509d074f2a931f1c.jpg\" _src=\"http://yanxuan.nosdn.127.net/8e8d1bd0e0277e74509d074f2a931f1c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7e67f6b3d18df8ddf931b4468f35d4fd.jpg\" _src=\"http://yanxuan.nosdn.127.net/7e67f6b3d18df8ddf931b4468f35d4fd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/33951c6621e5b91ee1c1b9958f9bb57a.jpg\" _src=\"http://yanxuan.nosdn.127.net/33951c6621e5b91ee1c1b9958f9bb57a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e80772f6663a57de51494fec4369524b.jpg\" _src=\"http://yanxuan.nosdn.127.net/e80772f6663a57de51494fec4369524b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0e2516cafe760408782a8427a5015b98.jpg\" _src=\"http://yanxuan.nosdn.127.net/0e2516cafe760408782a8427a5015b98.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2fe4275c5b83193c1562e2f5dbf72442.jpg\" _src=\"http://yanxuan.nosdn.127.net/2fe4275c5b83193c1562e2f5dbf72442.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f1d4aa2f956ef90e826b50cb16db731a.jpg\" _src=\"http://yanxuan.nosdn.127.net/f1d4aa2f956ef90e826b50cb16db731a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7c9afc1b180779690891a23e9adb2265.jpg\" _src=\"http://yanxuan.nosdn.127.net/7c9afc1b180779690891a23e9adb2265.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5d4323b01083e2aa3eec9e28402b612b.jpg\" _src=\"http://yanxuan.nosdn.127.net/5d4323b01083e2aa3eec9e28402b612b.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '27', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/dbf282e81ab8b0dbc4b4ad1f4fd6d1e3.jpg', 'http://yanxuan.nosdn.127.net/a1094a808ffb3a52a6cb13565a283d98.png', '599.00', '137', '1128017', '0.00', '限时购', '', '0.00', '0', '0', '0', '658.90', null, null, null, null);
  737. INSERT INTO `nideshop_goods` VALUES ('1128010', '1008001', '1128010', '趣味粉彩单面纱布亲肤毛巾', '0', '100', '', '单面毛圈,萌动生活', '', '1', '2017-08-30 11:40:11', '5', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/18761a86131e57fdff80f33c4f49b4c6.jpg', 'http://yanxuan.nosdn.127.net/a84e8e6979f00efd9a728ed36b154753.png', '29.00', '3335', '1128063', '0.00', '限时购', '', '0.00', '0', '0', '0', '31.90', null, null, null, null);
  738. INSERT INTO `nideshop_goods` VALUES ('1128011', '1008001', '1128011', '趣味粉彩单面纱布超柔浴巾', '0', '100', '', '野兽派制造商,透气瞬吸', '', '1', '2017-08-30 11:40:11', '6', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/e5e31cc4dea24ad1d9a80d7ae080475e.jpg', 'http://yanxuan.nosdn.127.net/d6e25ec5b4ad7aa37e077ce751b56f46.png', '79.00', '2417', '1128064', '0.00', '限时购', '', '0.00', '0', '0', '0', '86.90', null, null, null, null);
  739. INSERT INTO `nideshop_goods` VALUES ('1129015', '1008001', '1129015', '阿瓦提长绒棉超柔弱捻浴巾', '0', '100', '', '瞬吸亲肤,0掉毛率', '', '1', '2017-08-30 11:40:11', '4', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/933a3af9d07b7bc0adf01ccacbe7fb02.jpg', 'http://yanxuan.nosdn.127.net/fc11a482efeece9630548d8b350e7f54.png', '89.00', '4330', '1129071', '0.00', '限时购', '', '0.00', '0', '0', '0', '97.90', null, null, null, null);
  740. INSERT INTO `nideshop_goods` VALUES ('1129016', '1008001', '1129016', '新疆阿瓦提长绒棉弱捻超柔毛巾', '0', '100', '', '瞬间吸水,亲肤不掉毛。', '', '1', '2017-08-30 11:40:11', '3', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/bd9f656b8d200eb99e5cec104d18afd2.jpg', 'http://yanxuan.nosdn.127.net/a7c7eec41194e65d64931a2d08ef4f8c.png', '29.00', '4305', '1129079', '0.00', '限时购', '', '0.00', '0', '0', '0', '31.90', null, null, null, null);
  741. INSERT INTO `nideshop_goods` VALUES ('1130037', '1008002', '1130037', '帆布丝羽绒多用坐垫', '1001000', '100', '', '柔软蓬松,透气防螨。', '<p><img src=\"http://yanxuan.nosdn.127.net/96eb609f4f459ab9c502eca7d6e7e204.jpg\" _src=\"http://yanxuan.nosdn.127.net/96eb609f4f459ab9c502eca7d6e7e204.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a86dcf95f3a56db6b7f99f35585dbf2d.jpg\" _src=\"http://yanxuan.nosdn.127.net/a86dcf95f3a56db6b7f99f35585dbf2d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bced9d39bcb740a4655ce725f4823e96.jpg\" _src=\"http://yanxuan.nosdn.127.net/bced9d39bcb740a4655ce725f4823e96.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/11213e448a23292458adc934a643c076.jpg\" _src=\"http://yanxuan.nosdn.127.net/11213e448a23292458adc934a643c076.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9116d858fd59f1ed32fc8a692dfc3fed.jpg\" _src=\"http://yanxuan.nosdn.127.net/9116d858fd59f1ed32fc8a692dfc3fed.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8b5982e9a43ccaa724f397c9e777b026.jpg\" _src=\"http://yanxuan.nosdn.127.net/8b5982e9a43ccaa724f397c9e777b026.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e4397bee1cf9589eaaf06b8fe9d0a778.jpg\" _src=\"http://yanxuan.nosdn.127.net/e4397bee1cf9589eaaf06b8fe9d0a778.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/740affd3cef0ef40378c2cb265322f15.jpg\" _src=\"http://yanxuan.nosdn.127.net/740affd3cef0ef40378c2cb265322f15.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6aeacc205ef12e2a475eb7a8e8d1eedc.jpg\" _src=\"http://yanxuan.nosdn.127.net/6aeacc205ef12e2a475eb7a8e8d1eedc.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/119709a17d08f2c1c48d95d24b34ca3c.jpg\" _src=\"http://yanxuan.nosdn.127.net/119709a17d08f2c1c48d95d24b34ca3c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8332210d4b81d04f42612fc097db259a.jpg\" _src=\"http://yanxuan.nosdn.127.net/8332210d4b81d04f42612fc097db259a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/be1775926acb0e26b6012cba7893e979.jpg\" _src=\"http://yanxuan.nosdn.127.net/be1775926acb0e26b6012cba7893e979.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6c6463b2f53c89273f1f79b22dd9e399.jpg\" _src=\"http://yanxuan.nosdn.127.net/6c6463b2f53c89273f1f79b22dd9e399.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/38ad3258ebf23df5164854fe403d1ecf.jpg\" _src=\"http://yanxuan.nosdn.127.net/38ad3258ebf23df5164854fe403d1ecf.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1dc5f238dcb73c249f813233d81156c4.jpg\" _src=\"http://yanxuan.nosdn.127.net/1dc5f238dcb73c249f813233d81156c4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bb132e2e8a254b8cbc345900f6fe3c39.jpg\" _src=\"http://yanxuan.nosdn.127.net/bb132e2e8a254b8cbc345900f6fe3c39.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0603f40fefd14ee24e83102c5f09100a.jpg\" _src=\"http://yanxuan.nosdn.127.net/0603f40fefd14ee24e83102c5f09100a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/45966f38135adc1280a667040d8e02c9.jpg\" _src=\"http://yanxuan.nosdn.127.net/45966f38135adc1280a667040d8e02c9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1064a54404b6c795eae261334697e050.jpg\" _src=\"http://yanxuan.nosdn.127.net/1064a54404b6c795eae261334697e050.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8ef89417a81ac1893c95179585bf1140.jpg\" _src=\"http://yanxuan.nosdn.127.net/8ef89417a81ac1893c95179585bf1140.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c2cd2da4d75a63ada7c655e53c223a0e.jpg\" _src=\"http://yanxuan.nosdn.127.net/c2cd2da4d75a63ada7c655e53c223a0e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e942519448a5de394885730e0e3e4694.jpg\" _src=\"http://yanxuan.nosdn.127.net/e942519448a5de394885730e0e3e4694.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d016a18c381916813c2eaf46c3f791c1.jpg\" _src=\"http://yanxuan.nosdn.127.net/d016a18c381916813c2eaf46c3f791c1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6935f94bc80c11c89c3f8a2aa02c4273.jpg\" _src=\"http://yanxuan.nosdn.127.net/6935f94bc80c11c89c3f8a2aa02c4273.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9dedb80199b09770b98fa46cd8a8752d.jpg\" _src=\"http://yanxuan.nosdn.127.net/9dedb80199b09770b98fa46cd8a8752d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f447537304e43a44b1e75272d3334899.jpg\" _src=\"http://yanxuan.nosdn.127.net/f447537304e43a44b1e75272d3334899.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/10d901511a3d5f03be68bd64dbadfe1d.jpg\" _src=\"http://yanxuan.nosdn.127.net/10d901511a3d5f03be68bd64dbadfe1d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7b03a90f7bb697a9bc6e0be9d9997b11.jpg\" _src=\"http://yanxuan.nosdn.127.net/7b03a90f7bb697a9bc6e0be9d9997b11.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/62b277f50e7cca075cd2565a4f2b4466.jpg\" _src=\"http://yanxuan.nosdn.127.net/62b277f50e7cca075cd2565a4f2b4466.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e304f8f1ea10792be9072d3c7a4a8359.jpg\" _src=\"http://yanxuan.nosdn.127.net/e304f8f1ea10792be9072d3c7a4a8359.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5d7c39350bee7fdc8bdb78a27eb83a17.jpg\" _src=\"http://yanxuan.nosdn.127.net/5d7c39350bee7fdc8bdb78a27eb83a17.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/742927f31cadc641a7b9bb3fc5eebfe3.jpg\" _src=\"http://yanxuan.nosdn.127.net/742927f31cadc641a7b9bb3fc5eebfe3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b2562d7d1a0fa4b9497e4ec719f08a8f.jpg\" _src=\"http://yanxuan.nosdn.127.net/b2562d7d1a0fa4b9497e4ec719f08a8f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/430442f4524e66347fbbf10aaf213a07.jpg\" _src=\"http://yanxuan.nosdn.127.net/430442f4524e66347fbbf10aaf213a07.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/620ec1f6387fa84f5518ad2484ebaa91.jpg\" _src=\"http://yanxuan.nosdn.127.net/620ec1f6387fa84f5518ad2484ebaa91.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/455f215b9a402ed9c0c0972c0abddbb0.jpg\" _src=\"http://yanxuan.nosdn.127.net/455f215b9a402ed9c0c0972c0abddbb0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1def5c3403bdf5cd7e11b85354542452.jpg\" _src=\"http://yanxuan.nosdn.127.net/1def5c3403bdf5cd7e11b85354542452.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/97348238ae3c27a56ff46e1b6c3deb3b.jpg\" _src=\"http://yanxuan.nosdn.127.net/97348238ae3c27a56ff46e1b6c3deb3b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3739461a5eb338a70e7d34a86ff26d1a.jpg\" _src=\"http://yanxuan.nosdn.127.net/3739461a5eb338a70e7d34a86ff26d1a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/96fae2f2cc374d459c3969e7a7cc1a83.jpg\" _src=\"http://yanxuan.nosdn.127.net/96fae2f2cc374d459c3969e7a7cc1a83.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c1654fc509c8c77e9fe4c75ffc099f24.jpg\" _src=\"http://yanxuan.nosdn.127.net/c1654fc509c8c77e9fe4c75ffc099f24.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bf95ab8945e61c7180eba1e01721b15a.jpg\" _src=\"http://yanxuan.nosdn.127.net/bf95ab8945e61c7180eba1e01721b15a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b054e088382a0cb32a529082c52745e1.jpg\" _src=\"http://yanxuan.nosdn.127.net/b054e088382a0cb32a529082c52745e1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/53d517d1ca7532cde5cc74ad2a10dc17.jpg\" _src=\"http://yanxuan.nosdn.127.net/53d517d1ca7532cde5cc74ad2a10dc17.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6222e1fd9b42422e8454cc087a0e0358.jpg\" _src=\"http://yanxuan.nosdn.127.net/6222e1fd9b42422e8454cc087a0e0358.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f8995022af1826e846b7a143e7b8b325.jpg\" _src=\"http://yanxuan.nosdn.127.net/f8995022af1826e846b7a143e7b8b325.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3a12c940956234db2f60a2b5b51d6a35.jpg\" _src=\"http://yanxuan.nosdn.127.net/3a12c940956234db2f60a2b5b51d6a35.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4be7d3058e6eec27a4be033642359535.jpg\" _src=\"http://yanxuan.nosdn.127.net/4be7d3058e6eec27a4be033642359535.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2eca2f02d4ec269cc1893876fb17511a.jpg\" _src=\"http://yanxuan.nosdn.127.net/2eca2f02d4ec269cc1893876fb17511a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cf761716e3b430f63e059a891703200e.jpg\" _src=\"http://yanxuan.nosdn.127.net/cf761716e3b430f63e059a891703200e.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '17', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/2d1f51656c0bff4989e43b17b42f7ad9.jpg', 'http://yanxuan.nosdn.127.net/19ecd7c6f6f31219cf75117238d95139.png', '39.00', '9661', '1130120', '0.00', '限时购', '', '0.00', '0', '0', '0', '42.90', null, null, null, null);
  742. INSERT INTO `nideshop_goods` VALUES ('1130038', '1017000', '1130038', '贝壳型凉感蓬松宠物窝垫', '0', '100', '', '日本面料,简约条纹', '<p><img src=\"http://yanxuan.nosdn.127.net/545ac949704206b612a27c06b3b45a7b.jpg\" _src=\"http://yanxuan.nosdn.127.net/545ac949704206b612a27c06b3b45a7b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d87c04d5b5029619c8953063b77b1d90.jpg\" _src=\"http://yanxuan.nosdn.127.net/d87c04d5b5029619c8953063b77b1d90.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/86c5aafe4ebaaf8873f058a95779a644.jpg\" _src=\"http://yanxuan.nosdn.127.net/86c5aafe4ebaaf8873f058a95779a644.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9505782ae7ad8aead0bed93bc3bef320.jpg\" _src=\"http://yanxuan.nosdn.127.net/9505782ae7ad8aead0bed93bc3bef320.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a748fa6e68989b8ff84fd52612fe8608.jpg\" _src=\"http://yanxuan.nosdn.127.net/a748fa6e68989b8ff84fd52612fe8608.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0420b8360175be459f3fb9d8b3cc248c.jpg\" _src=\"http://yanxuan.nosdn.127.net/0420b8360175be459f3fb9d8b3cc248c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/869f4247c47870c5c2c68c18128fe757.jpg\" _src=\"http://yanxuan.nosdn.127.net/869f4247c47870c5c2c68c18128fe757.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/987f1b250927a4014c32e017271a4501.jpg\" _src=\"http://yanxuan.nosdn.127.net/987f1b250927a4014c32e017271a4501.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2ad8a01ab92d5a2e4c8608ac7e8795d6.jpg\" _src=\"http://yanxuan.nosdn.127.net/2ad8a01ab92d5a2e4c8608ac7e8795d6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/525ae0c9d57c23e4ecdc580c14a7e131.jpg\" _src=\"http://yanxuan.nosdn.127.net/525ae0c9d57c23e4ecdc580c14a7e131.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/38c8db4f00f08129f273e68bd32ec198.jpg\" _src=\"http://yanxuan.nosdn.127.net/38c8db4f00f08129f273e68bd32ec198.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/761a985445ef78b90086cb6859d9bdf8.jpg\" _src=\"http://yanxuan.nosdn.127.net/761a985445ef78b90086cb6859d9bdf8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a3dd23a95041d74929be15980c98428a.jpg\" _src=\"http://yanxuan.nosdn.127.net/a3dd23a95041d74929be15980c98428a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/78f4f4d31f371afb68b0c6d3c97b2d65.jpg\" _src=\"http://yanxuan.nosdn.127.net/78f4f4d31f371afb68b0c6d3c97b2d65.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/565511c989dd547a8ab0c96b07e62f96.jpg\" _src=\"http://yanxuan.nosdn.127.net/565511c989dd547a8ab0c96b07e62f96.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c975b4b450ff0a74bd6fbecab30d9df3.jpg\" _src=\"http://yanxuan.nosdn.127.net/c975b4b450ff0a74bd6fbecab30d9df3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d20fc1e38aa5a06ad69bc29cc5830d8c.jpg\" _src=\"http://yanxuan.nosdn.127.net/d20fc1e38aa5a06ad69bc29cc5830d8c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/52d9b09959f12d763280b739b8d87dc3.jpg\" _src=\"http://yanxuan.nosdn.127.net/52d9b09959f12d763280b739b8d87dc3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c54c2b65ee0092ba1fd59ee32e02a7cb.jpg\" _src=\"http://yanxuan.nosdn.127.net/c54c2b65ee0092ba1fd59ee32e02a7cb.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7ce9a67b75be30d50c3202d5c51e2f68.jpg\" _src=\"http://yanxuan.nosdn.127.net/7ce9a67b75be30d50c3202d5c51e2f68.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7cb9425926733c9c613aa8ccdffb187a.jpg\" _src=\"http://yanxuan.nosdn.127.net/7cb9425926733c9c613aa8ccdffb187a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a9652752c245ed56b3e56113539be1b7.jpg\" _src=\"http://yanxuan.nosdn.127.net/a9652752c245ed56b3e56113539be1b7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f8224650ec0bdaa8516667c8619cc62e.jpg\" _src=\"http://yanxuan.nosdn.127.net/f8224650ec0bdaa8516667c8619cc62e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8140b6c569f59abfcccbab84eca17413.jpg\" _src=\"http://yanxuan.nosdn.127.net/8140b6c569f59abfcccbab84eca17413.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/953dcf965848117d902a47619c265a57.jpg\" _src=\"http://yanxuan.nosdn.127.net/953dcf965848117d902a47619c265a57.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/79226349a13d75000c91c3d0e0a0aee8.jpg\" _src=\"http://yanxuan.nosdn.127.net/79226349a13d75000c91c3d0e0a0aee8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a86670d0a301950c5757981e3e880ce1.jpg\" _src=\"http://yanxuan.nosdn.127.net/a86670d0a301950c5757981e3e880ce1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4c4e4f21a1a9b76b7a9518eac83137d0.jpg\" _src=\"http://yanxuan.nosdn.127.net/4c4e4f21a1a9b76b7a9518eac83137d0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/69f33bf7c070b4bd840f34c82954e37b.jpg\" _src=\"http://yanxuan.nosdn.127.net/69f33bf7c070b4bd840f34c82954e37b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f24980484da04693a1342beba9a51232.jpg\" _src=\"http://yanxuan.nosdn.127.net/f24980484da04693a1342beba9a51232.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2fdeb95ea2b3ffa3609b9af5008d8659.jpg\" _src=\"http://yanxuan.nosdn.127.net/2fdeb95ea2b3ffa3609b9af5008d8659.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7073524abd55a465000547056d4abacd.jpg\" _src=\"http://yanxuan.nosdn.127.net/7073524abd55a465000547056d4abacd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/49db4719ae509a1dda40472d2df890ed.jpg\" _src=\"http://yanxuan.nosdn.127.net/49db4719ae509a1dda40472d2df890ed.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f3e7474fd0de3ef734e36f5a7485ce0a.jpg\" _src=\"http://yanxuan.nosdn.127.net/f3e7474fd0de3ef734e36f5a7485ce0a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/31d772a387be443059342ad1449c301d.jpg\" _src=\"http://yanxuan.nosdn.127.net/31d772a387be443059342ad1449c301d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/75745fca365647ee004ba97cf6055736.jpg\" _src=\"http://yanxuan.nosdn.127.net/75745fca365647ee004ba97cf6055736.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c2fd8597c7a4e23e9b11b9d514a0a8dc.jpg\" _src=\"http://yanxuan.nosdn.127.net/c2fd8597c7a4e23e9b11b9d514a0a8dc.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c896ffccc3bed33ee0bb483ea4feebf5.jpg\" _src=\"http://yanxuan.nosdn.127.net/c896ffccc3bed33ee0bb483ea4feebf5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ea6805e0bb5330b933ce22e5f1cb2758.jpg\" _src=\"http://yanxuan.nosdn.127.net/ea6805e0bb5330b933ce22e5f1cb2758.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/554b21340d448179d1fcad2b792e5b01.jpg\" _src=\"http://yanxuan.nosdn.127.net/554b21340d448179d1fcad2b792e5b01.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cb03cc76d3e5cf17fdb76b83535b7926.jpg\" _src=\"http://yanxuan.nosdn.127.net/cb03cc76d3e5cf17fdb76b83535b7926.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ef7b14e40a2d38bafbf913db130610a5.jpg\" _src=\"http://yanxuan.nosdn.127.net/ef7b14e40a2d38bafbf913db130610a5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3990b39fd45879eebb3c9554c41fcc38.jpg\" _src=\"http://yanxuan.nosdn.127.net/3990b39fd45879eebb3c9554c41fcc38.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/68a096edd4be2ab309082b64c6a3b77c.jpg\" _src=\"http://yanxuan.nosdn.127.net/68a096edd4be2ab309082b64c6a3b77c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b59e89067c7cda1c96d8861f1be43921.jpg\" _src=\"http://yanxuan.nosdn.127.net/b59e89067c7cda1c96d8861f1be43921.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b50717ecab23f410a4c4e48c8d947903.jpg\" _src=\"http://yanxuan.nosdn.127.net/b50717ecab23f410a4c4e48c8d947903.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9ad6c023319424b6338e30fb0080a429.jpg\" _src=\"http://yanxuan.nosdn.127.net/9ad6c023319424b6338e30fb0080a429.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1b275c93292ceda05a951fdead26e1b9.jpg\" _src=\"http://yanxuan.nosdn.127.net/1b275c93292ceda05a951fdead26e1b9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e59adfa080fdfd074af2190f59542951.jpg\" _src=\"http://yanxuan.nosdn.127.net/e59adfa080fdfd074af2190f59542951.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f6fb13653c84f361996a99ab0aa25959.jpg\" _src=\"http://yanxuan.nosdn.127.net/f6fb13653c84f361996a99ab0aa25959.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c832f7d3ea6b43bf04be53261405a049.jpg\" _src=\"http://yanxuan.nosdn.127.net/c832f7d3ea6b43bf04be53261405a049.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4c3f3393a1379de835849999b81b3e12.jpg\" _src=\"http://yanxuan.nosdn.127.net/4c3f3393a1379de835849999b81b3e12.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/905d0724aaed70d92ab9a55b89260b9b.jpg\" _src=\"http://yanxuan.nosdn.127.net/905d0724aaed70d92ab9a55b89260b9b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2a7031eadda74fc87fd936a2086e1f93.jpg\" _src=\"http://yanxuan.nosdn.127.net/2a7031eadda74fc87fd936a2086e1f93.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/dca2e02343e1acb7335664673bd81ddc.jpg\" _src=\"http://yanxuan.nosdn.127.net/dca2e02343e1acb7335664673bd81ddc.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '1', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/95925f4e46eec70f6c8e6105ba54c590.jpg', 'http://yanxuan.nosdn.127.net/4d77296e02896675558f1a8a83742132.png', '89.00', '246', '1130122', '0.00', '限时购', '', '0.00', '0', '0', '0', '97.90', null, null, null, null);
  743. INSERT INTO `nideshop_goods` VALUES ('1130039', '1017000', '1130039', '房型封闭式凉感条纹宠物窝', '0', '100', '', '日式面料,四季可用', '<p><img src=\"http://yanxuan.nosdn.127.net/2e60bc695ec19eb5f68c0d323f315986.jpg\" _src=\"http://yanxuan.nosdn.127.net/2e60bc695ec19eb5f68c0d323f315986.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/47f959a579fccb31dd8f43f378a4642c.jpg\" _src=\"http://yanxuan.nosdn.127.net/47f959a579fccb31dd8f43f378a4642c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fd69887384e3a47c48f3a96a89dbc860.jpg\" _src=\"http://yanxuan.nosdn.127.net/fd69887384e3a47c48f3a96a89dbc860.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/df0f383d44bf5a434d495554dada9d68.jpg\" _src=\"http://yanxuan.nosdn.127.net/df0f383d44bf5a434d495554dada9d68.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5666f8baee48295b10326d7c4bbaf5f6.jpg\" _src=\"http://yanxuan.nosdn.127.net/5666f8baee48295b10326d7c4bbaf5f6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8d67ba2c88a98f4c128b18a48d0813f0.jpg\" _src=\"http://yanxuan.nosdn.127.net/8d67ba2c88a98f4c128b18a48d0813f0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/08de797e6dcb46246731e4f27d53aed4.jpg\" _src=\"http://yanxuan.nosdn.127.net/08de797e6dcb46246731e4f27d53aed4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/835ab4094a214b31c9a38690188c6f18.jpg\" _src=\"http://yanxuan.nosdn.127.net/835ab4094a214b31c9a38690188c6f18.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/00710ccdd9545eff77c5b48ffc12ce35.jpg\" _src=\"http://yanxuan.nosdn.127.net/00710ccdd9545eff77c5b48ffc12ce35.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fe0e441beb8db4ebd61f88f8666bb01d.jpg\" _src=\"http://yanxuan.nosdn.127.net/fe0e441beb8db4ebd61f88f8666bb01d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/96523bb2d102ca5bd4c039625ac787ea.jpg\" _src=\"http://yanxuan.nosdn.127.net/96523bb2d102ca5bd4c039625ac787ea.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e4aafa566ae813f6209b7cb191bac318.jpg\" _src=\"http://yanxuan.nosdn.127.net/e4aafa566ae813f6209b7cb191bac318.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cc73bce3f2615a7d4940df0069d2a371.jpg\" _src=\"http://yanxuan.nosdn.127.net/cc73bce3f2615a7d4940df0069d2a371.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d6b9fafaaa8f407c1e95037632a6b527.jpg\" _src=\"http://yanxuan.nosdn.127.net/d6b9fafaaa8f407c1e95037632a6b527.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f047a0b9ef5adb0cb3d279d943ba67ea.jpg\" _src=\"http://yanxuan.nosdn.127.net/f047a0b9ef5adb0cb3d279d943ba67ea.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8fd45ae1c96714c2f708f6c90a820dc3.jpg\" _src=\"http://yanxuan.nosdn.127.net/8fd45ae1c96714c2f708f6c90a820dc3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1184cc1635b79cea484683d89e1dc107.jpg\" _src=\"http://yanxuan.nosdn.127.net/1184cc1635b79cea484683d89e1dc107.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1c4bcf07a8c152006aeea1dbcef9f6e0.jpg\" _src=\"http://yanxuan.nosdn.127.net/1c4bcf07a8c152006aeea1dbcef9f6e0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8fc099d360d6eba103ab35fb79ad1989.jpg\" _src=\"http://yanxuan.nosdn.127.net/8fc099d360d6eba103ab35fb79ad1989.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/411b4738ea1a8676bb02f6dd150455b4.jpg\" _src=\"http://yanxuan.nosdn.127.net/411b4738ea1a8676bb02f6dd150455b4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9c80b63dad938193a29d5d79a2b279b9.jpg\" _src=\"http://yanxuan.nosdn.127.net/9c80b63dad938193a29d5d79a2b279b9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6c479654ce5c8308ffa850b2baabff4f.jpg\" _src=\"http://yanxuan.nosdn.127.net/6c479654ce5c8308ffa850b2baabff4f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3bb717930ebf0bc908f37b6e25f76a90.jpg\" _src=\"http://yanxuan.nosdn.127.net/3bb717930ebf0bc908f37b6e25f76a90.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8841053574ac6ec5123c8ecc7f31016a.jpg\" _src=\"http://yanxuan.nosdn.127.net/8841053574ac6ec5123c8ecc7f31016a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/87f2f7b4c08bec75c6d334f08170e504.jpg\" _src=\"http://yanxuan.nosdn.127.net/87f2f7b4c08bec75c6d334f08170e504.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0bb5731d33e08ed46b42914e287aa130.jpg\" _src=\"http://yanxuan.nosdn.127.net/0bb5731d33e08ed46b42914e287aa130.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0a1b7ec870bc558e8d58827832d4cc2f.jpg\" _src=\"http://yanxuan.nosdn.127.net/0a1b7ec870bc558e8d58827832d4cc2f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/67626b790405d8bda762bb7b71abad72.jpg\" _src=\"http://yanxuan.nosdn.127.net/67626b790405d8bda762bb7b71abad72.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e397ec0bc1e138759b77dd17b466b565.jpg\" _src=\"http://yanxuan.nosdn.127.net/e397ec0bc1e138759b77dd17b466b565.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5541fc204f73f4e2b5800ca1e20c74ca.jpg\" _src=\"http://yanxuan.nosdn.127.net/5541fc204f73f4e2b5800ca1e20c74ca.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4c87ed19400338de755d8c9a263781b7.jpg\" _src=\"http://yanxuan.nosdn.127.net/4c87ed19400338de755d8c9a263781b7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/317595b21489f43d0bdcdf04b498b453.jpg\" _src=\"http://yanxuan.nosdn.127.net/317595b21489f43d0bdcdf04b498b453.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cfe2a70989e10e1c526193807b2a5156.jpg\" _src=\"http://yanxuan.nosdn.127.net/cfe2a70989e10e1c526193807b2a5156.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d4776216f6490fedc6a660d787895915.jpg\" _src=\"http://yanxuan.nosdn.127.net/d4776216f6490fedc6a660d787895915.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/aa976e6d0460daa3f22d4a9ddbb85655.jpg\" _src=\"http://yanxuan.nosdn.127.net/aa976e6d0460daa3f22d4a9ddbb85655.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0554b5974d419d2d398bb4abfc3c58fd.jpg\" _src=\"http://yanxuan.nosdn.127.net/0554b5974d419d2d398bb4abfc3c58fd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d2cc642bcb1f97d742bc6a2e51ec4278.jpg\" _src=\"http://yanxuan.nosdn.127.net/d2cc642bcb1f97d742bc6a2e51ec4278.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/79c4e4d513f40805a51dd7bf31e34cdf.jpg\" _src=\"http://yanxuan.nosdn.127.net/79c4e4d513f40805a51dd7bf31e34cdf.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/155589dad685c2dac737bd52bf6578d6.jpg\" _src=\"http://yanxuan.nosdn.127.net/155589dad685c2dac737bd52bf6578d6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6e25b510ff8c50488509aba0555dcabf.jpg\" _src=\"http://yanxuan.nosdn.127.net/6e25b510ff8c50488509aba0555dcabf.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e0ab6ec0bc3217f56490672543bcbe3b.jpg\" _src=\"http://yanxuan.nosdn.127.net/e0ab6ec0bc3217f56490672543bcbe3b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a3541f1cf3c2d8a10d52dea8fc804562.jpg\" _src=\"http://yanxuan.nosdn.127.net/a3541f1cf3c2d8a10d52dea8fc804562.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9bf9a5ece1d5e1b3fb6002fc4a33c12b.jpg\" _src=\"http://yanxuan.nosdn.127.net/9bf9a5ece1d5e1b3fb6002fc4a33c12b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fccf95a9a92cc4ef478ec43cb5ccc5c1.jpg\" _src=\"http://yanxuan.nosdn.127.net/fccf95a9a92cc4ef478ec43cb5ccc5c1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b8cd32d1dacedd385d80fc2a9a186306.jpg\" _src=\"http://yanxuan.nosdn.127.net/b8cd32d1dacedd385d80fc2a9a186306.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b751308cbb3ebbaa919994889bedd8ad.jpg\" _src=\"http://yanxuan.nosdn.127.net/b751308cbb3ebbaa919994889bedd8ad.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0a9a8fa5c7530885ac59b14fde6e43f8.jpg\" _src=\"http://yanxuan.nosdn.127.net/0a9a8fa5c7530885ac59b14fde6e43f8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3860b5c02fc81d76da85d952ea6afd49.jpg\" _src=\"http://yanxuan.nosdn.127.net/3860b5c02fc81d76da85d952ea6afd49.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3dc6361930475090bb701f0b0594e89b.jpg\" _src=\"http://yanxuan.nosdn.127.net/3dc6361930475090bb701f0b0594e89b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/236950202693dd70bd6d0d441a5b1887.jpg\" _src=\"http://yanxuan.nosdn.127.net/236950202693dd70bd6d0d441a5b1887.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0968d338c1dd5b630c8d9c36bcc6bfc5.jpg\" _src=\"http://yanxuan.nosdn.127.net/0968d338c1dd5b630c8d9c36bcc6bfc5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6160c1cf012984fdfce72143a4229bca.jpg\" _src=\"http://yanxuan.nosdn.127.net/6160c1cf012984fdfce72143a4229bca.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7c92c4834d33b34a133365c6b790270a.jpg\" _src=\"http://yanxuan.nosdn.127.net/7c92c4834d33b34a133365c6b790270a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/83dad41c5b7b09e973d6e60c18e8b3ac.jpg\" _src=\"http://yanxuan.nosdn.127.net/83dad41c5b7b09e973d6e60c18e8b3ac.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/27ef4ef4212b48031865533d538db321.jpg\" _src=\"http://yanxuan.nosdn.127.net/27ef4ef4212b48031865533d538db321.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e57d45af1e54c2f408aa96493e7e15b9.jpg\" _src=\"http://yanxuan.nosdn.127.net/e57d45af1e54c2f408aa96493e7e15b9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8c9ebfcc5539e4cee23b77a0613d1208.jpg\" _src=\"http://yanxuan.nosdn.127.net/8c9ebfcc5539e4cee23b77a0613d1208.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/959e2bbd613279b43e42046acf3408f6.jpg\" _src=\"http://yanxuan.nosdn.127.net/959e2bbd613279b43e42046acf3408f6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5b9293e40c5ff4d38feb97267c5fe6f9.jpg\" _src=\"http://yanxuan.nosdn.127.net/5b9293e40c5ff4d38feb97267c5fe6f9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bdb0cbd93e4b12d14d93be7d7263f8ab.jpg\" _src=\"http://yanxuan.nosdn.127.net/bdb0cbd93e4b12d14d93be7d7263f8ab.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '3', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/54e00407a82fab70a369c79c79e38b51.jpg', 'http://yanxuan.nosdn.127.net/03c73e1f1ce1d2365e83b3230e507030.png', '89.00', '312', '1130124', '0.00', '限时购', '', '0.00', '0', '0', '0', '97.90', null, null, null, null);
  744. INSERT INTO `nideshop_goods` VALUES ('1130041', '1008002', '1130041', '皮毛一体多用长毛坐垫', '0', '100', '', '澳洲羊毛的细腻触感', '<p><img src=\"http://yanxuan.nosdn.127.net/a83b7218bebd4a83c0b9f6f8a5ea6d08.jpg\" _src=\"http://yanxuan.nosdn.127.net/a83b7218bebd4a83c0b9f6f8a5ea6d08.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7eb4d058e83cd9b6aadf5c20c63bcb1e.jpg\" _src=\"http://yanxuan.nosdn.127.net/7eb4d058e83cd9b6aadf5c20c63bcb1e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/731f44716c3c585f563196c887544f52.jpg\" _src=\"http://yanxuan.nosdn.127.net/731f44716c3c585f563196c887544f52.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/59afb77cc310a6fde3eabd6401e8bab1.jpg\" _src=\"http://yanxuan.nosdn.127.net/59afb77cc310a6fde3eabd6401e8bab1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/db3c78a5adad2a0ea8d219083e8547b4.jpg\" _src=\"http://yanxuan.nosdn.127.net/db3c78a5adad2a0ea8d219083e8547b4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/267cc4ac41d6632aec5b18e2026739dc.jpg\" _src=\"http://yanxuan.nosdn.127.net/267cc4ac41d6632aec5b18e2026739dc.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/76a367af57d38c0bc77086e784c2b1d4.jpg\" _src=\"http://yanxuan.nosdn.127.net/76a367af57d38c0bc77086e784c2b1d4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c092b3925ee7b5b7dbea29c528ad8db8.jpg\" _src=\"http://yanxuan.nosdn.127.net/c092b3925ee7b5b7dbea29c528ad8db8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/aac2f3d5806016fb150d85bebc93b2e7.jpg\" _src=\"http://yanxuan.nosdn.127.net/aac2f3d5806016fb150d85bebc93b2e7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9cfeb9a9bfcf4338db92e6d8709aef44.jpg\" _src=\"http://yanxuan.nosdn.127.net/9cfeb9a9bfcf4338db92e6d8709aef44.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/453d3f8a6e61298886c3fa4361b59605.jpg\" _src=\"http://yanxuan.nosdn.127.net/453d3f8a6e61298886c3fa4361b59605.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d25fcc0a95baeba59f30b59afa3ff159.jpg\" _src=\"http://yanxuan.nosdn.127.net/d25fcc0a95baeba59f30b59afa3ff159.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1ee00ea5c06c29973db9cf3c499ef0ba.jpg\" _src=\"http://yanxuan.nosdn.127.net/1ee00ea5c06c29973db9cf3c499ef0ba.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/23c51b8a7d25e88cc510609363f254a1.jpg\" _src=\"http://yanxuan.nosdn.127.net/23c51b8a7d25e88cc510609363f254a1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/07a632e4319a4cc45df6404975a4856a.jpg\" _src=\"http://yanxuan.nosdn.127.net/07a632e4319a4cc45df6404975a4856a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8f20bda3dd2f724c3871226efc8ab3e1.jpg\" _src=\"http://yanxuan.nosdn.127.net/8f20bda3dd2f724c3871226efc8ab3e1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9e237eaaad9484fa1ab1f4a8050df712.jpg\" _src=\"http://yanxuan.nosdn.127.net/9e237eaaad9484fa1ab1f4a8050df712.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/68be7318cc3708254004b1f25abca889.jpg\" _src=\"http://yanxuan.nosdn.127.net/68be7318cc3708254004b1f25abca889.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c0aabf924bbb70486bb38bdf0fe0b9ef.jpg\" _src=\"http://yanxuan.nosdn.127.net/c0aabf924bbb70486bb38bdf0fe0b9ef.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/938abacde4b46e5fce40c8cb6b5a31f9.jpg\" _src=\"http://yanxuan.nosdn.127.net/938abacde4b46e5fce40c8cb6b5a31f9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/560dc26811c85df2a81425ccc80f2daf.jpg\" _src=\"http://yanxuan.nosdn.127.net/560dc26811c85df2a81425ccc80f2daf.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ea86c3ab570b110f24322dc88a2bf67c.jpg\" _src=\"http://yanxuan.nosdn.127.net/ea86c3ab570b110f24322dc88a2bf67c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/20b35a848e5b3e68039d8825ebaf0a92.jpg\" _src=\"http://yanxuan.nosdn.127.net/20b35a848e5b3e68039d8825ebaf0a92.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/613568156bb735d4e826fadf9b14f30a.jpg\" _src=\"http://yanxuan.nosdn.127.net/613568156bb735d4e826fadf9b14f30a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9c2626064e1a840a3fd0d8937092a2a2.jpg\" _src=\"http://yanxuan.nosdn.127.net/9c2626064e1a840a3fd0d8937092a2a2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4710cebed0fec2581f6c9d7a0ad35f4e.jpg\" _src=\"http://yanxuan.nosdn.127.net/4710cebed0fec2581f6c9d7a0ad35f4e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ab23943bde5aee5a2f4db6305a638d06.jpg\" _src=\"http://yanxuan.nosdn.127.net/ab23943bde5aee5a2f4db6305a638d06.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7f1722c1d44e6791a239d20ae2a84cb0.jpg\" _src=\"http://yanxuan.nosdn.127.net/7f1722c1d44e6791a239d20ae2a84cb0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ec18f626b235961bba578d8726ab5d80.jpg\" _src=\"http://yanxuan.nosdn.127.net/ec18f626b235961bba578d8726ab5d80.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f7c162a729f465edd62b2489af405820.jpg\" _src=\"http://yanxuan.nosdn.127.net/f7c162a729f465edd62b2489af405820.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/de81035e3a2a44ad0420d25b374b248a.jpg\" _src=\"http://yanxuan.nosdn.127.net/de81035e3a2a44ad0420d25b374b248a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/92fcfcee4d8a828fcbda97ecd4ac7c61.jpg\" _src=\"http://yanxuan.nosdn.127.net/92fcfcee4d8a828fcbda97ecd4ac7c61.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c98e8d8abc2f97df7fa1ed3e8a19e793.jpg\" _src=\"http://yanxuan.nosdn.127.net/c98e8d8abc2f97df7fa1ed3e8a19e793.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/505355f028aafae9ac04ef604c46a89d.jpg\" _src=\"http://yanxuan.nosdn.127.net/505355f028aafae9ac04ef604c46a89d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3439e5f1fce7f602ae8fabce64e3bafa.jpg\" _src=\"http://yanxuan.nosdn.127.net/3439e5f1fce7f602ae8fabce64e3bafa.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2ceea236ef9f0b2198dfce82e9265c06.jpg\" _src=\"http://yanxuan.nosdn.127.net/2ceea236ef9f0b2198dfce82e9265c06.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/784fe3f5f7fdeebdb26b2dab8542d1f9.jpg\" _src=\"http://yanxuan.nosdn.127.net/784fe3f5f7fdeebdb26b2dab8542d1f9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/15e4f99d5d272b0680868d2007d64382.jpg\" _src=\"http://yanxuan.nosdn.127.net/15e4f99d5d272b0680868d2007d64382.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/99c09fe7b0d3ca49a81c7df0cc0a9dc1.jpg\" _src=\"http://yanxuan.nosdn.127.net/99c09fe7b0d3ca49a81c7df0cc0a9dc1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/65c12643b55584e3e0474292c42088ae.jpg\" _src=\"http://yanxuan.nosdn.127.net/65c12643b55584e3e0474292c42088ae.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4d8d75b4b195d6086a44f2ee6d906d12.jpg\" _src=\"http://yanxuan.nosdn.127.net/4d8d75b4b195d6086a44f2ee6d906d12.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c52456cd1b25174f0222273b7394a5b7.jpg\" _src=\"http://yanxuan.nosdn.127.net/c52456cd1b25174f0222273b7394a5b7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a089ad7a18777861c80d185b090dedc9.jpg\" _src=\"http://yanxuan.nosdn.127.net/a089ad7a18777861c80d185b090dedc9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/671ddba19da9b13492dbb5e3126fc018.jpg\" _src=\"http://yanxuan.nosdn.127.net/671ddba19da9b13492dbb5e3126fc018.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3f60ed6e112c17e1ddbb301181477e8d.jpg\" _src=\"http://yanxuan.nosdn.127.net/3f60ed6e112c17e1ddbb301181477e8d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b2a5a06bac71ceb645b47a322bef9588.jpg\" _src=\"http://yanxuan.nosdn.127.net/b2a5a06bac71ceb645b47a322bef9588.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f612db88ffb6d1b7287039c8d3aee82d.jpg\" _src=\"http://yanxuan.nosdn.127.net/f612db88ffb6d1b7287039c8d3aee82d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/27daed7f1faba0f42c1b0987eca43e1a.jpg\" _src=\"http://yanxuan.nosdn.127.net/27daed7f1faba0f42c1b0987eca43e1a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/20a180e85c13f5ece01875ad91842193.jpg\" _src=\"http://yanxuan.nosdn.127.net/20a180e85c13f5ece01875ad91842193.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8d42ca472ca07af1e8037673a2d1159e.jpg\" _src=\"http://yanxuan.nosdn.127.net/8d42ca472ca07af1e8037673a2d1159e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6b161c4bf4b6937ed473449b21c61b8c.jpg\" _src=\"http://yanxuan.nosdn.127.net/6b161c4bf4b6937ed473449b21c61b8c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/76b268744bf751b5783ada179c343474.jpg\" _src=\"http://yanxuan.nosdn.127.net/76b268744bf751b5783ada179c343474.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/18606e0a3c59f2a26585fbdd6a5dcedd.jpg\" _src=\"http://yanxuan.nosdn.127.net/18606e0a3c59f2a26585fbdd6a5dcedd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8636692d4819117b12b27f77506562d4.jpg\" _src=\"http://yanxuan.nosdn.127.net/8636692d4819117b12b27f77506562d4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b8d7e96b6cf7fc8dd7a4b9136c9c9c37.jpg\" _src=\"http://yanxuan.nosdn.127.net/b8d7e96b6cf7fc8dd7a4b9136c9c9c37.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a69f5909a0ebf3450db5117530fbe339.jpg\" _src=\"http://yanxuan.nosdn.127.net/a69f5909a0ebf3450db5117530fbe339.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/00e9909b758d7585ac99423105b6d4a9.jpg\" _src=\"http://yanxuan.nosdn.127.net/00e9909b758d7585ac99423105b6d4a9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2ba5974ae02618ba26ff2bb17f3f13ad.jpg\" _src=\"http://yanxuan.nosdn.127.net/2ba5974ae02618ba26ff2bb17f3f13ad.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9bea1ce19478453bbbe46607b7a7880c.jpg\" _src=\"http://yanxuan.nosdn.127.net/9bea1ce19478453bbbe46607b7a7880c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ec70f25fdeab6b03b4b8f01dc070f5d4.jpg\" _src=\"http://yanxuan.nosdn.127.net/ec70f25fdeab6b03b4b8f01dc070f5d4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/50bbfa868ba0fc8d424bf1ec82f78ac6.jpg\" _src=\"http://yanxuan.nosdn.127.net/50bbfa868ba0fc8d424bf1ec82f78ac6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b634157638fba9765dd10caf729e27e0.jpg\" _src=\"http://yanxuan.nosdn.127.net/b634157638fba9765dd10caf729e27e0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/79ccb6cc4a76e2b69976d3f279539b94.jpg\" _src=\"http://yanxuan.nosdn.127.net/79ccb6cc4a76e2b69976d3f279539b94.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '19', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/a1f9e49a91ffda1505501d5015f30cda.jpg', 'http://yanxuan.nosdn.127.net/442b9d99c0e7f39efd7967e0e5987374.png', '109.00', '4383', '1130127', '0.00', '限时购', '', '0.00', '0', '0', '0', '119.90', null, null, null, null);
  745. INSERT INTO `nideshop_goods` VALUES ('1130042', '1008002', '1130042', '皮毛一体多用单张长毛皮垫', '0', '100', '', '盖毯、沙发垫、椅垫、地垫', '<p><img src=\"http://yanxuan.nosdn.127.net/d4ace79c311683de546aba0830b13cef.jpg\" _src=\"http://yanxuan.nosdn.127.net/d4ace79c311683de546aba0830b13cef.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/18f00b15f815b2d3b37f2348f51ce341.jpg\" _src=\"http://yanxuan.nosdn.127.net/18f00b15f815b2d3b37f2348f51ce341.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a17fcbf654cc3a60c107555af325f0fe.jpg\" _src=\"http://yanxuan.nosdn.127.net/a17fcbf654cc3a60c107555af325f0fe.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6feee80476170267af6d71cdfc0b37dc.jpg\" _src=\"http://yanxuan.nosdn.127.net/6feee80476170267af6d71cdfc0b37dc.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/124b182a0a67835b4200cff8176c2b02.jpg\" _src=\"http://yanxuan.nosdn.127.net/124b182a0a67835b4200cff8176c2b02.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bd74be4a87738afaa04399b4d6d9a870.jpg\" _src=\"http://yanxuan.nosdn.127.net/bd74be4a87738afaa04399b4d6d9a870.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e556cbed463186c4bd99726067b923af.jpg\" _src=\"http://yanxuan.nosdn.127.net/e556cbed463186c4bd99726067b923af.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/20688f897c671755758786d3040b5c07.jpg\" _src=\"http://yanxuan.nosdn.127.net/20688f897c671755758786d3040b5c07.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/260894bbf0796d65bebe0b8af28b6c95.jpg\" _src=\"http://yanxuan.nosdn.127.net/260894bbf0796d65bebe0b8af28b6c95.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/56c59db0a7a2edb57f79cd4ce4725ebd.jpg\" _src=\"http://yanxuan.nosdn.127.net/56c59db0a7a2edb57f79cd4ce4725ebd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f9abac8c992347562001de711510bb03.jpg\" _src=\"http://yanxuan.nosdn.127.net/f9abac8c992347562001de711510bb03.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1dfd5efde1a9607ad69344f3feb07cae.jpg\" _src=\"http://yanxuan.nosdn.127.net/1dfd5efde1a9607ad69344f3feb07cae.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5563d9a3bcb3063e35ff0a04ea92e0f2.jpg\" _src=\"http://yanxuan.nosdn.127.net/5563d9a3bcb3063e35ff0a04ea92e0f2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7106f4f4495f0c3aea5174855ce2e54b.jpg\" _src=\"http://yanxuan.nosdn.127.net/7106f4f4495f0c3aea5174855ce2e54b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/da4e5459ca9ce74f3ed0ff5c696d2893.jpg\" _src=\"http://yanxuan.nosdn.127.net/da4e5459ca9ce74f3ed0ff5c696d2893.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e9b673bcc593d748b37a81edea189219.jpg\" _src=\"http://yanxuan.nosdn.127.net/e9b673bcc593d748b37a81edea189219.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a72abb429df56c56bbe23b76f9b75204.jpg\" _src=\"http://yanxuan.nosdn.127.net/a72abb429df56c56bbe23b76f9b75204.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cb1ba0a44c42710e55d6237a34d34ed6.jpg\" _src=\"http://yanxuan.nosdn.127.net/cb1ba0a44c42710e55d6237a34d34ed6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/370e417d42332266cc31245eef4e2829.jpg\" _src=\"http://yanxuan.nosdn.127.net/370e417d42332266cc31245eef4e2829.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/604f40c00f0529e948a6f6823fe3f8e5.jpg\" _src=\"http://yanxuan.nosdn.127.net/604f40c00f0529e948a6f6823fe3f8e5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b9ad179d3795a8ebd43f5c9572ba2164.jpg\" _src=\"http://yanxuan.nosdn.127.net/b9ad179d3795a8ebd43f5c9572ba2164.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2cd302f653917f33d9a2d311599ed4f7.jpg\" _src=\"http://yanxuan.nosdn.127.net/2cd302f653917f33d9a2d311599ed4f7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/da22ec1b12867fb95fd7614a7736f76c.jpg\" _src=\"http://yanxuan.nosdn.127.net/da22ec1b12867fb95fd7614a7736f76c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3671bc562ca4d94dc9b87ad90de08ef3.jpg\" _src=\"http://yanxuan.nosdn.127.net/3671bc562ca4d94dc9b87ad90de08ef3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/884bb79eb13e38ded605375476cc07e2.jpg\" _src=\"http://yanxuan.nosdn.127.net/884bb79eb13e38ded605375476cc07e2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0f7fb86caeb445cf7eaf060f1df33383.jpg\" _src=\"http://yanxuan.nosdn.127.net/0f7fb86caeb445cf7eaf060f1df33383.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/90680bb4193443696a79af88cc5786a0.jpg\" _src=\"http://yanxuan.nosdn.127.net/90680bb4193443696a79af88cc5786a0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ff03648c6839c642086a35143a0b5059.jpg\" _src=\"http://yanxuan.nosdn.127.net/ff03648c6839c642086a35143a0b5059.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f276b0dd0ca7fcdb576457a46eae4ff3.jpg\" _src=\"http://yanxuan.nosdn.127.net/f276b0dd0ca7fcdb576457a46eae4ff3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c7ec5147aee4c483754a957969029eb2.jpg\" _src=\"http://yanxuan.nosdn.127.net/c7ec5147aee4c483754a957969029eb2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c26d9ad8701cc643cbfc6f69177791bc.jpg\" _src=\"http://yanxuan.nosdn.127.net/c26d9ad8701cc643cbfc6f69177791bc.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/55f4129b1fbcc20d6a0b9e2362043cb5.jpg\" _src=\"http://yanxuan.nosdn.127.net/55f4129b1fbcc20d6a0b9e2362043cb5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/02770843341ed31eabb0ddadc5526c52.jpg\" _src=\"http://yanxuan.nosdn.127.net/02770843341ed31eabb0ddadc5526c52.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/dd815b745f3c22fa4cff373d41943a86.jpg\" _src=\"http://yanxuan.nosdn.127.net/dd815b745f3c22fa4cff373d41943a86.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/480e0f3996285f44e368a73e6c5fe47d.jpg\" _src=\"http://yanxuan.nosdn.127.net/480e0f3996285f44e368a73e6c5fe47d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/264ee5efd645ca38168ad3bef5496cc5.jpg\" _src=\"http://yanxuan.nosdn.127.net/264ee5efd645ca38168ad3bef5496cc5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c46826b7d93342f359a818e80ec44765.jpg\" _src=\"http://yanxuan.nosdn.127.net/c46826b7d93342f359a818e80ec44765.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/aaade386233b7b54edadb80675494918.jpg\" _src=\"http://yanxuan.nosdn.127.net/aaade386233b7b54edadb80675494918.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/848aac16cd9d30ce840deb70389c907b.jpg\" _src=\"http://yanxuan.nosdn.127.net/848aac16cd9d30ce840deb70389c907b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c50458c6772905734ff3e7ca1bce9978.jpg\" _src=\"http://yanxuan.nosdn.127.net/c50458c6772905734ff3e7ca1bce9978.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/61834d14a5d1d2b77ac92e1baca558c6.jpg\" _src=\"http://yanxuan.nosdn.127.net/61834d14a5d1d2b77ac92e1baca558c6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/56ca8b2bc8f4b5ef00b2f87939a11602.jpg\" _src=\"http://yanxuan.nosdn.127.net/56ca8b2bc8f4b5ef00b2f87939a11602.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5cb834323e30c14d86a4c1cc9b84d894.jpg\" _src=\"http://yanxuan.nosdn.127.net/5cb834323e30c14d86a4c1cc9b84d894.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/85e5f74e7205a9328209ca25be550598.jpg\" _src=\"http://yanxuan.nosdn.127.net/85e5f74e7205a9328209ca25be550598.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0ea202d5a703a4291495f5c0f83bed73.jpg\" _src=\"http://yanxuan.nosdn.127.net/0ea202d5a703a4291495f5c0f83bed73.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bf7433c7f8a437cf93ef90d1431adb57.jpg\" _src=\"http://yanxuan.nosdn.127.net/bf7433c7f8a437cf93ef90d1431adb57.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fbeddf135c0fe1f0ecfae5c6c057ea00.jpg\" _src=\"http://yanxuan.nosdn.127.net/fbeddf135c0fe1f0ecfae5c6c057ea00.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/66b9e3c4986788281dece847560367d9.jpg\" _src=\"http://yanxuan.nosdn.127.net/66b9e3c4986788281dece847560367d9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9e5d979ede709143d5f0f852855768c3.jpg\" _src=\"http://yanxuan.nosdn.127.net/9e5d979ede709143d5f0f852855768c3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ce0a7f7bb447aa5148ecd03a7555c820.jpg\" _src=\"http://yanxuan.nosdn.127.net/ce0a7f7bb447aa5148ecd03a7555c820.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7e6b8abe385df7425ade75210724ffcc.jpg\" _src=\"http://yanxuan.nosdn.127.net/7e6b8abe385df7425ade75210724ffcc.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bb3266c177f530869f44f1eaaf0b2bb7.jpg\" _src=\"http://yanxuan.nosdn.127.net/bb3266c177f530869f44f1eaaf0b2bb7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ced47c9582a9353dc71d668467067b9e.jpg\" _src=\"http://yanxuan.nosdn.127.net/ced47c9582a9353dc71d668467067b9e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ae6270545f82ef2bee47fb0fa3d15e04.jpg\" _src=\"http://yanxuan.nosdn.127.net/ae6270545f82ef2bee47fb0fa3d15e04.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/75d28b0323f8b9586d0339ab881c4e04.jpg\" _src=\"http://yanxuan.nosdn.127.net/75d28b0323f8b9586d0339ab881c4e04.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d7750e85464204a7c57f50689eec1db4.jpg\" _src=\"http://yanxuan.nosdn.127.net/d7750e85464204a7c57f50689eec1db4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/373138262298b9c59e33a7cc3fe2f1e1.jpg\" _src=\"http://yanxuan.nosdn.127.net/373138262298b9c59e33a7cc3fe2f1e1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f39bae90e169f4e5417e0be5c66ad4df.jpg\" _src=\"http://yanxuan.nosdn.127.net/f39bae90e169f4e5417e0be5c66ad4df.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4f16ebd2501372da0d4b3e4e516df3fd.jpg\" _src=\"http://yanxuan.nosdn.127.net/4f16ebd2501372da0d4b3e4e516df3fd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f925d64a68d213867ceafc1211d59250.jpg\" _src=\"http://yanxuan.nosdn.127.net/f925d64a68d213867ceafc1211d59250.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/eddd76fef80b87e1cf3a8d7bd6ceee3c.jpg\" _src=\"http://yanxuan.nosdn.127.net/eddd76fef80b87e1cf3a8d7bd6ceee3c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b74337d99199c178ff101a912cb37212.jpg\" _src=\"http://yanxuan.nosdn.127.net/b74337d99199c178ff101a912cb37212.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d6fc6571f3526af0d9126071bd479e35.jpg\" _src=\"http://yanxuan.nosdn.127.net/d6fc6571f3526af0d9126071bd479e35.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d26b83628f5e2b2830fd49b52ba67e70.jpg\" _src=\"http://yanxuan.nosdn.127.net/d26b83628f5e2b2830fd49b52ba67e70.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '20', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/e1d2090771d920c3feb477f07ac0ecb2.jpg', 'http://yanxuan.nosdn.127.net/dc9d09334eb201fe9408ed604e549941.png', '239.00', '4702', '1130130', '0.00', '限时购', '', '0.00', '0', '0', '0', '262.90', null, null, null, null);
  746. INSERT INTO `nideshop_goods` VALUES ('1130049', '1036000', '1130049', '柔软凉爽天丝麻蚕丝填充夏凉被', '0', '100', '', '天然恒温凉感面料,蚕丝美肤透气保护', '<p><img src=\"http://yanxuan.nosdn.127.net/78ab7f68b2ff7b88c934d67e1a51919e.jpg\" _src=\"http://yanxuan.nosdn.127.net/78ab7f68b2ff7b88c934d67e1a51919e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d741a2638cdb9ff518a5e5ae6f64d340.jpg\" _src=\"http://yanxuan.nosdn.127.net/d741a2638cdb9ff518a5e5ae6f64d340.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0c0b758b1726a8ef772baab9a3c0abcd.jpg\" _src=\"http://yanxuan.nosdn.127.net/0c0b758b1726a8ef772baab9a3c0abcd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9572c4793862e9cd739ac07a56629d14.jpg\" _src=\"http://yanxuan.nosdn.127.net/9572c4793862e9cd739ac07a56629d14.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/90d588c7d5a7fdce64dc5178c3145f16.jpg\" _src=\"http://yanxuan.nosdn.127.net/90d588c7d5a7fdce64dc5178c3145f16.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/97d1025440662b767341ba7f8a8edb51.jpg\" _src=\"http://yanxuan.nosdn.127.net/97d1025440662b767341ba7f8a8edb51.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d76a77afeb1282e266c3d57864ba6d83.jpg\" _src=\"http://yanxuan.nosdn.127.net/d76a77afeb1282e266c3d57864ba6d83.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/17d9f9628ad9644f4dea42342635331c.jpg\" _src=\"http://yanxuan.nosdn.127.net/17d9f9628ad9644f4dea42342635331c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c49c0bb5910ebdec89c2d519fa6b62bc.jpg\" _src=\"http://yanxuan.nosdn.127.net/c49c0bb5910ebdec89c2d519fa6b62bc.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/861d8e40f9f43a4ef68794b5b2567cf1.jpg\" _src=\"http://yanxuan.nosdn.127.net/861d8e40f9f43a4ef68794b5b2567cf1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0f0d13769b8a3d7453a34efcae9b981d.jpg\" _src=\"http://yanxuan.nosdn.127.net/0f0d13769b8a3d7453a34efcae9b981d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cb70ba625e83b1ec9f6e5ee6dd14dd27.jpg\" _src=\"http://yanxuan.nosdn.127.net/cb70ba625e83b1ec9f6e5ee6dd14dd27.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8b1fc1113e7b7ac9a4e03bcf5bf46d5c.jpg\" _src=\"http://yanxuan.nosdn.127.net/8b1fc1113e7b7ac9a4e03bcf5bf46d5c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/10266307384a47f8720d217d3857d162.jpg\" _src=\"http://yanxuan.nosdn.127.net/10266307384a47f8720d217d3857d162.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b8918fe9d86ab29def3c479ecf90a0fe.jpg\" _src=\"http://yanxuan.nosdn.127.net/b8918fe9d86ab29def3c479ecf90a0fe.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e7f1e68fec281bdd15cb1d38938dbca2.jpg\" _src=\"http://yanxuan.nosdn.127.net/e7f1e68fec281bdd15cb1d38938dbca2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8d81ec7a4b77030b0789796e4dd75fb6.jpg\" _src=\"http://yanxuan.nosdn.127.net/8d81ec7a4b77030b0789796e4dd75fb6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8b697fe55f0f9bd8e69ed0b2b8375fcc.jpg\" _src=\"http://yanxuan.nosdn.127.net/8b697fe55f0f9bd8e69ed0b2b8375fcc.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3a442cbe6add589159ea931adb10fa0e.jpg\" _src=\"http://yanxuan.nosdn.127.net/3a442cbe6add589159ea931adb10fa0e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d2e5a3acf3337e8164b35de94a75cbc7.jpg\" _src=\"http://yanxuan.nosdn.127.net/d2e5a3acf3337e8164b35de94a75cbc7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/74cb32f818abd6f294310ea2825f92dc.jpg\" _src=\"http://yanxuan.nosdn.127.net/74cb32f818abd6f294310ea2825f92dc.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1183f9927eacea303775460ccd0d1654.jpg\" _src=\"http://yanxuan.nosdn.127.net/1183f9927eacea303775460ccd0d1654.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b1dd0a755c91723b274dbf690c0731fa.jpg\" _src=\"http://yanxuan.nosdn.127.net/b1dd0a755c91723b274dbf690c0731fa.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c2c1e3c36b91ef71acb01d064184b7e0.jpg\" _src=\"http://yanxuan.nosdn.127.net/c2c1e3c36b91ef71acb01d064184b7e0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8d3ba5b141324ede316631a5efe3734a.jpg\" _src=\"http://yanxuan.nosdn.127.net/8d3ba5b141324ede316631a5efe3734a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3dad83a2caf03ad4c112b537bd0eb3bf.jpg\" _src=\"http://yanxuan.nosdn.127.net/3dad83a2caf03ad4c112b537bd0eb3bf.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d2d97323d49e7b66a31d380d90c23054.jpg\" _src=\"http://yanxuan.nosdn.127.net/d2d97323d49e7b66a31d380d90c23054.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ea911478280a3449e5049b5128def2e4.jpg\" _src=\"http://yanxuan.nosdn.127.net/ea911478280a3449e5049b5128def2e4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d3e0e978ab7f1e46ac2ba67beb0d6723.jpg\" _src=\"http://yanxuan.nosdn.127.net/d3e0e978ab7f1e46ac2ba67beb0d6723.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c95362ced9bedd8397658a564d6a60c7.jpg\" _src=\"http://yanxuan.nosdn.127.net/c95362ced9bedd8397658a564d6a60c7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5f88603e9ca6e9c2b63048359dde7e7b.jpg\" _src=\"http://yanxuan.nosdn.127.net/5f88603e9ca6e9c2b63048359dde7e7b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ab31125d4367bb9bd25e7d6eac6edece.jpg\" _src=\"http://yanxuan.nosdn.127.net/ab31125d4367bb9bd25e7d6eac6edece.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0f74ee2b37c3263d9bd2ffbed037060e.jpg\" _src=\"http://yanxuan.nosdn.127.net/0f74ee2b37c3263d9bd2ffbed037060e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/adfa5e35c38dc218ebae0bd1d531ef07.jpg\" _src=\"http://yanxuan.nosdn.127.net/adfa5e35c38dc218ebae0bd1d531ef07.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3e6cabd9a970df06d89d681e3ecd34a9.jpg\" _src=\"http://yanxuan.nosdn.127.net/3e6cabd9a970df06d89d681e3ecd34a9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/36fcbe5932dc7d7c5836146b5bd92581.jpg\" _src=\"http://yanxuan.nosdn.127.net/36fcbe5932dc7d7c5836146b5bd92581.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c73acdaa1ca297d7129b1d5105e64730.jpg\" _src=\"http://yanxuan.nosdn.127.net/c73acdaa1ca297d7129b1d5105e64730.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4dd8c5d39b0355770a5f0957afa02621.jpg\" _src=\"http://yanxuan.nosdn.127.net/4dd8c5d39b0355770a5f0957afa02621.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/33c047ea719bc6f8d668d84640a8c517.jpg\" _src=\"http://yanxuan.nosdn.127.net/33c047ea719bc6f8d668d84640a8c517.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f499b26f646a0808497bd47570f17a61.jpg\" _src=\"http://yanxuan.nosdn.127.net/f499b26f646a0808497bd47570f17a61.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8bea87d0bbe99eca680139d2f2f04fb2.jpg\" _src=\"http://yanxuan.nosdn.127.net/8bea87d0bbe99eca680139d2f2f04fb2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c40228144f08d743abdb69ec3e73f436.jpg\" _src=\"http://yanxuan.nosdn.127.net/c40228144f08d743abdb69ec3e73f436.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/80dccd03379feec227f8f474bec3877a.jpg\" _src=\"http://yanxuan.nosdn.127.net/80dccd03379feec227f8f474bec3877a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cb4c789159acb31fbe34c69ace2a67fd.jpg\" _src=\"http://yanxuan.nosdn.127.net/cb4c789159acb31fbe34c69ace2a67fd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/de96b7d37954ef8c4edfd439fccf9225.jpg\" _src=\"http://yanxuan.nosdn.127.net/de96b7d37954ef8c4edfd439fccf9225.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e260359f2bc7b07f66db507cd522e800.jpg\" _src=\"http://yanxuan.nosdn.127.net/e260359f2bc7b07f66db507cd522e800.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f858f48fdb4de20e0dab9b2a738ea1cd.jpg\" _src=\"http://yanxuan.nosdn.127.net/f858f48fdb4de20e0dab9b2a738ea1cd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/754ad234cd5c6bb77196ffedb0a9d9bc.jpg\" _src=\"http://yanxuan.nosdn.127.net/754ad234cd5c6bb77196ffedb0a9d9bc.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3128fed38e15a49d6e58740386c3d990.jpg\" _src=\"http://yanxuan.nosdn.127.net/3128fed38e15a49d6e58740386c3d990.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7aa229bac27decd5ca59f48a490b1a67.jpg\" _src=\"http://yanxuan.nosdn.127.net/7aa229bac27decd5ca59f48a490b1a67.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a51aaeeed9e53603998cd97192983074.jpg\" _src=\"http://yanxuan.nosdn.127.net/a51aaeeed9e53603998cd97192983074.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/030ee652da5272cc7e6686bf03e24760.jpg\" _src=\"http://yanxuan.nosdn.127.net/030ee652da5272cc7e6686bf03e24760.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a27818dd8c3215c7eec90d6395e8e9d2.jpg\" _src=\"http://yanxuan.nosdn.127.net/a27818dd8c3215c7eec90d6395e8e9d2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9f36e767c15370626b51edce7c498e7a.jpg\" _src=\"http://yanxuan.nosdn.127.net/9f36e767c15370626b51edce7c498e7a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/82ed08b21e8323253d47aa7c1b166d33.jpg\" _src=\"http://yanxuan.nosdn.127.net/82ed08b21e8323253d47aa7c1b166d33.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2444954e7ca10c158411f2774961bebc.jpg\" _src=\"http://yanxuan.nosdn.127.net/2444954e7ca10c158411f2774961bebc.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1b9773b86b4ef2ada1a95690126f0586.jpg\" _src=\"http://yanxuan.nosdn.127.net/1b9773b86b4ef2ada1a95690126f0586.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/63dc65e04deda1422041b22892596009.jpg\" _src=\"http://yanxuan.nosdn.127.net/63dc65e04deda1422041b22892596009.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/426135b8f8ebb50a5650290f9cf2f689.jpg\" _src=\"http://yanxuan.nosdn.127.net/426135b8f8ebb50a5650290f9cf2f689.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9a6a7b05fa20ff27c0690aa46cca0050.jpg\" _src=\"http://yanxuan.nosdn.127.net/9a6a7b05fa20ff27c0690aa46cca0050.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a80d80daf071f788d6ff24667e0aacb4.jpg\" _src=\"http://yanxuan.nosdn.127.net/a80d80daf071f788d6ff24667e0aacb4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/05caa89d4fc3c8744adb7a07deaa99fd.jpg\" _src=\"http://yanxuan.nosdn.127.net/05caa89d4fc3c8744adb7a07deaa99fd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5bedd6a78be2fce23f477ea450cdcad8.jpg\" _src=\"http://yanxuan.nosdn.127.net/5bedd6a78be2fce23f477ea450cdcad8.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '6', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/1d22178e41f02a5a8ce59ad99f23a4b2.jpg', 'http://yanxuan.nosdn.127.net/d88513f85b3617d734bde93af2c766c9.png', '429.00', '1033', '1130206', '0.00', '限时购', '', '0.00', '0', '0', '0', '471.90', null, null, null, null);
  747. INSERT INTO `nideshop_goods` VALUES ('1130056', '1036000', '1130056', '奢华植鞣头层水牛皮席三件套', '0', '100', '', '三峡水牛头层皮,高端夏凉必备', '<p><img src=\"http://yanxuan.nosdn.127.net/d5d2100068714156665b108041cf43ed.jpg\" _src=\"http://yanxuan.nosdn.127.net/d5d2100068714156665b108041cf43ed.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e50096b71dd66e31bc2b6a7641108be4.jpg\" _src=\"http://yanxuan.nosdn.127.net/e50096b71dd66e31bc2b6a7641108be4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ccb2836b89d9404e8c9e2098bed6b14d.jpg\" _src=\"http://yanxuan.nosdn.127.net/ccb2836b89d9404e8c9e2098bed6b14d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ab2da98998c40dbfe92fd6a10a71ff79.jpg\" _src=\"http://yanxuan.nosdn.127.net/ab2da98998c40dbfe92fd6a10a71ff79.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7052623da0a26879c3d4f86ad92395f4.jpg\" _src=\"http://yanxuan.nosdn.127.net/7052623da0a26879c3d4f86ad92395f4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0c27298611fec130c6602b650401a149.jpg\" _src=\"http://yanxuan.nosdn.127.net/0c27298611fec130c6602b650401a149.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e4f012954639f8885a8eb7d48f92ed4e.jpg\" _src=\"http://yanxuan.nosdn.127.net/e4f012954639f8885a8eb7d48f92ed4e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/53752eb092bc797eb8ad6936b9cdf835.jpg\" _src=\"http://yanxuan.nosdn.127.net/53752eb092bc797eb8ad6936b9cdf835.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/38d802e9bc3803de63a5fbb0e67c6e90.jpg\" _src=\"http://yanxuan.nosdn.127.net/38d802e9bc3803de63a5fbb0e67c6e90.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2f465c6dc8864f4ebb456b3a0ea4468b.jpg\" _src=\"http://yanxuan.nosdn.127.net/2f465c6dc8864f4ebb456b3a0ea4468b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9f3fc504c1038830e0ca5e5d28055dd4.jpg\" _src=\"http://yanxuan.nosdn.127.net/9f3fc504c1038830e0ca5e5d28055dd4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/17137f7d5e17f273db1332601714009b.jpg\" _src=\"http://yanxuan.nosdn.127.net/17137f7d5e17f273db1332601714009b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/92c6a129b352073b09a3fd3702c9e832.jpg\" _src=\"http://yanxuan.nosdn.127.net/92c6a129b352073b09a3fd3702c9e832.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/47f99ace250610e93a161d9fb2e6ea23.jpg\" _src=\"http://yanxuan.nosdn.127.net/47f99ace250610e93a161d9fb2e6ea23.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/46cc382cac65987c5c6e4de4e00dbe97.jpg\" _src=\"http://yanxuan.nosdn.127.net/46cc382cac65987c5c6e4de4e00dbe97.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0a9617af664f28505eb78a7023e0cfb5.jpg\" _src=\"http://yanxuan.nosdn.127.net/0a9617af664f28505eb78a7023e0cfb5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cdb7aa47f428da8303c8634d358b930b.jpg\" _src=\"http://yanxuan.nosdn.127.net/cdb7aa47f428da8303c8634d358b930b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/51f33e92d9a6e6bb32c1621157bea4d5.jpg\" _src=\"http://yanxuan.nosdn.127.net/51f33e92d9a6e6bb32c1621157bea4d5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/54853900fed7478124081f861d1a7ada.jpg\" _src=\"http://yanxuan.nosdn.127.net/54853900fed7478124081f861d1a7ada.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bafa71a716112f475b8bd0c468c07fe7.jpg\" _src=\"http://yanxuan.nosdn.127.net/bafa71a716112f475b8bd0c468c07fe7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cc401f88c2a542571e3ee5f0fdc6bea0.jpg\" _src=\"http://yanxuan.nosdn.127.net/cc401f88c2a542571e3ee5f0fdc6bea0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/33e63f698fc737acc89fb57ce64f074f.jpg\" _src=\"http://yanxuan.nosdn.127.net/33e63f698fc737acc89fb57ce64f074f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/54646185c8f143c5610c4e628330e963.jpg\" _src=\"http://yanxuan.nosdn.127.net/54646185c8f143c5610c4e628330e963.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ecbf08f0bd20503705c3ceef896f3cac.jpg\" _src=\"http://yanxuan.nosdn.127.net/ecbf08f0bd20503705c3ceef896f3cac.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7cb076b734066337d721251ad38b3ad9.jpg\" _src=\"http://yanxuan.nosdn.127.net/7cb076b734066337d721251ad38b3ad9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/237763b5100b713f66a68c0890c63468.jpg\" _src=\"http://yanxuan.nosdn.127.net/237763b5100b713f66a68c0890c63468.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a9283d5f1d1d1b9c5be5c6221c2ff4f4.jpg\" _src=\"http://yanxuan.nosdn.127.net/a9283d5f1d1d1b9c5be5c6221c2ff4f4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9564ccb0d24c310936e15c90de042cbc.jpg\" _src=\"http://yanxuan.nosdn.127.net/9564ccb0d24c310936e15c90de042cbc.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2452bf3e195ba489834a158505d1451a.jpg\" _src=\"http://yanxuan.nosdn.127.net/2452bf3e195ba489834a158505d1451a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2ff3931361ae3f64bb0e3c6456c075b4.jpg\" _src=\"http://yanxuan.nosdn.127.net/2ff3931361ae3f64bb0e3c6456c075b4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7be97dcafb5f21d785765c01c8116173.jpg\" _src=\"http://yanxuan.nosdn.127.net/7be97dcafb5f21d785765c01c8116173.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ddb870cac215a6723213e6eb5dccf7d0.jpg\" _src=\"http://yanxuan.nosdn.127.net/ddb870cac215a6723213e6eb5dccf7d0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2496596b00a2a840e57b8ac6f93b466d.jpg\" _src=\"http://yanxuan.nosdn.127.net/2496596b00a2a840e57b8ac6f93b466d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d7a2a3c66379c9355af1e5d13df3d237.jpg\" _src=\"http://yanxuan.nosdn.127.net/d7a2a3c66379c9355af1e5d13df3d237.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6392c2213176a1ff11e1eb8b85c2c28d.jpg\" _src=\"http://yanxuan.nosdn.127.net/6392c2213176a1ff11e1eb8b85c2c28d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1a9ce6c599399f685b1318ae7f0e4d26.jpg\" _src=\"http://yanxuan.nosdn.127.net/1a9ce6c599399f685b1318ae7f0e4d26.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/566190fe5a6fe70969e677932903e8a5.jpg\" _src=\"http://yanxuan.nosdn.127.net/566190fe5a6fe70969e677932903e8a5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e064167607d8da6a6aa298d02e609155.jpg\" _src=\"http://yanxuan.nosdn.127.net/e064167607d8da6a6aa298d02e609155.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/219e006d81ffee6103f128fe05514a8d.jpg\" _src=\"http://yanxuan.nosdn.127.net/219e006d81ffee6103f128fe05514a8d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/340d1b45addf750ac712b8ff591e2486.jpg\" _src=\"http://yanxuan.nosdn.127.net/340d1b45addf750ac712b8ff591e2486.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2b17133b68a392c2e8be52a7cd0ec779.jpg\" _src=\"http://yanxuan.nosdn.127.net/2b17133b68a392c2e8be52a7cd0ec779.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2d6d6a8992e9f9e5fb2e062a3609ebe9.jpg\" _src=\"http://yanxuan.nosdn.127.net/2d6d6a8992e9f9e5fb2e062a3609ebe9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1dd6531a5e0e484261eb54b04451856d.jpg\" _src=\"http://yanxuan.nosdn.127.net/1dd6531a5e0e484261eb54b04451856d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/595d100c5626e518d8ac8dc3cfea35aa.jpg\" _src=\"http://yanxuan.nosdn.127.net/595d100c5626e518d8ac8dc3cfea35aa.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/68a40df81b4caa124a3c4a9e1c450f04.jpg\" _src=\"http://yanxuan.nosdn.127.net/68a40df81b4caa124a3c4a9e1c450f04.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cc818fdf0353eb5aad13c73f71e5abcd.jpg\" _src=\"http://yanxuan.nosdn.127.net/cc818fdf0353eb5aad13c73f71e5abcd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/12dae643ecbc861c94fb206a5258bbcb.jpg\" _src=\"http://yanxuan.nosdn.127.net/12dae643ecbc861c94fb206a5258bbcb.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/89a6fd88edd23b6819e4dcb530e1031e.jpg\" _src=\"http://yanxuan.nosdn.127.net/89a6fd88edd23b6819e4dcb530e1031e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3602af88a0194c01c0dfbd8917789705.jpg\" _src=\"http://yanxuan.nosdn.127.net/3602af88a0194c01c0dfbd8917789705.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c3e63ac2b85050a6ebbd8b0bf8dfd9ae.jpg\" _src=\"http://yanxuan.nosdn.127.net/c3e63ac2b85050a6ebbd8b0bf8dfd9ae.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/817df5e7869b23a4d8a8d5c996ac3036.jpg\" _src=\"http://yanxuan.nosdn.127.net/817df5e7869b23a4d8a8d5c996ac3036.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a680a6efe6e84f5e16152ae54533b349.jpg\" _src=\"http://yanxuan.nosdn.127.net/a680a6efe6e84f5e16152ae54533b349.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f9209303d71fe145d798e520315b9ed7.jpg\" _src=\"http://yanxuan.nosdn.127.net/f9209303d71fe145d798e520315b9ed7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d3833be42e2c884a87e01c2131ffcf68.jpg\" _src=\"http://yanxuan.nosdn.127.net/d3833be42e2c884a87e01c2131ffcf68.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bdd781a0d5046d6acd8b31d6162efc40.jpg\" _src=\"http://yanxuan.nosdn.127.net/bdd781a0d5046d6acd8b31d6162efc40.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9e3eff330730afbd75544c5b2a63bb11.jpg\" _src=\"http://yanxuan.nosdn.127.net/9e3eff330730afbd75544c5b2a63bb11.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/08eff696ab93111c99282fc00484d0f3.jpg\" _src=\"http://yanxuan.nosdn.127.net/08eff696ab93111c99282fc00484d0f3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/59e5cc526bf92e8a7bb821c77d94ef86.jpg\" _src=\"http://yanxuan.nosdn.127.net/59e5cc526bf92e8a7bb821c77d94ef86.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ba1840d1073845ae14c3a49220e18fb9.jpg\" _src=\"http://yanxuan.nosdn.127.net/ba1840d1073845ae14c3a49220e18fb9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4aa0781419f06b3a7a42c5f1c2aa5fa7.jpg\" _src=\"http://yanxuan.nosdn.127.net/4aa0781419f06b3a7a42c5f1c2aa5fa7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/638b6d14949dd96c8505a5166feb0c4a.jpg\" _src=\"http://yanxuan.nosdn.127.net/638b6d14949dd96c8505a5166feb0c4a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7f0943013429fc7da50bab28d8ede661.jpg\" _src=\"http://yanxuan.nosdn.127.net/7f0943013429fc7da50bab28d8ede661.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/344a1c099ee38c601dd4d34996ac1e65.jpg\" _src=\"http://yanxuan.nosdn.127.net/344a1c099ee38c601dd4d34996ac1e65.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '9', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/3994158cd3252c33848c4fb4c3d36ddb.jpg', 'http://yanxuan.nosdn.127.net/56e72b84a9bb66687c003ecdaba73816.png', '2299.00', '2478', '1130234', '0.00', '限时购', '', '0.00', '0', '0', '0', '2528.90', null, null, null, null);
  748. INSERT INTO `nideshop_goods` VALUES ('1131017', '1036000', '1131017', '平滑细篾头层青碳化竹凉席', '0', '100', '', '细篾整密,凉滑不夹肉', '<p><img src=\"http://yanxuan.nosdn.127.net/1e38709c2c358283dd71c60d1e4ede73.jpg\" _src=\"http://yanxuan.nosdn.127.net/1e38709c2c358283dd71c60d1e4ede73.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c39a676561ba767a73ef0e78d75f1ad6.jpg\" _src=\"http://yanxuan.nosdn.127.net/c39a676561ba767a73ef0e78d75f1ad6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d5e727f778ee73b7d6446b37e0ead39b.jpg\" _src=\"http://yanxuan.nosdn.127.net/d5e727f778ee73b7d6446b37e0ead39b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4932fb9c538ba3e6a1028a8c05568452.jpg\" _src=\"http://yanxuan.nosdn.127.net/4932fb9c538ba3e6a1028a8c05568452.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0d4bc8ba55a86642c09d13b33928a1dc.jpg\" _src=\"http://yanxuan.nosdn.127.net/0d4bc8ba55a86642c09d13b33928a1dc.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5a0a5ebc4548c5f20c9316be33dbf3fb.jpg\" _src=\"http://yanxuan.nosdn.127.net/5a0a5ebc4548c5f20c9316be33dbf3fb.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6155642553be65aa8fd5ee3a72604c5f.jpg\" _src=\"http://yanxuan.nosdn.127.net/6155642553be65aa8fd5ee3a72604c5f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1ab410ca905fba205190add1e833eed2.jpg\" _src=\"http://yanxuan.nosdn.127.net/1ab410ca905fba205190add1e833eed2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/03c3ab0b27f564f6b2fea1997ee2acd2.jpg\" _src=\"http://yanxuan.nosdn.127.net/03c3ab0b27f564f6b2fea1997ee2acd2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6a0642ba6e55d8e805e81e0abd641d11.jpg\" _src=\"http://yanxuan.nosdn.127.net/6a0642ba6e55d8e805e81e0abd641d11.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bbddc185e13a74ad9e532f387f978a82.jpg\" _src=\"http://yanxuan.nosdn.127.net/bbddc185e13a74ad9e532f387f978a82.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cbebeb5ac8a719d690267178406884cf.jpg\" _src=\"http://yanxuan.nosdn.127.net/cbebeb5ac8a719d690267178406884cf.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a27c51f5368d95cc9aa9df8289b3fa5d.jpg\" _src=\"http://yanxuan.nosdn.127.net/a27c51f5368d95cc9aa9df8289b3fa5d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8c6bf490e7ceafbe8953c32f29e31bdc.jpg\" _src=\"http://yanxuan.nosdn.127.net/8c6bf490e7ceafbe8953c32f29e31bdc.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/76acca9ec7b71c04b48f19ee79c6104d.jpg\" _src=\"http://yanxuan.nosdn.127.net/76acca9ec7b71c04b48f19ee79c6104d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c9966e0908ec2a8ff08758fbcc08bad3.jpg\" _src=\"http://yanxuan.nosdn.127.net/c9966e0908ec2a8ff08758fbcc08bad3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1f07ffffbf849d7c47c5eaf57b565697.jpg\" _src=\"http://yanxuan.nosdn.127.net/1f07ffffbf849d7c47c5eaf57b565697.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9e68d8a298e470707c0d932fd62d0a9a.jpg\" _src=\"http://yanxuan.nosdn.127.net/9e68d8a298e470707c0d932fd62d0a9a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fdd5c8f685af7be35d1b32dd11cc9287.jpg\" _src=\"http://yanxuan.nosdn.127.net/fdd5c8f685af7be35d1b32dd11cc9287.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/af82df29f6d7d7c0dedf38ad31dd64db.jpg\" _src=\"http://yanxuan.nosdn.127.net/af82df29f6d7d7c0dedf38ad31dd64db.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2e59f79aeaa227371cee4459580e1606.jpg\" _src=\"http://yanxuan.nosdn.127.net/2e59f79aeaa227371cee4459580e1606.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4b55a3d336c707575772b1f69c947807.jpg\" _src=\"http://yanxuan.nosdn.127.net/4b55a3d336c707575772b1f69c947807.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/109c4c5914da09f8a6e3ec7542851d53.jpg\" _src=\"http://yanxuan.nosdn.127.net/109c4c5914da09f8a6e3ec7542851d53.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d299febbc951ee2512c14ec4e8fe94fd.jpg\" _src=\"http://yanxuan.nosdn.127.net/d299febbc951ee2512c14ec4e8fe94fd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/39d6a2c52ec542173528722136a00799.jpg\" _src=\"http://yanxuan.nosdn.127.net/39d6a2c52ec542173528722136a00799.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b4d08001915cc6aa339911851251690d.jpg\" _src=\"http://yanxuan.nosdn.127.net/b4d08001915cc6aa339911851251690d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/40faadf9b1ed32a204a82f621a941cf2.jpg\" _src=\"http://yanxuan.nosdn.127.net/40faadf9b1ed32a204a82f621a941cf2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/acddbf9da7b3d3208ee079c8dbde67a7.jpg\" _src=\"http://yanxuan.nosdn.127.net/acddbf9da7b3d3208ee079c8dbde67a7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/88351962082a7b57b282bfcc21312daa.jpg\" _src=\"http://yanxuan.nosdn.127.net/88351962082a7b57b282bfcc21312daa.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/89eed14fc1973e716fff9793a28dfaee.jpg\" _src=\"http://yanxuan.nosdn.127.net/89eed14fc1973e716fff9793a28dfaee.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7dbe32441f71f5a6c9f10f5f7d39c859.jpg\" _src=\"http://yanxuan.nosdn.127.net/7dbe32441f71f5a6c9f10f5f7d39c859.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/88776cd6b0dcacf1db2a92258452c2cc.jpg\" _src=\"http://yanxuan.nosdn.127.net/88776cd6b0dcacf1db2a92258452c2cc.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b875e582e902567faa873287d3f4043f.jpg\" _src=\"http://yanxuan.nosdn.127.net/b875e582e902567faa873287d3f4043f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bdffef0bd249a75d290beba5a6486910.jpg\" _src=\"http://yanxuan.nosdn.127.net/bdffef0bd249a75d290beba5a6486910.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/95c791c3538dbd1792e77d11775a1e08.jpg\" _src=\"http://yanxuan.nosdn.127.net/95c791c3538dbd1792e77d11775a1e08.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ef918a2928c252bbb97389534488fa7c.jpg\" _src=\"http://yanxuan.nosdn.127.net/ef918a2928c252bbb97389534488fa7c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2b0ccd55fb0789ed22a9496b61a0ee5d.jpg\" _src=\"http://yanxuan.nosdn.127.net/2b0ccd55fb0789ed22a9496b61a0ee5d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/63431d3ff6bede066c2858723546be55.jpg\" _src=\"http://yanxuan.nosdn.127.net/63431d3ff6bede066c2858723546be55.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/228f194c8ef6986c9a56cffb2afb10f2.jpg\" _src=\"http://yanxuan.nosdn.127.net/228f194c8ef6986c9a56cffb2afb10f2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a347550dffce12ba9e26a745f00f6e99.jpg\" _src=\"http://yanxuan.nosdn.127.net/a347550dffce12ba9e26a745f00f6e99.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b13135f7bbf530927cf7c74d83a6cfa1.jpg\" _src=\"http://yanxuan.nosdn.127.net/b13135f7bbf530927cf7c74d83a6cfa1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/39ec88409fdc1066c11ee2d805607465.jpg\" _src=\"http://yanxuan.nosdn.127.net/39ec88409fdc1066c11ee2d805607465.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9c0d0bfe31ecfa7bb08bc9d25691cf6d.jpg\" _src=\"http://yanxuan.nosdn.127.net/9c0d0bfe31ecfa7bb08bc9d25691cf6d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/15e0d019858809659d5e3ebaac89671a.jpg\" _src=\"http://yanxuan.nosdn.127.net/15e0d019858809659d5e3ebaac89671a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0cd4803ae8904667cad8acb24b77a37d.jpg\" _src=\"http://yanxuan.nosdn.127.net/0cd4803ae8904667cad8acb24b77a37d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/19767cdceda43eac0fd381ca59e6fd5a.jpg\" _src=\"http://yanxuan.nosdn.127.net/19767cdceda43eac0fd381ca59e6fd5a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6be4dc385396f5c25d2302e60f7de84d.jpg\" _src=\"http://yanxuan.nosdn.127.net/6be4dc385396f5c25d2302e60f7de84d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a7adb483f565887b8221cedb2cbdd493.jpg\" _src=\"http://yanxuan.nosdn.127.net/a7adb483f565887b8221cedb2cbdd493.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9d22857b5e59f66a117e0492ec24713b.jpg\" _src=\"http://yanxuan.nosdn.127.net/9d22857b5e59f66a117e0492ec24713b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cac8fc4bb8564c289280efcef8792c0b.jpg\" _src=\"http://yanxuan.nosdn.127.net/cac8fc4bb8564c289280efcef8792c0b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a0eba010b054390b2a15c8fd047731e3.jpg\" _src=\"http://yanxuan.nosdn.127.net/a0eba010b054390b2a15c8fd047731e3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1b34cd5189f789214503824487aa6f18.jpg\" _src=\"http://yanxuan.nosdn.127.net/1b34cd5189f789214503824487aa6f18.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6d95c6452fdebf910c845db973fdf7a9.jpg\" _src=\"http://yanxuan.nosdn.127.net/6d95c6452fdebf910c845db973fdf7a9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/04c0d55392c5e5fee786f9f75ab4a9c5.jpg\" _src=\"http://yanxuan.nosdn.127.net/04c0d55392c5e5fee786f9f75ab4a9c5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f29fa3fc68602a391c0a525d06bc7851.jpg\" _src=\"http://yanxuan.nosdn.127.net/f29fa3fc68602a391c0a525d06bc7851.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f0fc6751428469a966fc42dd550dc01c.jpg\" _src=\"http://yanxuan.nosdn.127.net/f0fc6751428469a966fc42dd550dc01c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f915f77bdc9e1c3e156aeadb7723011b.jpg\" _src=\"http://yanxuan.nosdn.127.net/f915f77bdc9e1c3e156aeadb7723011b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6734b2acb5a39100eff65adef2777b11.jpg\" _src=\"http://yanxuan.nosdn.127.net/6734b2acb5a39100eff65adef2777b11.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/692da5374501586c90d38e89f59ad877.jpg\" _src=\"http://yanxuan.nosdn.127.net/692da5374501586c90d38e89f59ad877.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d64e16a25e88ff5ee646f66e40a0a31c.jpg\" _src=\"http://yanxuan.nosdn.127.net/d64e16a25e88ff5ee646f66e40a0a31c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fc0c539e3f108cee66ada0e406608e8b.jpg\" _src=\"http://yanxuan.nosdn.127.net/fc0c539e3f108cee66ada0e406608e8b.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '10', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/b6a74ea5d3ab3712a401f71d75f88694.jpg', 'http://yanxuan.nosdn.127.net/2b6e2268ed712f1a336283f013abb7a1.png', '259.00', '1258', '1131241', '0.00', '限时购', '', '0.00', '0', '0', '0', '284.90', null, null, null, null);
  749. INSERT INTO `nideshop_goods` VALUES ('1134022', '1008002', '1134022', '清新趣粉防滑浴垫', '0', '100', '', '清新跃动,舒适脚感', '<p><img src=\"http://yanxuan.nosdn.127.net/d68e182e560941e807d33431ad82452e.jpg\" _src=\"http://yanxuan.nosdn.127.net/d68e182e560941e807d33431ad82452e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/758e12cde995bc722cbab81644c29f60.jpg\" _src=\"http://yanxuan.nosdn.127.net/758e12cde995bc722cbab81644c29f60.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3b2cadfcad57975bc4b8ad4cb53ebbad.jpg\" _src=\"http://yanxuan.nosdn.127.net/3b2cadfcad57975bc4b8ad4cb53ebbad.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4600c0173de7dfa48d2c7d278667312f.jpg\" _src=\"http://yanxuan.nosdn.127.net/4600c0173de7dfa48d2c7d278667312f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3e766cfe5d9f6cf74390e37c271c5193.jpg\" _src=\"http://yanxuan.nosdn.127.net/3e766cfe5d9f6cf74390e37c271c5193.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/97d7a034074e100db15b1c94f9f4308f.jpg\" _src=\"http://yanxuan.nosdn.127.net/97d7a034074e100db15b1c94f9f4308f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d78fd7ec09228ed93358f187b6c12398.jpg\" _src=\"http://yanxuan.nosdn.127.net/d78fd7ec09228ed93358f187b6c12398.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/00960ca0bd8f388fc52a493f39beac38.jpg\" _src=\"http://yanxuan.nosdn.127.net/00960ca0bd8f388fc52a493f39beac38.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bb505efadcd8bb19d88b7ec1d86d5ade.jpg\" _src=\"http://yanxuan.nosdn.127.net/bb505efadcd8bb19d88b7ec1d86d5ade.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/90ebd0a8cdd8a256b36fd26b2717a655.jpg\" _src=\"http://yanxuan.nosdn.127.net/90ebd0a8cdd8a256b36fd26b2717a655.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7f391c39a3455577651ea1b2f7bb4832.jpg\" _src=\"http://yanxuan.nosdn.127.net/7f391c39a3455577651ea1b2f7bb4832.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d153c03f2acc1e3062b507c135b309d6.jpg\" _src=\"http://yanxuan.nosdn.127.net/d153c03f2acc1e3062b507c135b309d6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a9b6a5e8636dbfaa875b94c0221bf001.jpg\" _src=\"http://yanxuan.nosdn.127.net/a9b6a5e8636dbfaa875b94c0221bf001.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/dc971a8f5c766e3dd9f36fdfe6f9afd3.jpg\" _src=\"http://yanxuan.nosdn.127.net/dc971a8f5c766e3dd9f36fdfe6f9afd3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/63dd064c791211bda9f0dfcf0bfe0db7.jpg\" _src=\"http://yanxuan.nosdn.127.net/63dd064c791211bda9f0dfcf0bfe0db7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/15ecb7b4d9f3142a073eacd5506c0a2c.jpg\" _src=\"http://yanxuan.nosdn.127.net/15ecb7b4d9f3142a073eacd5506c0a2c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/278235956b0cd9a3aab8933c63c923c4.jpg\" _src=\"http://yanxuan.nosdn.127.net/278235956b0cd9a3aab8933c63c923c4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/84bc90dec0c6f6049a79622f7b9ef83c.jpg\" _src=\"http://yanxuan.nosdn.127.net/84bc90dec0c6f6049a79622f7b9ef83c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9707c4a9a76f0432bb7c2d03b72f9582.jpg\" _src=\"http://yanxuan.nosdn.127.net/9707c4a9a76f0432bb7c2d03b72f9582.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a3e75d69e0a16177a5b22a07ce0f39f2.jpg\" _src=\"http://yanxuan.nosdn.127.net/a3e75d69e0a16177a5b22a07ce0f39f2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8ea585974061d0c9cc858bf5927f79cd.jpg\" _src=\"http://yanxuan.nosdn.127.net/8ea585974061d0c9cc858bf5927f79cd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/aab2d28c54f55eddfeffb9fc7dc5e410.jpg\" _src=\"http://yanxuan.nosdn.127.net/aab2d28c54f55eddfeffb9fc7dc5e410.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a9500f694389ca250f09b4f60d1be4f8.jpg\" _src=\"http://yanxuan.nosdn.127.net/a9500f694389ca250f09b4f60d1be4f8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a8f76b4a92255fdcccd1015476cf05b3.jpg\" _src=\"http://yanxuan.nosdn.127.net/a8f76b4a92255fdcccd1015476cf05b3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2247af207eb3872a7057f0d3dd0a9033.jpg\" _src=\"http://yanxuan.nosdn.127.net/2247af207eb3872a7057f0d3dd0a9033.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b5b557985c26db27b73161505ee5d768.jpg\" _src=\"http://yanxuan.nosdn.127.net/b5b557985c26db27b73161505ee5d768.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c16b77cdd7e12a597e2b8508cfc1e3e1.jpg\" _src=\"http://yanxuan.nosdn.127.net/c16b77cdd7e12a597e2b8508cfc1e3e1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1cf32a0024e223dd7e3953f642da5f4f.jpg\" _src=\"http://yanxuan.nosdn.127.net/1cf32a0024e223dd7e3953f642da5f4f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/594dca141f011e7cab4af1f7a19e19f7.jpg\" _src=\"http://yanxuan.nosdn.127.net/594dca141f011e7cab4af1f7a19e19f7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a52b1804711993bd96cdc9ca1ffcd10b.jpg\" _src=\"http://yanxuan.nosdn.127.net/a52b1804711993bd96cdc9ca1ffcd10b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/800bf6fc99f89ee6f0f8155fbd9accdb.jpg\" _src=\"http://yanxuan.nosdn.127.net/800bf6fc99f89ee6f0f8155fbd9accdb.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/55133777a4a7e79c0b13d31a81c077cc.jpg\" _src=\"http://yanxuan.nosdn.127.net/55133777a4a7e79c0b13d31a81c077cc.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0c5a4faf6e647754c6e364dfc4d5cbad.jpg\" _src=\"http://yanxuan.nosdn.127.net/0c5a4faf6e647754c6e364dfc4d5cbad.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/18792955e7170d770c0f1cd559baee64.jpg\" _src=\"http://yanxuan.nosdn.127.net/18792955e7170d770c0f1cd559baee64.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2113fedc915eca6a7655f77d16f3a620.jpg\" _src=\"http://yanxuan.nosdn.127.net/2113fedc915eca6a7655f77d16f3a620.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4df06a31810e04bc083b71896ce9a326.jpg\" _src=\"http://yanxuan.nosdn.127.net/4df06a31810e04bc083b71896ce9a326.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/29ce24ea1f9ba8c078b31aeaded6aa08.jpg\" _src=\"http://yanxuan.nosdn.127.net/29ce24ea1f9ba8c078b31aeaded6aa08.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/38e3bf328e84f4047a6d5fd4f66ac445.jpg\" _src=\"http://yanxuan.nosdn.127.net/38e3bf328e84f4047a6d5fd4f66ac445.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/956559986a2e62e87e6ba423964cd0f9.jpg\" _src=\"http://yanxuan.nosdn.127.net/956559986a2e62e87e6ba423964cd0f9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e79f219a7f9bbb98cbc7120a1699881e.jpg\" _src=\"http://yanxuan.nosdn.127.net/e79f219a7f9bbb98cbc7120a1699881e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/88ef1b4cc27eec82cbd38251be88f091.jpg\" _src=\"http://yanxuan.nosdn.127.net/88ef1b4cc27eec82cbd38251be88f091.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7261638f3f3a7287f150a20afdf4b66a.jpg\" _src=\"http://yanxuan.nosdn.127.net/7261638f3f3a7287f150a20afdf4b66a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ebe2fcb1f43d47d335f139611bde77f2.jpg\" _src=\"http://yanxuan.nosdn.127.net/ebe2fcb1f43d47d335f139611bde77f2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7a153e2aaff1060fae1fd6ec41fdef9c.jpg\" _src=\"http://yanxuan.nosdn.127.net/7a153e2aaff1060fae1fd6ec41fdef9c.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '31', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/6e79581984d80627916b6e6035e5c6ae.jpg', 'http://yanxuan.nosdn.127.net/a2b7489b4a2b1c09b66464cede4dabd7.png', '79.00', '2166', '1135125', '0.00', '限时购', '', '0.00', '0', '0', '0', '86.90', null, null, null, null);
  750. INSERT INTO `nideshop_goods` VALUES ('1134030', '1008002', '1134030', '简约知性记忆棉坐垫', '0', '100', '', '慢回弹海绵,时尚设计。', '<p><img src=\"http://yanxuan.nosdn.127.net/3b31b3c57a7d7f42b13711bd1438d555.jpg\" _src=\"http://yanxuan.nosdn.127.net/3b31b3c57a7d7f42b13711bd1438d555.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e92d9bad2a0339a81b47835f5530a358.jpg\" _src=\"http://yanxuan.nosdn.127.net/e92d9bad2a0339a81b47835f5530a358.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/edabc81fa6c7e66fe1698949f3b2b9f4.jpg\" _src=\"http://yanxuan.nosdn.127.net/edabc81fa6c7e66fe1698949f3b2b9f4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3444f640ec6ff6d6a8bcc3ce0f28848f.jpg\" _src=\"http://yanxuan.nosdn.127.net/3444f640ec6ff6d6a8bcc3ce0f28848f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/317ebb6f899631d1ed52759c14170a39.jpg\" _src=\"http://yanxuan.nosdn.127.net/317ebb6f899631d1ed52759c14170a39.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8f17af0ae3d56d482cec4105d390730a.jpg\" _src=\"http://yanxuan.nosdn.127.net/8f17af0ae3d56d482cec4105d390730a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/345a9aba507ca86b34c37c29956eeb83.jpg\" _src=\"http://yanxuan.nosdn.127.net/345a9aba507ca86b34c37c29956eeb83.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/38b5c26064c4ea16ce3380bd69d2a671.jpg\" _src=\"http://yanxuan.nosdn.127.net/38b5c26064c4ea16ce3380bd69d2a671.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/eabf8d6393d65cbd9e2e87c75dfcc066.jpg\" _src=\"http://yanxuan.nosdn.127.net/eabf8d6393d65cbd9e2e87c75dfcc066.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a703c316292e2c4c0b9d6551b25f1856.jpg\" _src=\"http://yanxuan.nosdn.127.net/a703c316292e2c4c0b9d6551b25f1856.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/734765425e21e073844c1c9e062dc35d.jpg\" _src=\"http://yanxuan.nosdn.127.net/734765425e21e073844c1c9e062dc35d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cc24974d903f1d0e109482954f1da8e8.jpg\" _src=\"http://yanxuan.nosdn.127.net/cc24974d903f1d0e109482954f1da8e8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/da57cdb5646fbff0cf8007f60304c30f.jpg\" _src=\"http://yanxuan.nosdn.127.net/da57cdb5646fbff0cf8007f60304c30f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ddc76ceaeddfd7b527df40e01bf7877b.jpg\" _src=\"http://yanxuan.nosdn.127.net/ddc76ceaeddfd7b527df40e01bf7877b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c158fdad4e3c80f90b02cf930b661bb0.jpg\" _src=\"http://yanxuan.nosdn.127.net/c158fdad4e3c80f90b02cf930b661bb0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b9682e656087dfa53c0f8365a0c300da.jpg\" _src=\"http://yanxuan.nosdn.127.net/b9682e656087dfa53c0f8365a0c300da.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/567cd1355b86120b192d36b4710552a0.jpg\" _src=\"http://yanxuan.nosdn.127.net/567cd1355b86120b192d36b4710552a0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/327629df66c47aeba0cb92072cf94471.jpg\" _src=\"http://yanxuan.nosdn.127.net/327629df66c47aeba0cb92072cf94471.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/31199ec47d032c282762d8d49087c5af.jpg\" _src=\"http://yanxuan.nosdn.127.net/31199ec47d032c282762d8d49087c5af.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/169746e1e8293452b58c184db111d98b.jpg\" _src=\"http://yanxuan.nosdn.127.net/169746e1e8293452b58c184db111d98b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a2a0cd32321cd198d67ea99fe5590120.jpg\" _src=\"http://yanxuan.nosdn.127.net/a2a0cd32321cd198d67ea99fe5590120.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4657e1914acce0c476d756f72e40ef97.jpg\" _src=\"http://yanxuan.nosdn.127.net/4657e1914acce0c476d756f72e40ef97.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9cb62e36a78ac61b587e6a9b5f9458a9.jpg\" _src=\"http://yanxuan.nosdn.127.net/9cb62e36a78ac61b587e6a9b5f9458a9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1b482df93b0a173be4a7bf6c2dabd543.jpg\" _src=\"http://yanxuan.nosdn.127.net/1b482df93b0a173be4a7bf6c2dabd543.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/533e784b613baea6c7d18ea81ce3b535.jpg\" _src=\"http://yanxuan.nosdn.127.net/533e784b613baea6c7d18ea81ce3b535.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/15772709fdda505c1a3a6b0e6453cce8.jpg\" _src=\"http://yanxuan.nosdn.127.net/15772709fdda505c1a3a6b0e6453cce8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3b8ffb1a51ec50d46707513e6d6cb420.jpg\" _src=\"http://yanxuan.nosdn.127.net/3b8ffb1a51ec50d46707513e6d6cb420.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5cf3463a41c5fac921cdb11c3b0c8990.jpg\" _src=\"http://yanxuan.nosdn.127.net/5cf3463a41c5fac921cdb11c3b0c8990.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2565c92fa398dd47a1458be3e9009c9b.jpg\" _src=\"http://yanxuan.nosdn.127.net/2565c92fa398dd47a1458be3e9009c9b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a4960bb2a74c1e22d82626ba7e33d33d.jpg\" _src=\"http://yanxuan.nosdn.127.net/a4960bb2a74c1e22d82626ba7e33d33d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9c13f2fb5d0daac9ef6fab890c866dc4.jpg\" _src=\"http://yanxuan.nosdn.127.net/9c13f2fb5d0daac9ef6fab890c866dc4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/749704a3f974d419e8b59a32de540784.jpg\" _src=\"http://yanxuan.nosdn.127.net/749704a3f974d419e8b59a32de540784.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d1c4d8d91866700a5e8c1cd33ea75b15.jpg\" _src=\"http://yanxuan.nosdn.127.net/d1c4d8d91866700a5e8c1cd33ea75b15.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c55b8dc599470be31aa0218438a36528.jpg\" _src=\"http://yanxuan.nosdn.127.net/c55b8dc599470be31aa0218438a36528.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/80c3a1e268905658a576eccd85a65f37.jpg\" _src=\"http://yanxuan.nosdn.127.net/80c3a1e268905658a576eccd85a65f37.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6c597a8dbecc1e3de31e9b8e5d420586.jpg\" _src=\"http://yanxuan.nosdn.127.net/6c597a8dbecc1e3de31e9b8e5d420586.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/320ec6f1fcbb288e5676832dceff16aa.jpg\" _src=\"http://yanxuan.nosdn.127.net/320ec6f1fcbb288e5676832dceff16aa.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8fc9119b2c7986bd575329d3a95abe9e.jpg\" _src=\"http://yanxuan.nosdn.127.net/8fc9119b2c7986bd575329d3a95abe9e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/438a62f5bb789a6fa70b8ed5578cd7e1.jpg\" _src=\"http://yanxuan.nosdn.127.net/438a62f5bb789a6fa70b8ed5578cd7e1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1fe137a665f79a67359a9748de200ca6.jpg\" _src=\"http://yanxuan.nosdn.127.net/1fe137a665f79a67359a9748de200ca6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/02ad092fac2cf5da935078f01afe3ff3.jpg\" _src=\"http://yanxuan.nosdn.127.net/02ad092fac2cf5da935078f01afe3ff3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d390285b49a6f4eb5ec9a460f77bce70.jpg\" _src=\"http://yanxuan.nosdn.127.net/d390285b49a6f4eb5ec9a460f77bce70.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/469c7bc6e70c8d3db7639dc3d6949356.jpg\" _src=\"http://yanxuan.nosdn.127.net/469c7bc6e70c8d3db7639dc3d6949356.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/323b6604e88a5c748b4f7cd00ca84595.jpg\" _src=\"http://yanxuan.nosdn.127.net/323b6604e88a5c748b4f7cd00ca84595.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4151a8c4cae3b9998c95ae0bd9528e93.jpg\" _src=\"http://yanxuan.nosdn.127.net/4151a8c4cae3b9998c95ae0bd9528e93.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c968e429b7a1f21ffa6281c76fd77c32.jpg\" _src=\"http://yanxuan.nosdn.127.net/c968e429b7a1f21ffa6281c76fd77c32.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '12', '0', '0', '0.00', '0.00', '1', '件', 'http://yanxuan.nosdn.127.net/1f4758a9d68c5ebfafd3fc8b960707a6.jpg', 'http://yanxuan.nosdn.127.net/aa49dfe878becf768eddc4c1636643a6.png', '46.00', '7580', '1135146', '0.00', '限时购', '', '0.00', '0', '0', '0', '50.60', null, null, null, null);
  751. INSERT INTO `nideshop_goods` VALUES ('1134032', '1008002', '1134032', '趣味粉彩系列记忆棉坐垫', '0', '100', '', '慢回弹海绵的呵护,萌趣添彩。', '<p><img src=\"http://yanxuan.nosdn.127.net/ecbd6f05e8fc71571d889324e2f0dcad.jpg\" _src=\"http://yanxuan.nosdn.127.net/ecbd6f05e8fc71571d889324e2f0dcad.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bcdbec6d1b2ff457a0e7513df91563f0.jpg\" _src=\"http://yanxuan.nosdn.127.net/bcdbec6d1b2ff457a0e7513df91563f0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/dcb21741c5c773e06cf4502925c81944.jpg\" _src=\"http://yanxuan.nosdn.127.net/dcb21741c5c773e06cf4502925c81944.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/86ffdbf55ae77e3c21a07a70445deda8.jpg\" _src=\"http://yanxuan.nosdn.127.net/86ffdbf55ae77e3c21a07a70445deda8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/598afa2e998b37d2c7513e7ab3a3ab73.jpg\" _src=\"http://yanxuan.nosdn.127.net/598afa2e998b37d2c7513e7ab3a3ab73.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/91dc47775ce962a1c2a7ac5e620f058c.jpg\" _src=\"http://yanxuan.nosdn.127.net/91dc47775ce962a1c2a7ac5e620f058c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/394b2bd47066e301a2144ab56b3b3350.jpg\" _src=\"http://yanxuan.nosdn.127.net/394b2bd47066e301a2144ab56b3b3350.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/80dd29542f2ecd571db647486cda4e9f.jpg\" _src=\"http://yanxuan.nosdn.127.net/80dd29542f2ecd571db647486cda4e9f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2a5edf27fe34192ed741ee8b011e8bcc.jpg\" _src=\"http://yanxuan.nosdn.127.net/2a5edf27fe34192ed741ee8b011e8bcc.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d2ee6fd1f0893f6c033b27f7353d1622.jpg\" _src=\"http://yanxuan.nosdn.127.net/d2ee6fd1f0893f6c033b27f7353d1622.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e11dd4cdab417eba665e0ad4ebc9243e.jpg\" _src=\"http://yanxuan.nosdn.127.net/e11dd4cdab417eba665e0ad4ebc9243e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/feb11e4b1fb22d07533f11b59d6e602f.jpg\" _src=\"http://yanxuan.nosdn.127.net/feb11e4b1fb22d07533f11b59d6e602f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5094e4cf95940490ffccfad5db698301.jpg\" _src=\"http://yanxuan.nosdn.127.net/5094e4cf95940490ffccfad5db698301.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b0f9af05048828816c9a774124509dd0.jpg\" _src=\"http://yanxuan.nosdn.127.net/b0f9af05048828816c9a774124509dd0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/82020ae739c4ba0957db83b22c102673.jpg\" _src=\"http://yanxuan.nosdn.127.net/82020ae739c4ba0957db83b22c102673.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/09789518f58c163313d5d4b190888500.jpg\" _src=\"http://yanxuan.nosdn.127.net/09789518f58c163313d5d4b190888500.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3d155f2f1d12b54e5dfc83e3d3496dc2.jpg\" _src=\"http://yanxuan.nosdn.127.net/3d155f2f1d12b54e5dfc83e3d3496dc2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/44d1b96c7810379c6b48d58e637cba55.jpg\" _src=\"http://yanxuan.nosdn.127.net/44d1b96c7810379c6b48d58e637cba55.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c2075c17cf5c447d27c89f23d2d63462.jpg\" _src=\"http://yanxuan.nosdn.127.net/c2075c17cf5c447d27c89f23d2d63462.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3985bdbdb5899bee08137ab2300f3810.jpg\" _src=\"http://yanxuan.nosdn.127.net/3985bdbdb5899bee08137ab2300f3810.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fe8a47c8056ed17d6e08ac715d3aee93.jpg\" _src=\"http://yanxuan.nosdn.127.net/fe8a47c8056ed17d6e08ac715d3aee93.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/31f98b129c846c333bb95db48c434271.jpg\" _src=\"http://yanxuan.nosdn.127.net/31f98b129c846c333bb95db48c434271.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/857e3041c75f5ffb2eeb394ca9e1211d.jpg\" _src=\"http://yanxuan.nosdn.127.net/857e3041c75f5ffb2eeb394ca9e1211d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b04c0a98d696e3ba0a37857bcca5ca4d.jpg\" _src=\"http://yanxuan.nosdn.127.net/b04c0a98d696e3ba0a37857bcca5ca4d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/33a9842b9e01b0629d56a4ae725611a1.jpg\" _src=\"http://yanxuan.nosdn.127.net/33a9842b9e01b0629d56a4ae725611a1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/296263f5dc5e365662203331a940d058.jpg\" _src=\"http://yanxuan.nosdn.127.net/296263f5dc5e365662203331a940d058.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/25e32af7a35f9c3b1105d5e1dc163e8b.jpg\" _src=\"http://yanxuan.nosdn.127.net/25e32af7a35f9c3b1105d5e1dc163e8b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6efac795f3b6207cf090846887461d65.jpg\" _src=\"http://yanxuan.nosdn.127.net/6efac795f3b6207cf090846887461d65.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e9b1e2e1c90d1481c83460ff71eaa47e.jpg\" _src=\"http://yanxuan.nosdn.127.net/e9b1e2e1c90d1481c83460ff71eaa47e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7ab77215a79e8d9cc93304ec139af08e.jpg\" _src=\"http://yanxuan.nosdn.127.net/7ab77215a79e8d9cc93304ec139af08e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5eaab9336750bddb5a88fddfae7d2fbd.jpg\" _src=\"http://yanxuan.nosdn.127.net/5eaab9336750bddb5a88fddfae7d2fbd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e7046719cdf72538e69b0313587c8565.jpg\" _src=\"http://yanxuan.nosdn.127.net/e7046719cdf72538e69b0313587c8565.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/748836f2589106b87efec1c6be06f93d.jpg\" _src=\"http://yanxuan.nosdn.127.net/748836f2589106b87efec1c6be06f93d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/40da8c4bed171c0fbfa9f2089a2309d7.jpg\" _src=\"http://yanxuan.nosdn.127.net/40da8c4bed171c0fbfa9f2089a2309d7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/468ed6ff0bbee10ba15467bb7b75c202.jpg\" _src=\"http://yanxuan.nosdn.127.net/468ed6ff0bbee10ba15467bb7b75c202.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e2e1f9262f85b3301a6c9780acfcbb75.jpg\" _src=\"http://yanxuan.nosdn.127.net/e2e1f9262f85b3301a6c9780acfcbb75.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3ef0c70c73bff6274be4c562e88a7d6f.jpg\" _src=\"http://yanxuan.nosdn.127.net/3ef0c70c73bff6274be4c562e88a7d6f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/720c18b1bd787c125d59aa8f8f4c8e61.jpg\" _src=\"http://yanxuan.nosdn.127.net/720c18b1bd787c125d59aa8f8f4c8e61.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cc80af1a2b58ac83a5d65cb3fa02f3db.jpg\" _src=\"http://yanxuan.nosdn.127.net/cc80af1a2b58ac83a5d65cb3fa02f3db.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/98d647cacddc7bdd7eae86050eb9f3d0.jpg\" _src=\"http://yanxuan.nosdn.127.net/98d647cacddc7bdd7eae86050eb9f3d0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a091331dc2412de558446a42831b0358.jpg\" _src=\"http://yanxuan.nosdn.127.net/a091331dc2412de558446a42831b0358.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bd6126e6eb2a4e493104f75ecbeb6e32.jpg\" _src=\"http://yanxuan.nosdn.127.net/bd6126e6eb2a4e493104f75ecbeb6e32.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3d15ad6abec2f8c499c0d9d036a8b524.jpg\" _src=\"http://yanxuan.nosdn.127.net/3d15ad6abec2f8c499c0d9d036a8b524.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/69a56acc851dd042a52f18c78ac8ee33.jpg\" _src=\"http://yanxuan.nosdn.127.net/69a56acc851dd042a52f18c78ac8ee33.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c8bde0e10b1e089088ca38fd77fbf994.jpg\" _src=\"http://yanxuan.nosdn.127.net/c8bde0e10b1e089088ca38fd77fbf994.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bd9ffb9b37957549689ece880fc78b2f.jpg\" _src=\"http://yanxuan.nosdn.127.net/bd9ffb9b37957549689ece880fc78b2f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/09ad556caef32a5c951dc7fbad1f8de3.jpg\" _src=\"http://yanxuan.nosdn.127.net/09ad556caef32a5c951dc7fbad1f8de3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a919f989730d977f8b1745b5dc0e6a8d.jpg\" _src=\"http://yanxuan.nosdn.127.net/a919f989730d977f8b1745b5dc0e6a8d.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '13', '0', '0', '0.00', '0.00', '1', '件', 'http://yanxuan.nosdn.127.net/5357e0476acbc71131df5a3fb3ea13d9.jpg', 'http://yanxuan.nosdn.127.net/8b30eeb17c831eba08b97bdcb4c46a8e.png', '49.00', '2869', '1135151', '0.00', '限时购', '', '0.00', '0', '0', '0', '53.90', null, null, null, null);
  752. INSERT INTO `nideshop_goods` VALUES ('1134036', '1008015', '1134036', '凤梨酥 360克', '0', '100', '', '特别添加10%凤梨果肉', '', '1', '2017-08-30 11:40:11', '9', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/9d516e7b11f9ba122e115a029749b6ba.png', 'http://yanxuan.nosdn.127.net/9356cc27b22bd47ad43913d13226555f.png', '38.00', '4683', '1135160', '0.00', '限时购', '', '0.00', '0', '0', '1', '41.80', null, null, null, null);
  753. INSERT INTO `nideshop_goods` VALUES ('1134056', '1008009', '1134056', '竹语初棉撞色四件套', '0', '100', '', '天然竹醌成分,抑菌爽滑健康睡眠', '<p><img src=\"http://yanxuan.nosdn.127.net/79ba1029377913ad2aff06285f0fb6b1.jpg\" _src=\"http://yanxuan.nosdn.127.net/79ba1029377913ad2aff06285f0fb6b1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ad315f893e64a61ff80ef80a292d513c.jpg\" _src=\"http://yanxuan.nosdn.127.net/ad315f893e64a61ff80ef80a292d513c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/89ae1a3a2137e96757b8b79e0242dd20.jpg\" _src=\"http://yanxuan.nosdn.127.net/89ae1a3a2137e96757b8b79e0242dd20.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cd0a2c331b1b290bbae37b618e449e45.jpg\" _src=\"http://yanxuan.nosdn.127.net/cd0a2c331b1b290bbae37b618e449e45.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3d11919cfeff0d8c7e74bddf1d2691e2.jpg\" _src=\"http://yanxuan.nosdn.127.net/3d11919cfeff0d8c7e74bddf1d2691e2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cfda1ff4028e0c2deae3348d38507813.jpg\" _src=\"http://yanxuan.nosdn.127.net/cfda1ff4028e0c2deae3348d38507813.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/eb1425e3a8f2cc18080914e12664fc5e.jpg\" _src=\"http://yanxuan.nosdn.127.net/eb1425e3a8f2cc18080914e12664fc5e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/92947dc66812db83d4adc47d8f7a8a94.jpg\" _src=\"http://yanxuan.nosdn.127.net/92947dc66812db83d4adc47d8f7a8a94.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6027338c777d3fc8c9fa371b21128be3.jpg\" _src=\"http://yanxuan.nosdn.127.net/6027338c777d3fc8c9fa371b21128be3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d46ef08621b610f95d955e5173c5be81.jpg\" _src=\"http://yanxuan.nosdn.127.net/d46ef08621b610f95d955e5173c5be81.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/369953fa2ffef9298a79d0fe12775578.jpg\" _src=\"http://yanxuan.nosdn.127.net/369953fa2ffef9298a79d0fe12775578.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ef9e1a9d4a25469e58cfd5e0ff76eccf.jpg\" _src=\"http://yanxuan.nosdn.127.net/ef9e1a9d4a25469e58cfd5e0ff76eccf.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/11bb09fc9a265df62eb0bf4cd99749f5.jpg\" _src=\"http://yanxuan.nosdn.127.net/11bb09fc9a265df62eb0bf4cd99749f5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/80998b2fb9c6cca348e19caca983ce86.jpg\" _src=\"http://yanxuan.nosdn.127.net/80998b2fb9c6cca348e19caca983ce86.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5bf53b5ed9a20e5a9e02774bf97bfd28.jpg\" _src=\"http://yanxuan.nosdn.127.net/5bf53b5ed9a20e5a9e02774bf97bfd28.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3cd15fc03c5a3289adf2da538c114cb6.jpg\" _src=\"http://yanxuan.nosdn.127.net/3cd15fc03c5a3289adf2da538c114cb6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/dd3b1024e1cd4c80048afb5b84323c1e.jpg\" _src=\"http://yanxuan.nosdn.127.net/dd3b1024e1cd4c80048afb5b84323c1e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/60fde6de386a3c0e555e1b272cf15b54.jpg\" _src=\"http://yanxuan.nosdn.127.net/60fde6de386a3c0e555e1b272cf15b54.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c70ef3629ae8917158e693f5bc7ee9b9.jpg\" _src=\"http://yanxuan.nosdn.127.net/c70ef3629ae8917158e693f5bc7ee9b9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c5329cb330d387b1ccecaa8c68b002c4.jpg\" _src=\"http://yanxuan.nosdn.127.net/c5329cb330d387b1ccecaa8c68b002c4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/337b781642c8cb61faa1357c4f0e158d.jpg\" _src=\"http://yanxuan.nosdn.127.net/337b781642c8cb61faa1357c4f0e158d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bfb06d7d54cfd02007eab155b9cf7b37.jpg\" _src=\"http://yanxuan.nosdn.127.net/bfb06d7d54cfd02007eab155b9cf7b37.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f144ba9e36d9af2ad89e111ec3f63fae.jpg\" _src=\"http://yanxuan.nosdn.127.net/f144ba9e36d9af2ad89e111ec3f63fae.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ba4f100da1689eaf7fecbb5c16a3cc51.jpg\" _src=\"http://yanxuan.nosdn.127.net/ba4f100da1689eaf7fecbb5c16a3cc51.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b43d19cab8097f3cc6f6f25f55c2da29.jpg\" _src=\"http://yanxuan.nosdn.127.net/b43d19cab8097f3cc6f6f25f55c2da29.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9690d4f141791b1b1712744e70d48e8b.jpg\" _src=\"http://yanxuan.nosdn.127.net/9690d4f141791b1b1712744e70d48e8b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3596aee4d5c35667092b9d91296aafed.jpg\" _src=\"http://yanxuan.nosdn.127.net/3596aee4d5c35667092b9d91296aafed.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ee994a21d4ab1f3ca808e8e1ed7a63fa.jpg\" _src=\"http://yanxuan.nosdn.127.net/ee994a21d4ab1f3ca808e8e1ed7a63fa.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/64919bffe93c9233583af94502a0b5e5.jpg\" _src=\"http://yanxuan.nosdn.127.net/64919bffe93c9233583af94502a0b5e5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8e6e7c4b3c84511cb1613f2ad46a9cb6.jpg\" _src=\"http://yanxuan.nosdn.127.net/8e6e7c4b3c84511cb1613f2ad46a9cb6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/778bdc6ad9fd24fbb782776c39832ba5.jpg\" _src=\"http://yanxuan.nosdn.127.net/778bdc6ad9fd24fbb782776c39832ba5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9175288f3f8909ba60d36cefb350aa13.jpg\" _src=\"http://yanxuan.nosdn.127.net/9175288f3f8909ba60d36cefb350aa13.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/05c1cada48dbf028b3fac1a467278412.jpg\" _src=\"http://yanxuan.nosdn.127.net/05c1cada48dbf028b3fac1a467278412.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/be138ae76b2cac1b537b8da72a57abd9.jpg\" _src=\"http://yanxuan.nosdn.127.net/be138ae76b2cac1b537b8da72a57abd9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/13ef773a94d2f778d767f696cd8c4b95.jpg\" _src=\"http://yanxuan.nosdn.127.net/13ef773a94d2f778d767f696cd8c4b95.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/372030f0c8fe35e6c9cbd8c15c1a9611.jpg\" _src=\"http://yanxuan.nosdn.127.net/372030f0c8fe35e6c9cbd8c15c1a9611.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/567536349f71c7fe3aee5cf0d380d55b.jpg\" _src=\"http://yanxuan.nosdn.127.net/567536349f71c7fe3aee5cf0d380d55b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/54171cdb9d3d33727088cadfb1a142b9.jpg\" _src=\"http://yanxuan.nosdn.127.net/54171cdb9d3d33727088cadfb1a142b9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/22f2f338e25a1570a0edad92fdb06341.jpg\" _src=\"http://yanxuan.nosdn.127.net/22f2f338e25a1570a0edad92fdb06341.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b6029e1838ad4d14947d45989c671acc.jpg\" _src=\"http://yanxuan.nosdn.127.net/b6029e1838ad4d14947d45989c671acc.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/786692b4ac8c90f617eb3952cbc34346.jpg\" _src=\"http://yanxuan.nosdn.127.net/786692b4ac8c90f617eb3952cbc34346.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ffd48ca06353d09babf7520a452e2afa.jpg\" _src=\"http://yanxuan.nosdn.127.net/ffd48ca06353d09babf7520a452e2afa.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3f4005528a825cdd8fa44d75a315bb6a.jpg\" _src=\"http://yanxuan.nosdn.127.net/3f4005528a825cdd8fa44d75a315bb6a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/62a2cd885b0a894bf76ab6e388bfadf6.jpg\" _src=\"http://yanxuan.nosdn.127.net/62a2cd885b0a894bf76ab6e388bfadf6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5c91b5e08e107e6ee62411ad99c3d60a.jpg\" _src=\"http://yanxuan.nosdn.127.net/5c91b5e08e107e6ee62411ad99c3d60a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c987c04acbfcdd4983f6193730662b8d.jpg\" _src=\"http://yanxuan.nosdn.127.net/c987c04acbfcdd4983f6193730662b8d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/111a3701590eca6859a50e5864fde12c.jpg\" _src=\"http://yanxuan.nosdn.127.net/111a3701590eca6859a50e5864fde12c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/18b9123780c721a612e0079568ac0686.jpg\" _src=\"http://yanxuan.nosdn.127.net/18b9123780c721a612e0079568ac0686.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8bc614e557b357d00279223b82f90b39.jpg\" _src=\"http://yanxuan.nosdn.127.net/8bc614e557b357d00279223b82f90b39.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c7f4601f26a0edc0198348a4ffde6207.jpg\" _src=\"http://yanxuan.nosdn.127.net/c7f4601f26a0edc0198348a4ffde6207.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5717ecb58595fb16666d616fec5e930f.jpg\" _src=\"http://yanxuan.nosdn.127.net/5717ecb58595fb16666d616fec5e930f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b5eb0742a6bda8f0b4775de41e2c7df3.jpg\" _src=\"http://yanxuan.nosdn.127.net/b5eb0742a6bda8f0b4775de41e2c7df3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/78367a5a6d84e79d7555aad25b14aeda.jpg\" _src=\"http://yanxuan.nosdn.127.net/78367a5a6d84e79d7555aad25b14aeda.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/638041553c576ba9ae55676d26713128.jpg\" _src=\"http://yanxuan.nosdn.127.net/638041553c576ba9ae55676d26713128.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/818dfbab1fb3de8d12e3849cdd4df996.jpg\" _src=\"http://yanxuan.nosdn.127.net/818dfbab1fb3de8d12e3849cdd4df996.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b258dcf889cdf082db902f6b5836521d.jpg\" _src=\"http://yanxuan.nosdn.127.net/b258dcf889cdf082db902f6b5836521d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f9979167a9134858fc8f946b8cd0f326.jpg\" _src=\"http://yanxuan.nosdn.127.net/f9979167a9134858fc8f946b8cd0f326.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '14', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/caa02e76b49f6d178998a865a0e7d866.jpg', 'http://yanxuan.nosdn.127.net/c29f47f58ba1e3c2ff5a193eec0b11d6.png', '429.00', '3452', '1135193', '0.00', '限时购', '', '0.00', '0', '0', '0', '471.90', null, null, null, null);
  754. INSERT INTO `nideshop_goods` VALUES ('1135000', '1008009', '1135000', '几何印花AB面全棉四件套', '0', '100', '', '几何线条,舒适的北欧线条风', '<p><img src=\"http://yanxuan.nosdn.127.net/5886d64bd11e739481409fd0755f27ff.jpg\" _src=\"http://yanxuan.nosdn.127.net/5886d64bd11e739481409fd0755f27ff.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e7f3e7a7b307aa36dc368ddb035d7bf6.jpg\" _src=\"http://yanxuan.nosdn.127.net/e7f3e7a7b307aa36dc368ddb035d7bf6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8f86620fabba81db05a1cd9e0d34fcc2.jpg\" _src=\"http://yanxuan.nosdn.127.net/8f86620fabba81db05a1cd9e0d34fcc2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/73576599168ee4d9ca99410ed317173f.jpg\" _src=\"http://yanxuan.nosdn.127.net/73576599168ee4d9ca99410ed317173f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2993458f7e4c013a6c3906c987e45615.jpg\" _src=\"http://yanxuan.nosdn.127.net/2993458f7e4c013a6c3906c987e45615.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3c024bfbbde0bc78f809ca1a0a5ff86e.jpg\" _src=\"http://yanxuan.nosdn.127.net/3c024bfbbde0bc78f809ca1a0a5ff86e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7dd40693c4bfb89dce53e70ef68e2613.jpg\" _src=\"http://yanxuan.nosdn.127.net/7dd40693c4bfb89dce53e70ef68e2613.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/dade815f5e7cb4524925fcbbb908730c.jpg\" _src=\"http://yanxuan.nosdn.127.net/dade815f5e7cb4524925fcbbb908730c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/80bdbb09ce624dc51619b6c304da4611.jpg\" _src=\"http://yanxuan.nosdn.127.net/80bdbb09ce624dc51619b6c304da4611.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/24c7c10cb17a2e23e279f919ce8b5d64.jpg\" _src=\"http://yanxuan.nosdn.127.net/24c7c10cb17a2e23e279f919ce8b5d64.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/949346a006ab00e938a6893f07df5b15.jpg\" _src=\"http://yanxuan.nosdn.127.net/949346a006ab00e938a6893f07df5b15.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1f76f8a481af8f96b2a2833710568424.jpg\" _src=\"http://yanxuan.nosdn.127.net/1f76f8a481af8f96b2a2833710568424.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/391c87acd895cb525af5cd27381399fd.jpg\" _src=\"http://yanxuan.nosdn.127.net/391c87acd895cb525af5cd27381399fd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a2d20f3c2a11f8ac8b50f79a995ce071.jpg\" _src=\"http://yanxuan.nosdn.127.net/a2d20f3c2a11f8ac8b50f79a995ce071.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/37abae75d9c168f8f411fe22f2762b82.jpg\" _src=\"http://yanxuan.nosdn.127.net/37abae75d9c168f8f411fe22f2762b82.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5e7470c29ea8f859b8cd0242b6f85b4e.jpg\" _src=\"http://yanxuan.nosdn.127.net/5e7470c29ea8f859b8cd0242b6f85b4e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b9955094ae733643cca3fce2cafc2474.jpg\" _src=\"http://yanxuan.nosdn.127.net/b9955094ae733643cca3fce2cafc2474.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c1b1d7d675c48055c9ce049ff8eb56d4.jpg\" _src=\"http://yanxuan.nosdn.127.net/c1b1d7d675c48055c9ce049ff8eb56d4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/408547e9391b0d3cfd7e20a0794d7dc5.jpg\" _src=\"http://yanxuan.nosdn.127.net/408547e9391b0d3cfd7e20a0794d7dc5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/16bb6695b86e9a3e0943aee9a3fea770.jpg\" _src=\"http://yanxuan.nosdn.127.net/16bb6695b86e9a3e0943aee9a3fea770.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8c6ba7ccf5b7ba3813e845195b666656.jpg\" _src=\"http://yanxuan.nosdn.127.net/8c6ba7ccf5b7ba3813e845195b666656.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b3465000f419598594412a9117644a62.jpg\" _src=\"http://yanxuan.nosdn.127.net/b3465000f419598594412a9117644a62.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2f197914a2baa0c6f691649447fb292c.jpg\" _src=\"http://yanxuan.nosdn.127.net/2f197914a2baa0c6f691649447fb292c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/52cc6d94921734850d364bc9607ee4c0.jpg\" _src=\"http://yanxuan.nosdn.127.net/52cc6d94921734850d364bc9607ee4c0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1f01a55f7e32bd6908dd9a9276083106.jpg\" _src=\"http://yanxuan.nosdn.127.net/1f01a55f7e32bd6908dd9a9276083106.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c5bfa8dc19d56588ea54410c46a03902.jpg\" _src=\"http://yanxuan.nosdn.127.net/c5bfa8dc19d56588ea54410c46a03902.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cd4b80cb1ae6363cbd66da405a98fc66.jpg\" _src=\"http://yanxuan.nosdn.127.net/cd4b80cb1ae6363cbd66da405a98fc66.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b956be256bfeaa909d524663060c9b63.jpg\" _src=\"http://yanxuan.nosdn.127.net/b956be256bfeaa909d524663060c9b63.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f8ea8188890ccae29e7df332038d3b17.jpg\" _src=\"http://yanxuan.nosdn.127.net/f8ea8188890ccae29e7df332038d3b17.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/62562eda777db6aef331786911357dc8.jpg\" _src=\"http://yanxuan.nosdn.127.net/62562eda777db6aef331786911357dc8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3afa4585fab6a65a055e06a8e927bc2a.jpg\" _src=\"http://yanxuan.nosdn.127.net/3afa4585fab6a65a055e06a8e927bc2a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/57ed5177d964a3322248b5934aac6525.jpg\" _src=\"http://yanxuan.nosdn.127.net/57ed5177d964a3322248b5934aac6525.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/81fae26aceba01eda032d98f76977ad0.jpg\" _src=\"http://yanxuan.nosdn.127.net/81fae26aceba01eda032d98f76977ad0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5369a2bffc1bef80bb7d9ae288a5cb1d.jpg\" _src=\"http://yanxuan.nosdn.127.net/5369a2bffc1bef80bb7d9ae288a5cb1d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3e9b70a3e98d756876290fbc37736fd1.jpg\" _src=\"http://yanxuan.nosdn.127.net/3e9b70a3e98d756876290fbc37736fd1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b8cfe3bb6ec0c6705bd1d574a5636490.jpg\" _src=\"http://yanxuan.nosdn.127.net/b8cfe3bb6ec0c6705bd1d574a5636490.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1973d875f05efc544b3c47c0bb7cc4a1.jpg\" _src=\"http://yanxuan.nosdn.127.net/1973d875f05efc544b3c47c0bb7cc4a1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2753c2a2129c83b379cd109d63ce248d.jpg\" _src=\"http://yanxuan.nosdn.127.net/2753c2a2129c83b379cd109d63ce248d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bc2de3ca83f8056a2a13b7ccab34946e.jpg\" _src=\"http://yanxuan.nosdn.127.net/bc2de3ca83f8056a2a13b7ccab34946e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2aacd2f200beb9eaa8215cf8f91384f1.jpg\" _src=\"http://yanxuan.nosdn.127.net/2aacd2f200beb9eaa8215cf8f91384f1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/103e1c63addfe61233f99b399392bec2.jpg\" _src=\"http://yanxuan.nosdn.127.net/103e1c63addfe61233f99b399392bec2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bc18ce8e2612652826538d27f00543b1.jpg\" _src=\"http://yanxuan.nosdn.127.net/bc18ce8e2612652826538d27f00543b1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/30dc9f9df997d44cd5b69b1060bdc19a.jpg\" _src=\"http://yanxuan.nosdn.127.net/30dc9f9df997d44cd5b69b1060bdc19a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f5a0f531246c6197198334d5dc82bb3f.jpg\" _src=\"http://yanxuan.nosdn.127.net/f5a0f531246c6197198334d5dc82bb3f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/76cf2868c5093025e4bfc0cc63161659.jpg\" _src=\"http://yanxuan.nosdn.127.net/76cf2868c5093025e4bfc0cc63161659.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/485b4307e5ad532095910245936526e5.jpg\" _src=\"http://yanxuan.nosdn.127.net/485b4307e5ad532095910245936526e5.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '13', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/75bbec96301cc7b71f0727b869ed0dba.jpg', 'http://yanxuan.nosdn.127.net/53d0309471b570a7e12a3f01ba694491.png', '359.00', '3734', '1136001', '0.00', '限时购', '', '0.00', '0', '0', '0', '394.90', null, null, null, null);
  755. INSERT INTO `nideshop_goods` VALUES ('1135001', '1008009', '1135001', '印象森林全棉贡缎四件套', '0', '100', '', '细腻长绒棉的柔滑', '<p><img src=\"http://yanxuan.nosdn.127.net/4702fbacb2b1d1019ab1ee6cbb95c923.jpg\" _src=\"http://yanxuan.nosdn.127.net/4702fbacb2b1d1019ab1ee6cbb95c923.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/755c5eefe4c7354b6c57802209d86497.jpg\" _src=\"http://yanxuan.nosdn.127.net/755c5eefe4c7354b6c57802209d86497.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2edd5105353296066b11cb66f85c69c2.jpg\" _src=\"http://yanxuan.nosdn.127.net/2edd5105353296066b11cb66f85c69c2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a9d9231605ac183f0ec9f46de4904c2d.jpg\" _src=\"http://yanxuan.nosdn.127.net/a9d9231605ac183f0ec9f46de4904c2d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/66fb02009633c24b2566dbd723f38a94.jpg\" _src=\"http://yanxuan.nosdn.127.net/66fb02009633c24b2566dbd723f38a94.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c75472036d5bd792901673006c5880c2.jpg\" _src=\"http://yanxuan.nosdn.127.net/c75472036d5bd792901673006c5880c2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/60181b7a9a5d691b9b53d810fad53ffb.jpg\" _src=\"http://yanxuan.nosdn.127.net/60181b7a9a5d691b9b53d810fad53ffb.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cc6de6986c6632858d46a16dfcc27f46.jpg\" _src=\"http://yanxuan.nosdn.127.net/cc6de6986c6632858d46a16dfcc27f46.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1795a9d8aa65e3068081e561f28a61e4.jpg\" _src=\"http://yanxuan.nosdn.127.net/1795a9d8aa65e3068081e561f28a61e4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fa915eb82a90aba1900a2b54b34a0231.jpg\" _src=\"http://yanxuan.nosdn.127.net/fa915eb82a90aba1900a2b54b34a0231.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cb6720be5400b0769a80ddf087ae570d.jpg\" _src=\"http://yanxuan.nosdn.127.net/cb6720be5400b0769a80ddf087ae570d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/58b2ee6d2e1c5dc9c7cba6fbe1aefabf.jpg\" _src=\"http://yanxuan.nosdn.127.net/58b2ee6d2e1c5dc9c7cba6fbe1aefabf.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a0570931eb6f6bc853a55a5c71bb6970.jpg\" _src=\"http://yanxuan.nosdn.127.net/a0570931eb6f6bc853a55a5c71bb6970.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ae577143f6940c288373117b5d52be63.jpg\" _src=\"http://yanxuan.nosdn.127.net/ae577143f6940c288373117b5d52be63.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/993e135b0e5912b7d92d24d1d2471548.jpg\" _src=\"http://yanxuan.nosdn.127.net/993e135b0e5912b7d92d24d1d2471548.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/06aba6cf747a4edbbd17b046fa428258.jpg\" _src=\"http://yanxuan.nosdn.127.net/06aba6cf747a4edbbd17b046fa428258.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d4be908f358aa8001bca227c85c28df5.jpg\" _src=\"http://yanxuan.nosdn.127.net/d4be908f358aa8001bca227c85c28df5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7dd8d4d678139989ccbb246b519c581e.jpg\" _src=\"http://yanxuan.nosdn.127.net/7dd8d4d678139989ccbb246b519c581e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/55c9acc8f5d5dc957b99b46ccbcbdcfb.jpg\" _src=\"http://yanxuan.nosdn.127.net/55c9acc8f5d5dc957b99b46ccbcbdcfb.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b89e9829024cf72181c57b1a85cf0e81.jpg\" _src=\"http://yanxuan.nosdn.127.net/b89e9829024cf72181c57b1a85cf0e81.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/40e2d5c6f0b661ae1647930ee6aed691.jpg\" _src=\"http://yanxuan.nosdn.127.net/40e2d5c6f0b661ae1647930ee6aed691.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/023aecf5d7a57b8a58915123991b1f2d.jpg\" _src=\"http://yanxuan.nosdn.127.net/023aecf5d7a57b8a58915123991b1f2d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/21ed6575668dbc20157452aa976b5a8f.jpg\" _src=\"http://yanxuan.nosdn.127.net/21ed6575668dbc20157452aa976b5a8f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/751e860ff17939b02045c1cc0292f389.jpg\" _src=\"http://yanxuan.nosdn.127.net/751e860ff17939b02045c1cc0292f389.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6bbf6beda850f79e1316bb2e0457820c.jpg\" _src=\"http://yanxuan.nosdn.127.net/6bbf6beda850f79e1316bb2e0457820c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/865833614c02682bfe4274e4b2b66540.jpg\" _src=\"http://yanxuan.nosdn.127.net/865833614c02682bfe4274e4b2b66540.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ba51ed4bbd544ddf90f044715843d6f3.jpg\" _src=\"http://yanxuan.nosdn.127.net/ba51ed4bbd544ddf90f044715843d6f3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/76c9e44a282dc10144dc3a0b63e557df.jpg\" _src=\"http://yanxuan.nosdn.127.net/76c9e44a282dc10144dc3a0b63e557df.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0ea6bfbc62166a5de4d30c2a87020a28.jpg\" _src=\"http://yanxuan.nosdn.127.net/0ea6bfbc62166a5de4d30c2a87020a28.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3b878651917c2bbd381841fdbc3ac116.jpg\" _src=\"http://yanxuan.nosdn.127.net/3b878651917c2bbd381841fdbc3ac116.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8fc20f1ef144dc65c267a579864fca8e.jpg\" _src=\"http://yanxuan.nosdn.127.net/8fc20f1ef144dc65c267a579864fca8e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7f9584b53c9219c5b643113a4dca04e5.jpg\" _src=\"http://yanxuan.nosdn.127.net/7f9584b53c9219c5b643113a4dca04e5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c13d27e2a506c3f09a0f00dfc5e0700c.jpg\" _src=\"http://yanxuan.nosdn.127.net/c13d27e2a506c3f09a0f00dfc5e0700c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2c624fc248efc08f147663c9c082638e.jpg\" _src=\"http://yanxuan.nosdn.127.net/2c624fc248efc08f147663c9c082638e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/41525d1e058cc0a995a3c72c29fabe40.jpg\" _src=\"http://yanxuan.nosdn.127.net/41525d1e058cc0a995a3c72c29fabe40.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/20aa7be89f9509e429ba937513f0a9da.jpg\" _src=\"http://yanxuan.nosdn.127.net/20aa7be89f9509e429ba937513f0a9da.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0a0a751ff157ba0737615debb2350c4e.jpg\" _src=\"http://yanxuan.nosdn.127.net/0a0a751ff157ba0737615debb2350c4e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/284b656dd79635024be2a617ccdbb0d2.jpg\" _src=\"http://yanxuan.nosdn.127.net/284b656dd79635024be2a617ccdbb0d2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1f8c4b7213a0d6f573371c1d8a451cad.jpg\" _src=\"http://yanxuan.nosdn.127.net/1f8c4b7213a0d6f573371c1d8a451cad.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3cdaa6b699e185b1cc5fc298e71988a0.jpg\" _src=\"http://yanxuan.nosdn.127.net/3cdaa6b699e185b1cc5fc298e71988a0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/48f805ec011110caf42a6bcdb7a20212.jpg\" _src=\"http://yanxuan.nosdn.127.net/48f805ec011110caf42a6bcdb7a20212.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d036a9dde26520900f8c4c6f3c2a099b.jpg\" _src=\"http://yanxuan.nosdn.127.net/d036a9dde26520900f8c4c6f3c2a099b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/51219315766813126ef28e0efead56fa.jpg\" _src=\"http://yanxuan.nosdn.127.net/51219315766813126ef28e0efead56fa.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e9265a6928043835fbbbaf390181d0b2.jpg\" _src=\"http://yanxuan.nosdn.127.net/e9265a6928043835fbbbaf390181d0b2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d2110635a0148a28d13031a9a98f5841.jpg\" _src=\"http://yanxuan.nosdn.127.net/d2110635a0148a28d13031a9a98f5841.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e1ee70c2067fcd6912f4bd47b7d7d6a6.jpg\" _src=\"http://yanxuan.nosdn.127.net/e1ee70c2067fcd6912f4bd47b7d7d6a6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/50e8f767a43bd1b664829f731223cf7c.jpg\" _src=\"http://yanxuan.nosdn.127.net/50e8f767a43bd1b664829f731223cf7c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d42941b2a2af951b26b043ca599637f3.jpg\" _src=\"http://yanxuan.nosdn.127.net/d42941b2a2af951b26b043ca599637f3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bf24a9f35948cae69acc693c8756d302.jpg\" _src=\"http://yanxuan.nosdn.127.net/bf24a9f35948cae69acc693c8756d302.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/79652c19d4d290b6fc87048ddaf5911a.jpg\" _src=\"http://yanxuan.nosdn.127.net/79652c19d4d290b6fc87048ddaf5911a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e2b2a5a2a56d8ebcdf43da4ea31dedd6.jpg\" _src=\"http://yanxuan.nosdn.127.net/e2b2a5a2a56d8ebcdf43da4ea31dedd6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6fe9ce1bd99aa9a1e6e011601fe96b63.jpg\" _src=\"http://yanxuan.nosdn.127.net/6fe9ce1bd99aa9a1e6e011601fe96b63.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '7', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/23f80489c98c3101f7c1a713f6b8d8d2.jpg', 'http://yanxuan.nosdn.127.net/f82ee85933d6f0cc95382215281d3526.png', '459.00', '1038', '1136008', '0.00', '限时购', '', '0.00', '0', '0', '0', '504.90', null, null, null, null);
  756. INSERT INTO `nideshop_goods` VALUES ('1135002', '1008009', '1135002', '宫廷奢华真丝四件套', '0', '100', '', '100%桑蚕丝,丝滑润肤', '<p><img src=\"http://yanxuan.nosdn.127.net/0424fc28e47640c7c6ba75312c2ca5bf.jpg\" _src=\"http://yanxuan.nosdn.127.net/0424fc28e47640c7c6ba75312c2ca5bf.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8fc6f2fd12ad2ab3e88967f065ff2bbd.jpg\" _src=\"http://yanxuan.nosdn.127.net/8fc6f2fd12ad2ab3e88967f065ff2bbd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/22c6af025ed0d821fa457007299374b3.jpg\" _src=\"http://yanxuan.nosdn.127.net/22c6af025ed0d821fa457007299374b3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4fd5bff6ec89da1b06fa816519d6e7b6.jpg\" _src=\"http://yanxuan.nosdn.127.net/4fd5bff6ec89da1b06fa816519d6e7b6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/829b112ed840e85bc044f06c6ceab03c.jpg\" _src=\"http://yanxuan.nosdn.127.net/829b112ed840e85bc044f06c6ceab03c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8133e03d441d5cc5b76b24a08dc07d98.jpg\" _src=\"http://yanxuan.nosdn.127.net/8133e03d441d5cc5b76b24a08dc07d98.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8d63f4e1398c83c683d7338d4f8342b6.jpg\" _src=\"http://yanxuan.nosdn.127.net/8d63f4e1398c83c683d7338d4f8342b6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/282121278c7b6955012291e22e593eb1.jpg\" _src=\"http://yanxuan.nosdn.127.net/282121278c7b6955012291e22e593eb1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a20f4e08ee42189505c6280deebd099b.jpg\" _src=\"http://yanxuan.nosdn.127.net/a20f4e08ee42189505c6280deebd099b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4e684e5f1a11350dda1fed29bdd3e2b9.jpg\" _src=\"http://yanxuan.nosdn.127.net/4e684e5f1a11350dda1fed29bdd3e2b9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/14b61c5ee99410c074e707a218eeda25.jpg\" _src=\"http://yanxuan.nosdn.127.net/14b61c5ee99410c074e707a218eeda25.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/09017d6080bd06cc61fe041abc63e595.jpg\" _src=\"http://yanxuan.nosdn.127.net/09017d6080bd06cc61fe041abc63e595.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6ce679a19442519e3c294af05bfa489f.jpg\" _src=\"http://yanxuan.nosdn.127.net/6ce679a19442519e3c294af05bfa489f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ba880116df8e433bec57a150434cf902.jpg\" _src=\"http://yanxuan.nosdn.127.net/ba880116df8e433bec57a150434cf902.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9db45016db258bee5056e3679d7133dd.jpg\" _src=\"http://yanxuan.nosdn.127.net/9db45016db258bee5056e3679d7133dd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6443ecab537c173230f5b9145e72c63c.jpg\" _src=\"http://yanxuan.nosdn.127.net/6443ecab537c173230f5b9145e72c63c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e3a2430b1b44534b42fba1bc619fe99b.jpg\" _src=\"http://yanxuan.nosdn.127.net/e3a2430b1b44534b42fba1bc619fe99b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5f4ab8ef6f39d6ee1982a1b5235df01e.jpg\" _src=\"http://yanxuan.nosdn.127.net/5f4ab8ef6f39d6ee1982a1b5235df01e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/deb0bd2f9c6305edda5a913254eb0226.jpg\" _src=\"http://yanxuan.nosdn.127.net/deb0bd2f9c6305edda5a913254eb0226.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5f605418c295aeafbea74c080b80e1a4.jpg\" _src=\"http://yanxuan.nosdn.127.net/5f605418c295aeafbea74c080b80e1a4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/09e488b6365dfe88c62c342bb6e2651d.jpg\" _src=\"http://yanxuan.nosdn.127.net/09e488b6365dfe88c62c342bb6e2651d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/01ae7e8310ba9d93ea0126f45827b1bf.jpg\" _src=\"http://yanxuan.nosdn.127.net/01ae7e8310ba9d93ea0126f45827b1bf.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b3bc7467085d7e29f6361d150faa3a12.jpg\" _src=\"http://yanxuan.nosdn.127.net/b3bc7467085d7e29f6361d150faa3a12.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a6d9a750dc037b2d4f12caae612aca01.jpg\" _src=\"http://yanxuan.nosdn.127.net/a6d9a750dc037b2d4f12caae612aca01.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/71e32a86e630b8002c9107ca1f277706.jpg\" _src=\"http://yanxuan.nosdn.127.net/71e32a86e630b8002c9107ca1f277706.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/325da9327a2285f12ef2d5bc8c4b0b59.jpg\" _src=\"http://yanxuan.nosdn.127.net/325da9327a2285f12ef2d5bc8c4b0b59.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3518bd7650cfe0a2a771b15b860056e1.jpg\" _src=\"http://yanxuan.nosdn.127.net/3518bd7650cfe0a2a771b15b860056e1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cec68b3a090bbc20e92ab615f46b6cb0.jpg\" _src=\"http://yanxuan.nosdn.127.net/cec68b3a090bbc20e92ab615f46b6cb0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/650d14dad1f859e6e3e87fd6e915023d.jpg\" _src=\"http://yanxuan.nosdn.127.net/650d14dad1f859e6e3e87fd6e915023d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9287025a3894cfcbb0a123943e1a7f40.jpg\" _src=\"http://yanxuan.nosdn.127.net/9287025a3894cfcbb0a123943e1a7f40.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f0b50198a0849ebcc8a019574efe51f8.jpg\" _src=\"http://yanxuan.nosdn.127.net/f0b50198a0849ebcc8a019574efe51f8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/058aa1880bb7f810fc1f8133278c59af.jpg\" _src=\"http://yanxuan.nosdn.127.net/058aa1880bb7f810fc1f8133278c59af.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4c175f566a2a819a53872239e201cda7.jpg\" _src=\"http://yanxuan.nosdn.127.net/4c175f566a2a819a53872239e201cda7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ecaad579f54b460ddbaa3daee6cdced8.jpg\" _src=\"http://yanxuan.nosdn.127.net/ecaad579f54b460ddbaa3daee6cdced8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c3d70c0519f20473d4b883c5d8bf8eb0.jpg\" _src=\"http://yanxuan.nosdn.127.net/c3d70c0519f20473d4b883c5d8bf8eb0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/18ebbb3dff05fe4c62a098aafa907adb.jpg\" _src=\"http://yanxuan.nosdn.127.net/18ebbb3dff05fe4c62a098aafa907adb.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a21ff1cef6c9b8faf725febef4978883.jpg\" _src=\"http://yanxuan.nosdn.127.net/a21ff1cef6c9b8faf725febef4978883.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b77ebe85aae6430206f5effc343d061b.jpg\" _src=\"http://yanxuan.nosdn.127.net/b77ebe85aae6430206f5effc343d061b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1c3e6fe69de64048833a59c95151c28c.jpg\" _src=\"http://yanxuan.nosdn.127.net/1c3e6fe69de64048833a59c95151c28c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5177ac6904222f532df28d15bc71491a.jpg\" _src=\"http://yanxuan.nosdn.127.net/5177ac6904222f532df28d15bc71491a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/014fcb0caef743722da0bfbafcfdeb01.jpg\" _src=\"http://yanxuan.nosdn.127.net/014fcb0caef743722da0bfbafcfdeb01.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1c24c42a4504dc22551fda973c441638.jpg\" _src=\"http://yanxuan.nosdn.127.net/1c24c42a4504dc22551fda973c441638.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/70872946f2b39cafe51e4e252f7ffcd7.jpg\" _src=\"http://yanxuan.nosdn.127.net/70872946f2b39cafe51e4e252f7ffcd7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/65cda16ab3d35596eea8ab5f43443579.jpg\" _src=\"http://yanxuan.nosdn.127.net/65cda16ab3d35596eea8ab5f43443579.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fd06e90ca149d8a147c3c42fff7373e4.jpg\" _src=\"http://yanxuan.nosdn.127.net/fd06e90ca149d8a147c3c42fff7373e4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/89c0e9b6f6a514cf0c288bc31f439d6d.jpg\" _src=\"http://yanxuan.nosdn.127.net/89c0e9b6f6a514cf0c288bc31f439d6d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0295b6e2d297ad00f9410342a43d4737.jpg\" _src=\"http://yanxuan.nosdn.127.net/0295b6e2d297ad00f9410342a43d4737.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d583c4150b3003726097b9bf6b02b973.jpg\" _src=\"http://yanxuan.nosdn.127.net/d583c4150b3003726097b9bf6b02b973.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0ce855ae6a6b37e1927ca031cd4a681f.jpg\" _src=\"http://yanxuan.nosdn.127.net/0ce855ae6a6b37e1927ca031cd4a681f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/21cfdd18eef2a56e136145b883fb5352.jpg\" _src=\"http://yanxuan.nosdn.127.net/21cfdd18eef2a56e136145b883fb5352.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e7bd322850ade4c17c09f5ea08e274ce.jpg\" _src=\"http://yanxuan.nosdn.127.net/e7bd322850ade4c17c09f5ea08e274ce.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/aad9f78488ab2a7f1e2b2b6327b14c15.jpg\" _src=\"http://yanxuan.nosdn.127.net/aad9f78488ab2a7f1e2b2b6327b14c15.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c350416e505b658f74177c5f794c2306.jpg\" _src=\"http://yanxuan.nosdn.127.net/c350416e505b658f74177c5f794c2306.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e5b8ad7295c3426018f850c224fa6a13.jpg\" _src=\"http://yanxuan.nosdn.127.net/e5b8ad7295c3426018f850c224fa6a13.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/78dee1c7c3d083b6e515a894db6b2c1a.jpg\" _src=\"http://yanxuan.nosdn.127.net/78dee1c7c3d083b6e515a894db6b2c1a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1561f13761b5678e629f0c6b830bddd4.jpg\" _src=\"http://yanxuan.nosdn.127.net/1561f13761b5678e629f0c6b830bddd4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/613c2a8fabcaffb1ad91f59b0651e0ad.jpg\" _src=\"http://yanxuan.nosdn.127.net/613c2a8fabcaffb1ad91f59b0651e0ad.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/57617866bd29417ea92e89c09a523b42.jpg\" _src=\"http://yanxuan.nosdn.127.net/57617866bd29417ea92e89c09a523b42.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f476dbfc3a3a5190793d6cf48bed38ba.jpg\" _src=\"http://yanxuan.nosdn.127.net/f476dbfc3a3a5190793d6cf48bed38ba.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8ed42bff4fddcac2c1c792b09577b2d4.jpg\" _src=\"http://yanxuan.nosdn.127.net/8ed42bff4fddcac2c1c792b09577b2d4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1042a5564cf6cd8cde1244500b6dc59e.jpg\" _src=\"http://yanxuan.nosdn.127.net/1042a5564cf6cd8cde1244500b6dc59e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/62817f417e4f9dcc2ffbac799c65be85.jpg\" _src=\"http://yanxuan.nosdn.127.net/62817f417e4f9dcc2ffbac799c65be85.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/73ebcb902436b1f1c2b4c65f4227b991.jpg\" _src=\"http://yanxuan.nosdn.127.net/73ebcb902436b1f1c2b4c65f4227b991.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e627e3b2666385e9c7687e29e2b9cae0.jpg\" _src=\"http://yanxuan.nosdn.127.net/e627e3b2666385e9c7687e29e2b9cae0.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '1', '0', '0', '0.00', '0.00', '1', '件', 'http://yanxuan.nosdn.127.net/c1045159a06fac09f4cd994023ac0345.jpg', 'http://yanxuan.nosdn.127.net/45548f26cfd0c7c41e0afc3709d48286.png', '2599.00', '232', '1136010', '0.00', '限时购', '', '0.00', '0', '0', '0', '2858.90', null, null, null, null);
  757. INSERT INTO `nideshop_goods` VALUES ('1135050', '1017000', '1135050', '多功能封闭式环保除菌猫砂盆', '0', '100', '', '银离子吸附脏东西,多功能', '<p><img src=\"http://yanxuan.nosdn.127.net/6f9856cef886e1578d0ba1daf06aadbd.jpg\" _src=\"http://yanxuan.nosdn.127.net/6f9856cef886e1578d0ba1daf06aadbd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fcce9b61ea1af9bda9b7638ac4034c97.jpg\" _src=\"http://yanxuan.nosdn.127.net/fcce9b61ea1af9bda9b7638ac4034c97.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4a84c927116f566c078b1985bb60fbb3.jpg\" _src=\"http://yanxuan.nosdn.127.net/4a84c927116f566c078b1985bb60fbb3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b5b516f6bb5b16ef1920ed1588bfa4cd.jpg\" _src=\"http://yanxuan.nosdn.127.net/b5b516f6bb5b16ef1920ed1588bfa4cd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7ded3831f2446017a468b0e104956eb2.jpg\" _src=\"http://yanxuan.nosdn.127.net/7ded3831f2446017a468b0e104956eb2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/99ec99cd3ea915ed37ed6f59c8e62adb.jpg\" _src=\"http://yanxuan.nosdn.127.net/99ec99cd3ea915ed37ed6f59c8e62adb.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f033ec89ba23c4fc3349466e6136e47c.jpg\" _src=\"http://yanxuan.nosdn.127.net/f033ec89ba23c4fc3349466e6136e47c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6e03379ee27dc7d2f98196552e7d7b47.jpg\" _src=\"http://yanxuan.nosdn.127.net/6e03379ee27dc7d2f98196552e7d7b47.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e131e7d59c392a7eb533cdb6e777d962.jpg\" _src=\"http://yanxuan.nosdn.127.net/e131e7d59c392a7eb533cdb6e777d962.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ab4cda6c3c129220a5791355e93e11b3.jpg\" _src=\"http://yanxuan.nosdn.127.net/ab4cda6c3c129220a5791355e93e11b3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9f18edc32227e8b3f5617daab586a18e.jpg\" _src=\"http://yanxuan.nosdn.127.net/9f18edc32227e8b3f5617daab586a18e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bf4f9a496337fcc8f3bd2c9532d2f7ca.jpg\" _src=\"http://yanxuan.nosdn.127.net/bf4f9a496337fcc8f3bd2c9532d2f7ca.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cd8cfbb3d0b39486d424aefddf12e555.jpg\" _src=\"http://yanxuan.nosdn.127.net/cd8cfbb3d0b39486d424aefddf12e555.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2488258ec7b15f6bc8b96189a886fe7d.jpg\" _src=\"http://yanxuan.nosdn.127.net/2488258ec7b15f6bc8b96189a886fe7d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/77529a9626a81a9df8c5c19a41ac96c1.jpg\" _src=\"http://yanxuan.nosdn.127.net/77529a9626a81a9df8c5c19a41ac96c1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3439fb6332c9ee7012d2d5994edf74f2.jpg\" _src=\"http://yanxuan.nosdn.127.net/3439fb6332c9ee7012d2d5994edf74f2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a6961a8a1e1398e172781617e118ae83.jpg\" _src=\"http://yanxuan.nosdn.127.net/a6961a8a1e1398e172781617e118ae83.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/732ac476b83f419320492849c31fc848.jpg\" _src=\"http://yanxuan.nosdn.127.net/732ac476b83f419320492849c31fc848.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8a4e368f99a04df29d2f250bc0736972.jpg\" _src=\"http://yanxuan.nosdn.127.net/8a4e368f99a04df29d2f250bc0736972.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b52a0c19568d8f765a29dd79283d6443.jpg\" _src=\"http://yanxuan.nosdn.127.net/b52a0c19568d8f765a29dd79283d6443.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9cbb767f8be804a262ed7409636824a6.jpg\" _src=\"http://yanxuan.nosdn.127.net/9cbb767f8be804a262ed7409636824a6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5de865a2825e13b1ccd80de36a5765eb.jpg\" _src=\"http://yanxuan.nosdn.127.net/5de865a2825e13b1ccd80de36a5765eb.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9a4920ac6fe97730ee089db970715f2e.jpg\" _src=\"http://yanxuan.nosdn.127.net/9a4920ac6fe97730ee089db970715f2e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d91316b5b392fe680106a8f7c61a2f65.jpg\" _src=\"http://yanxuan.nosdn.127.net/d91316b5b392fe680106a8f7c61a2f65.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3819f3548b43b26c4f680e6e6c7b82c0.jpg\" _src=\"http://yanxuan.nosdn.127.net/3819f3548b43b26c4f680e6e6c7b82c0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c960601200e839c17631082df5e4a6b4.jpg\" _src=\"http://yanxuan.nosdn.127.net/c960601200e839c17631082df5e4a6b4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1e9a2bb9e1f25bc89d624936a6bd8280.jpg\" _src=\"http://yanxuan.nosdn.127.net/1e9a2bb9e1f25bc89d624936a6bd8280.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b9194503234882f2b110c99c82c9dbd1.jpg\" _src=\"http://yanxuan.nosdn.127.net/b9194503234882f2b110c99c82c9dbd1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/238d2ceebbeb8ebe2e863fda104c54e2.jpg\" _src=\"http://yanxuan.nosdn.127.net/238d2ceebbeb8ebe2e863fda104c54e2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c2550765a86158c2549b3cc4c7156188.jpg\" _src=\"http://yanxuan.nosdn.127.net/c2550765a86158c2549b3cc4c7156188.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1d3c324c167a224c7c1117ae94a81829.jpg\" _src=\"http://yanxuan.nosdn.127.net/1d3c324c167a224c7c1117ae94a81829.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/73455e610f8852b2bb574b3bd214bad3.jpg\" _src=\"http://yanxuan.nosdn.127.net/73455e610f8852b2bb574b3bd214bad3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/18de3a806a61d06e4865b6e49a64adf7.jpg\" _src=\"http://yanxuan.nosdn.127.net/18de3a806a61d06e4865b6e49a64adf7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4514f12874e8a3b4ad0441519eaf052a.jpg\" _src=\"http://yanxuan.nosdn.127.net/4514f12874e8a3b4ad0441519eaf052a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ccec28a161de79a21b904b10c86e6634.jpg\" _src=\"http://yanxuan.nosdn.127.net/ccec28a161de79a21b904b10c86e6634.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/31b2c3eca2dd71b21724359790d6d008.jpg\" _src=\"http://yanxuan.nosdn.127.net/31b2c3eca2dd71b21724359790d6d008.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b28254f776f2f254aea6f00a3f1ddbe8.jpg\" _src=\"http://yanxuan.nosdn.127.net/b28254f776f2f254aea6f00a3f1ddbe8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5fe6c65035197a77e9887dc27b2f70d8.jpg\" _src=\"http://yanxuan.nosdn.127.net/5fe6c65035197a77e9887dc27b2f70d8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ad39f94fa16203561b40e70ed7a87401.jpg\" _src=\"http://yanxuan.nosdn.127.net/ad39f94fa16203561b40e70ed7a87401.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4554c1ed5868d311541aae8927b002ce.jpg\" _src=\"http://yanxuan.nosdn.127.net/4554c1ed5868d311541aae8927b002ce.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a370d559bf323cc0bae895037619a42f.jpg\" _src=\"http://yanxuan.nosdn.127.net/a370d559bf323cc0bae895037619a42f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/eb1118c62ab6360fa5735093e6cdf5ac.jpg\" _src=\"http://yanxuan.nosdn.127.net/eb1118c62ab6360fa5735093e6cdf5ac.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ce5994478404bf511510010a08ac82df.jpg\" _src=\"http://yanxuan.nosdn.127.net/ce5994478404bf511510010a08ac82df.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a58329a1df06c244f4a06bd589e1968f.jpg\" _src=\"http://yanxuan.nosdn.127.net/a58329a1df06c244f4a06bd589e1968f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a2c8414cfd43a130f7678a43a55f74af.jpg\" _src=\"http://yanxuan.nosdn.127.net/a2c8414cfd43a130f7678a43a55f74af.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7ec67f519962351decb3790096261449.jpg\" _src=\"http://yanxuan.nosdn.127.net/7ec67f519962351decb3790096261449.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/eeaef8ff18b2c981b6c911891ffb2f3b.jpg\" _src=\"http://yanxuan.nosdn.127.net/eeaef8ff18b2c981b6c911891ffb2f3b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/665714ca119b377e1b499e6840fe39d7.jpg\" _src=\"http://yanxuan.nosdn.127.net/665714ca119b377e1b499e6840fe39d7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bbc1aaea92b9c66bea37412ea46786d8.jpg\" _src=\"http://yanxuan.nosdn.127.net/bbc1aaea92b9c66bea37412ea46786d8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/08b4a552c1643710048eac58816a03e1.jpg\" _src=\"http://yanxuan.nosdn.127.net/08b4a552c1643710048eac58816a03e1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/46cf57c497b2b4224019ec21fcadebab.jpg\" _src=\"http://yanxuan.nosdn.127.net/46cf57c497b2b4224019ec21fcadebab.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8d8cdb00adca3271a807e663af0ad5d9.jpg\" _src=\"http://yanxuan.nosdn.127.net/8d8cdb00adca3271a807e663af0ad5d9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/675ff22efc7509f1afa7b60abf1aa97d.jpg\" _src=\"http://yanxuan.nosdn.127.net/675ff22efc7509f1afa7b60abf1aa97d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/979e353f2676974f747048cdc8d43071.jpg\" _src=\"http://yanxuan.nosdn.127.net/979e353f2676974f747048cdc8d43071.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/36e5b65856b2bc83db180d2e3efd3ba8.jpg\" _src=\"http://yanxuan.nosdn.127.net/36e5b65856b2bc83db180d2e3efd3ba8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8c3c35bacfa560be63f9a993578d1368.jpg\" _src=\"http://yanxuan.nosdn.127.net/8c3c35bacfa560be63f9a993578d1368.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b47efb83708e09fafe58255e719641c3.jpg\" _src=\"http://yanxuan.nosdn.127.net/b47efb83708e09fafe58255e719641c3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/989b6751ac604e61d974530e288c1559.jpg\" _src=\"http://yanxuan.nosdn.127.net/989b6751ac604e61d974530e288c1559.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b4397c327aa439dafe4a353219cb9666.jpg\" _src=\"http://yanxuan.nosdn.127.net/b4397c327aa439dafe4a353219cb9666.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/69452ed503f60fa2eebe1231e76bac18.jpg\" _src=\"http://yanxuan.nosdn.127.net/69452ed503f60fa2eebe1231e76bac18.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/008516851ad05fc88068d1a5076d4f62.jpg\" _src=\"http://yanxuan.nosdn.127.net/008516851ad05fc88068d1a5076d4f62.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f3c21358c9003d0dffdced74729754a3.jpg\" _src=\"http://yanxuan.nosdn.127.net/f3c21358c9003d0dffdced74729754a3.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '2', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/155edc218e5712837b8669b12e0f48a7.jpg', 'http://yanxuan.nosdn.127.net/366f3f3f0e8971c8cf871e2b55b74ff2.png', '179.00', '998', '1136374', '0.00', '限时购', '', '0.00', '0', '0', '0', '196.90', null, null, null, null);
  758. INSERT INTO `nideshop_goods` VALUES ('1135051', '1008002', '1135051', '日式素雅纯色流星纹窗帘', '0', '100', '', '日式素雅设计 流星纹简约肌理', '<p><img src=\"http://yanxuan.nosdn.127.net/70d4eceeb3f066bd4ea015fca75f424c.jpg\" _src=\"http://yanxuan.nosdn.127.net/70d4eceeb3f066bd4ea015fca75f424c.jpg\"/><br/></p><p><img src=\"http://yanxuan.nosdn.127.net/ebc7b596ef941847afe073a173bcfa59.jpg\" _src=\"http://yanxuan.nosdn.127.net/ebc7b596ef941847afe073a173bcfa59.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c14d1ecbff1c587aefd16d65b47cae51.jpg\" _src=\"http://yanxuan.nosdn.127.net/c14d1ecbff1c587aefd16d65b47cae51.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4d269aeec1f4410c68b2f2c3f77f7985.jpg\" _src=\"http://yanxuan.nosdn.127.net/4d269aeec1f4410c68b2f2c3f77f7985.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8ae8263c89b5fbc0de5df0c21d67d3d2.jpg\" _src=\"http://yanxuan.nosdn.127.net/8ae8263c89b5fbc0de5df0c21d67d3d2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/915f66ecc21197b4d99b5c3df5cbffab.jpg\" _src=\"http://yanxuan.nosdn.127.net/915f66ecc21197b4d99b5c3df5cbffab.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4781c28a5295b239075883ccaa0a9c74.jpg\" _src=\"http://yanxuan.nosdn.127.net/4781c28a5295b239075883ccaa0a9c74.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/91a4983796259d464e1f3795da189a17.jpg\" _src=\"http://yanxuan.nosdn.127.net/91a4983796259d464e1f3795da189a17.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3950395fcc7e7fdc388a2ccf2b6ac0e7.jpg\" _src=\"http://yanxuan.nosdn.127.net/3950395fcc7e7fdc388a2ccf2b6ac0e7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9112abffdf6edd3b0ab8f9fb364d84f7.jpg\" _src=\"http://yanxuan.nosdn.127.net/9112abffdf6edd3b0ab8f9fb364d84f7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/96dcd6ccfec216bf2ce45393ca0aead1.jpg\" _src=\"http://yanxuan.nosdn.127.net/96dcd6ccfec216bf2ce45393ca0aead1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6dffe4e2cce9fb45abe1182bcb1939e2.jpg\" _src=\"http://yanxuan.nosdn.127.net/6dffe4e2cce9fb45abe1182bcb1939e2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d358645610f642ef7fd262c0101790e0.jpg\" _src=\"http://yanxuan.nosdn.127.net/d358645610f642ef7fd262c0101790e0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fb51ccf74568565ba366f0eabf54ccbd.jpg\" _src=\"http://yanxuan.nosdn.127.net/fb51ccf74568565ba366f0eabf54ccbd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7517d9dc2d70be25722a009083ed82df.jpg\" _src=\"http://yanxuan.nosdn.127.net/7517d9dc2d70be25722a009083ed82df.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/11deb1b2b5efa58291c8a62355df6017.jpg\" _src=\"http://yanxuan.nosdn.127.net/11deb1b2b5efa58291c8a62355df6017.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/172053c17a9a97a8108f8fd170a6b07f.jpg\" _src=\"http://yanxuan.nosdn.127.net/172053c17a9a97a8108f8fd170a6b07f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a1c0ac59021d408dcd9845c8702522a1.jpg\" _src=\"http://yanxuan.nosdn.127.net/a1c0ac59021d408dcd9845c8702522a1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/781d08f49d1870ac9cf8b93dacfbf711.jpg\" _src=\"http://yanxuan.nosdn.127.net/781d08f49d1870ac9cf8b93dacfbf711.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0b764a61f92c6db3440f6b4aed6a7625.jpg\" _src=\"http://yanxuan.nosdn.127.net/0b764a61f92c6db3440f6b4aed6a7625.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/31ec911d03541ace9eddfbf3fcdf0414.jpg\" _src=\"http://yanxuan.nosdn.127.net/31ec911d03541ace9eddfbf3fcdf0414.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9d602c94b739bb01da939d75a9187a16.jpg\" _src=\"http://yanxuan.nosdn.127.net/9d602c94b739bb01da939d75a9187a16.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cc557a3e4478f089973519699a01c01c.jpg\" _src=\"http://yanxuan.nosdn.127.net/cc557a3e4478f089973519699a01c01c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b1efdae30fe5189bb998509d446ff271.jpg\" _src=\"http://yanxuan.nosdn.127.net/b1efdae30fe5189bb998509d446ff271.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/12116c10da83b5835a36315711640765.jpg\" _src=\"http://yanxuan.nosdn.127.net/12116c10da83b5835a36315711640765.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9491370cd9c5486fd9aa22ef9fdbd6fc.jpg\" _src=\"http://yanxuan.nosdn.127.net/9491370cd9c5486fd9aa22ef9fdbd6fc.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/37ca15cf48249bc390fcc05077741b98.jpg\" _src=\"http://yanxuan.nosdn.127.net/37ca15cf48249bc390fcc05077741b98.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/99fec7d83ae7e82a4426d3859875d8c7.jpg\" _src=\"http://yanxuan.nosdn.127.net/99fec7d83ae7e82a4426d3859875d8c7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e9912fa7c176dc1b64c060992eb40b60.jpg\" _src=\"http://yanxuan.nosdn.127.net/e9912fa7c176dc1b64c060992eb40b60.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a04c0b364a1fa322ca6a71f35708e3ad.jpg\" _src=\"http://yanxuan.nosdn.127.net/a04c0b364a1fa322ca6a71f35708e3ad.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8604f596b1d0703547d40608dfe16f2a.jpg\" _src=\"http://yanxuan.nosdn.127.net/8604f596b1d0703547d40608dfe16f2a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3b86422ab0ffe13da8f627245ec4dc98.jpg\" _src=\"http://yanxuan.nosdn.127.net/3b86422ab0ffe13da8f627245ec4dc98.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3b2d3c68d23acb03a3c542cccb301bfb.jpg\" _src=\"http://yanxuan.nosdn.127.net/3b2d3c68d23acb03a3c542cccb301bfb.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d563205fb46fc71c3c37448673f5e714.jpg\" _src=\"http://yanxuan.nosdn.127.net/d563205fb46fc71c3c37448673f5e714.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/18efa2d731c643a56a2976b4c793eec2.jpg\" _src=\"http://yanxuan.nosdn.127.net/18efa2d731c643a56a2976b4c793eec2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0b644146188b5ceba4b86ec82352f660.jpg\" _src=\"http://yanxuan.nosdn.127.net/0b644146188b5ceba4b86ec82352f660.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d9c51c9c2c94f28102cb516656c7c761.jpg\" _src=\"http://yanxuan.nosdn.127.net/d9c51c9c2c94f28102cb516656c7c761.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/769660ddc2ad27a1e62543460ff2bc41.jpg\" _src=\"http://yanxuan.nosdn.127.net/769660ddc2ad27a1e62543460ff2bc41.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c95e64b4454063ba74c8cb17a95d60cf.jpg\" _src=\"http://yanxuan.nosdn.127.net/c95e64b4454063ba74c8cb17a95d60cf.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9a79d20d29a65bd010cf084c7b783d96.jpg\" _src=\"http://yanxuan.nosdn.127.net/9a79d20d29a65bd010cf084c7b783d96.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/18a89642689470308392fa485a633709.jpg\" _src=\"http://yanxuan.nosdn.127.net/18a89642689470308392fa485a633709.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/706c31eaec80f9417fbcdd40c16a7f63.jpg\" _src=\"http://yanxuan.nosdn.127.net/706c31eaec80f9417fbcdd40c16a7f63.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bec2e276673ab2787f03b8bd444044af.jpg\" _src=\"http://yanxuan.nosdn.127.net/bec2e276673ab2787f03b8bd444044af.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3afb40257bc5fac38369dd465fe7732c.jpg\" _src=\"http://yanxuan.nosdn.127.net/3afb40257bc5fac38369dd465fe7732c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5cfe30745d27efdc8080944bd8d8c927.jpg\" _src=\"http://yanxuan.nosdn.127.net/5cfe30745d27efdc8080944bd8d8c927.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e3aabaab6a42e859c2362998f235a564.jpg\" _src=\"http://yanxuan.nosdn.127.net/e3aabaab6a42e859c2362998f235a564.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6946e6dfe5a3026c67672c69061a06ae.jpg\" _src=\"http://yanxuan.nosdn.127.net/6946e6dfe5a3026c67672c69061a06ae.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/778f89a8b141f03b6fcb206692b37d7f.jpg\" _src=\"http://yanxuan.nosdn.127.net/778f89a8b141f03b6fcb206692b37d7f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5b991c295b7bc2f6a6e04f7e79cede25.jpg\" _src=\"http://yanxuan.nosdn.127.net/5b991c295b7bc2f6a6e04f7e79cede25.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0e3f9724481dda6c024854750a3aeaa2.jpg\" _src=\"http://yanxuan.nosdn.127.net/0e3f9724481dda6c024854750a3aeaa2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/48bc347fe73c771d19787229da647421.jpg\" _src=\"http://yanxuan.nosdn.127.net/48bc347fe73c771d19787229da647421.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7a2a0bfe4036e4c3add5ba33313da069.jpg\" _src=\"http://yanxuan.nosdn.127.net/7a2a0bfe4036e4c3add5ba33313da069.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3ec518bd9a7f9914841cc92e3e52fa45.jpg\" _src=\"http://yanxuan.nosdn.127.net/3ec518bd9a7f9914841cc92e3e52fa45.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d3054be42bc630607c3a46a9fe2ce6ae.jpg\" _src=\"http://yanxuan.nosdn.127.net/d3054be42bc630607c3a46a9fe2ce6ae.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1b368f5bd63b6b59b2064af102a1fa8e.jpg\" _src=\"http://yanxuan.nosdn.127.net/1b368f5bd63b6b59b2064af102a1fa8e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/dda7a836f7a7c54256b35253bbfba90f.jpg\" _src=\"http://yanxuan.nosdn.127.net/dda7a836f7a7c54256b35253bbfba90f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/91216189bef9aa48018bbf8e654443ea.jpg\" _src=\"http://yanxuan.nosdn.127.net/91216189bef9aa48018bbf8e654443ea.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/10b8c1cace53090fe30a9834365ee37e.jpg\" _src=\"http://yanxuan.nosdn.127.net/10b8c1cace53090fe30a9834365ee37e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/dbf5782db6be5a01de6d0cf1c64eea30.jpg\" _src=\"http://yanxuan.nosdn.127.net/dbf5782db6be5a01de6d0cf1c64eea30.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c49df712817bfe30ec83a26af1b8b1de.jpg\" _src=\"http://yanxuan.nosdn.127.net/c49df712817bfe30ec83a26af1b8b1de.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/510c05dc331823949d1567c552562a9e.jpg\" _src=\"http://yanxuan.nosdn.127.net/510c05dc331823949d1567c552562a9e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c673ce9d4d825503402f1c352b8e82ec.jpg\" _src=\"http://yanxuan.nosdn.127.net/c673ce9d4d825503402f1c352b8e82ec.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/378135cf12f5c044871b59c060cacbb9.jpg\" _src=\"http://yanxuan.nosdn.127.net/378135cf12f5c044871b59c060cacbb9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/dd58aebd08f03474c7ed159c005a986c.jpg\" _src=\"http://yanxuan.nosdn.127.net/dd58aebd08f03474c7ed159c005a986c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5a99049b512e9a388ffb1520827b2739.jpg\" _src=\"http://yanxuan.nosdn.127.net/5a99049b512e9a388ffb1520827b2739.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fa65626e5df752d70ae4662d1b15dc8a.jpg\" _src=\"http://yanxuan.nosdn.127.net/fa65626e5df752d70ae4662d1b15dc8a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/84d1dcf5083fd69abf4451a660f31d59.jpg\" _src=\"http://yanxuan.nosdn.127.net/84d1dcf5083fd69abf4451a660f31d59.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6f781abaecbfb60889be6f46f83f4069.jpg\" _src=\"http://yanxuan.nosdn.127.net/6f781abaecbfb60889be6f46f83f4069.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/26a745d26c76a4577feaf58b27ff557b.jpg\" _src=\"http://yanxuan.nosdn.127.net/26a745d26c76a4577feaf58b27ff557b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/887eb48649e1db53f3047340404209f6.jpg\" _src=\"http://yanxuan.nosdn.127.net/887eb48649e1db53f3047340404209f6.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '35', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/95dbdb2e63eeed44c4a40ea586ad4196.jpg', 'http://yanxuan.nosdn.127.net/9126151f028a8804026d530836b481cb.png', '299.00', '1816', '1136377', '0.00', '限时购', '', '0.00', '0', '0', '0', '328.90', null, null, null, null);
  759. INSERT INTO `nideshop_goods` VALUES ('1135052', '1008002', '1135052', '日式简约素色窗帘', '0', '100', '', '日式极简美学 舒适棉麻质感', '<p><img src=\"http://yanxuan.nosdn.127.net/2edc19a016d64d3b29aa71b0bf6cc928.jpg\" _src=\"http://yanxuan.nosdn.127.net/2edc19a016d64d3b29aa71b0bf6cc928.jpg\"/><br/></p><p><img src=\"http://yanxuan.nosdn.127.net/6bdc1fc55629dbfccbdfaa6b17ebfacc.jpg\" _src=\"http://yanxuan.nosdn.127.net/6bdc1fc55629dbfccbdfaa6b17ebfacc.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4ef1e93a0d3f71d7862441ffd922e522.jpg\" _src=\"http://yanxuan.nosdn.127.net/4ef1e93a0d3f71d7862441ffd922e522.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/85a1e175e39a6576dffb2f0ca28597f9.jpg\" _src=\"http://yanxuan.nosdn.127.net/85a1e175e39a6576dffb2f0ca28597f9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/486aedd7ce019d1c465bf8bbf77314bc.jpg\" _src=\"http://yanxuan.nosdn.127.net/486aedd7ce019d1c465bf8bbf77314bc.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b9f8f7045f07d1bb742f67120009afd0.jpg\" _src=\"http://yanxuan.nosdn.127.net/b9f8f7045f07d1bb742f67120009afd0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c813c0a23951007b020b9b03d0f31cb0.jpg\" _src=\"http://yanxuan.nosdn.127.net/c813c0a23951007b020b9b03d0f31cb0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9a87cebbc5b127abf6a6e5129d4ed20c.jpg\" _src=\"http://yanxuan.nosdn.127.net/9a87cebbc5b127abf6a6e5129d4ed20c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/38e85411821a681c2dd5a5b9bd3cab92.jpg\" _src=\"http://yanxuan.nosdn.127.net/38e85411821a681c2dd5a5b9bd3cab92.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d3907fa867c71f4090699898d53b937d.jpg\" _src=\"http://yanxuan.nosdn.127.net/d3907fa867c71f4090699898d53b937d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c284309b66cc8d073f528c7ebf78c5fb.jpg\" _src=\"http://yanxuan.nosdn.127.net/c284309b66cc8d073f528c7ebf78c5fb.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1ecb27fc699a97883f7d14c7e606daa3.jpg\" _src=\"http://yanxuan.nosdn.127.net/1ecb27fc699a97883f7d14c7e606daa3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/eaf351d46c216f2f3a3588b3985d18c0.jpg\" _src=\"http://yanxuan.nosdn.127.net/eaf351d46c216f2f3a3588b3985d18c0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/785ab1ac578124415bbd718813413333.jpg\" _src=\"http://yanxuan.nosdn.127.net/785ab1ac578124415bbd718813413333.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8605647112b62e72f78ee27d29eede3d.jpg\" _src=\"http://yanxuan.nosdn.127.net/8605647112b62e72f78ee27d29eede3d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3952310896b95dcdc3adb986e5487a86.jpg\" _src=\"http://yanxuan.nosdn.127.net/3952310896b95dcdc3adb986e5487a86.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/030f115457262723b3d821987e38b111.jpg\" _src=\"http://yanxuan.nosdn.127.net/030f115457262723b3d821987e38b111.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cf4254e1d4962d6e9f5e4734785f57ae.jpg\" _src=\"http://yanxuan.nosdn.127.net/cf4254e1d4962d6e9f5e4734785f57ae.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ce29d7cdc0e56477a623d03856646448.jpg\" _src=\"http://yanxuan.nosdn.127.net/ce29d7cdc0e56477a623d03856646448.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/515086ca9168f8008291e98a01f4e4c9.jpg\" _src=\"http://yanxuan.nosdn.127.net/515086ca9168f8008291e98a01f4e4c9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d9bb9d186d4a364ed0c91606d561a7f5.jpg\" _src=\"http://yanxuan.nosdn.127.net/d9bb9d186d4a364ed0c91606d561a7f5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/63204b444e0d06a7fafb6c5e35153eaa.jpg\" _src=\"http://yanxuan.nosdn.127.net/63204b444e0d06a7fafb6c5e35153eaa.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3d13212d5d43f766d3f5c37ccb4e5714.jpg\" _src=\"http://yanxuan.nosdn.127.net/3d13212d5d43f766d3f5c37ccb4e5714.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/19d5b4dbb590d90c3e40525a3ef35019.jpg\" _src=\"http://yanxuan.nosdn.127.net/19d5b4dbb590d90c3e40525a3ef35019.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0a1fcdbac2d1bf232e95389e20ed07c4.jpg\" _src=\"http://yanxuan.nosdn.127.net/0a1fcdbac2d1bf232e95389e20ed07c4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8d230fbda487cf445cd57f4296b7a487.jpg\" _src=\"http://yanxuan.nosdn.127.net/8d230fbda487cf445cd57f4296b7a487.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5819e9bbdeda97281990f61c531fdbbb.jpg\" _src=\"http://yanxuan.nosdn.127.net/5819e9bbdeda97281990f61c531fdbbb.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/802799f78d7069fc4dc44ff339729dc9.jpg\" _src=\"http://yanxuan.nosdn.127.net/802799f78d7069fc4dc44ff339729dc9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/de5108481df4cbc2e064a1fcc477475f.jpg\" _src=\"http://yanxuan.nosdn.127.net/de5108481df4cbc2e064a1fcc477475f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4a94262fecc2427d613ad7cbdd0a59f6.jpg\" _src=\"http://yanxuan.nosdn.127.net/4a94262fecc2427d613ad7cbdd0a59f6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7b18c9c41d0520d1e0f1b58a7ae13e5e.jpg\" _src=\"http://yanxuan.nosdn.127.net/7b18c9c41d0520d1e0f1b58a7ae13e5e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/564d7115798352b765da2633949a1818.jpg\" _src=\"http://yanxuan.nosdn.127.net/564d7115798352b765da2633949a1818.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9f84553b8cfa29fb222b17bc89140fa9.jpg\" _src=\"http://yanxuan.nosdn.127.net/9f84553b8cfa29fb222b17bc89140fa9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3b01288738e632c5afda98184bb62095.jpg\" _src=\"http://yanxuan.nosdn.127.net/3b01288738e632c5afda98184bb62095.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/23088788bbfd7bf4b60ee06e9722ed74.jpg\" _src=\"http://yanxuan.nosdn.127.net/23088788bbfd7bf4b60ee06e9722ed74.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8b2a400e968802cd64d31bdc038b3e2a.jpg\" _src=\"http://yanxuan.nosdn.127.net/8b2a400e968802cd64d31bdc038b3e2a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b0e31fe278c7704fed496ea82c679044.jpg\" _src=\"http://yanxuan.nosdn.127.net/b0e31fe278c7704fed496ea82c679044.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2054d55fc3bdaa380ce28c1fa9b4b00d.jpg\" _src=\"http://yanxuan.nosdn.127.net/2054d55fc3bdaa380ce28c1fa9b4b00d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4d03bae43ba821cd933d0e652e9d3bb7.jpg\" _src=\"http://yanxuan.nosdn.127.net/4d03bae43ba821cd933d0e652e9d3bb7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cc1c458d99de149af69d8ac7582b72dd.jpg\" _src=\"http://yanxuan.nosdn.127.net/cc1c458d99de149af69d8ac7582b72dd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b92c88836f39dfc194d7e56cfdfcaf5c.jpg\" _src=\"http://yanxuan.nosdn.127.net/b92c88836f39dfc194d7e56cfdfcaf5c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1446a01f9725a03ca79ab3e57fdc181a.jpg\" _src=\"http://yanxuan.nosdn.127.net/1446a01f9725a03ca79ab3e57fdc181a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/63fb7826d9f2d34f22317110d60a5b9d.jpg\" _src=\"http://yanxuan.nosdn.127.net/63fb7826d9f2d34f22317110d60a5b9d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/91b1dced907315eb0e771a504d29e6d7.jpg\" _src=\"http://yanxuan.nosdn.127.net/91b1dced907315eb0e771a504d29e6d7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/985d212a97d26d4ff1029ee4efdbc4f1.jpg\" _src=\"http://yanxuan.nosdn.127.net/985d212a97d26d4ff1029ee4efdbc4f1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a8978ab0059b90f8b018b1de05fa4e8d.jpg\" _src=\"http://yanxuan.nosdn.127.net/a8978ab0059b90f8b018b1de05fa4e8d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/25f62074f6e7e3e2b95a71e32aa43311.jpg\" _src=\"http://yanxuan.nosdn.127.net/25f62074f6e7e3e2b95a71e32aa43311.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9e8fa97196d22fb3bbc4cd871267cc79.jpg\" _src=\"http://yanxuan.nosdn.127.net/9e8fa97196d22fb3bbc4cd871267cc79.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0c3478950cc4f473849ed3ab3de21bd4.jpg\" _src=\"http://yanxuan.nosdn.127.net/0c3478950cc4f473849ed3ab3de21bd4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/838a150e46e5720a78f61ac48d380891.jpg\" _src=\"http://yanxuan.nosdn.127.net/838a150e46e5720a78f61ac48d380891.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2abd7db65b092e91ce87c09bf4c4c17f.jpg\" _src=\"http://yanxuan.nosdn.127.net/2abd7db65b092e91ce87c09bf4c4c17f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e603a799d802123ceaf5dbf3de02b051.jpg\" _src=\"http://yanxuan.nosdn.127.net/e603a799d802123ceaf5dbf3de02b051.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8460ba6d6347be878f035b7457ec9057.jpg\" _src=\"http://yanxuan.nosdn.127.net/8460ba6d6347be878f035b7457ec9057.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3b02f932cfd15a19a2f1cebfab19b2cb.jpg\" _src=\"http://yanxuan.nosdn.127.net/3b02f932cfd15a19a2f1cebfab19b2cb.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/41fe9fb3c58a41023a74ef1740573fec.jpg\" _src=\"http://yanxuan.nosdn.127.net/41fe9fb3c58a41023a74ef1740573fec.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/19cc0338b0efefe7f0140efde638c705.jpg\" _src=\"http://yanxuan.nosdn.127.net/19cc0338b0efefe7f0140efde638c705.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8e670a47f65733d99c4884f90b49d8e6.jpg\" _src=\"http://yanxuan.nosdn.127.net/8e670a47f65733d99c4884f90b49d8e6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4859ec0aeecc39ed751f2a07daecad10.jpg\" _src=\"http://yanxuan.nosdn.127.net/4859ec0aeecc39ed751f2a07daecad10.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8b7b2a56a1ea98119e89ae93b71e68c3.jpg\" _src=\"http://yanxuan.nosdn.127.net/8b7b2a56a1ea98119e89ae93b71e68c3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6e9767a0f40cbaf19307bd0c1ef97df9.jpg\" _src=\"http://yanxuan.nosdn.127.net/6e9767a0f40cbaf19307bd0c1ef97df9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5ca04a1436a6598858fc74db1f571529.jpg\" _src=\"http://yanxuan.nosdn.127.net/5ca04a1436a6598858fc74db1f571529.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/738fc25303e4bb32d1efe45641f1b120.jpg\" _src=\"http://yanxuan.nosdn.127.net/738fc25303e4bb32d1efe45641f1b120.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c5de7c6679cfe0361ac9d164276739ae.jpg\" _src=\"http://yanxuan.nosdn.127.net/c5de7c6679cfe0361ac9d164276739ae.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5e1edc1ea0bcc4cd92134ce8cc775577.jpg\" _src=\"http://yanxuan.nosdn.127.net/5e1edc1ea0bcc4cd92134ce8cc775577.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e1eaacf6e5dc52fecb3e9c889db2ee32.jpg\" _src=\"http://yanxuan.nosdn.127.net/e1eaacf6e5dc52fecb3e9c889db2ee32.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/78cea538e5017c2782a96e215f42d6f3.jpg\" _src=\"http://yanxuan.nosdn.127.net/78cea538e5017c2782a96e215f42d6f3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f268a66c2e2476c075dd87416790b761.jpg\" _src=\"http://yanxuan.nosdn.127.net/f268a66c2e2476c075dd87416790b761.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a9f6900f77c23e57a0a2633554ce0c8a.jpg\" _src=\"http://yanxuan.nosdn.127.net/a9f6900f77c23e57a0a2633554ce0c8a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9db7f3c92e24143e8ece310935785e41.jpg\" _src=\"http://yanxuan.nosdn.127.net/9db7f3c92e24143e8ece310935785e41.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/923a8a571519b89b1a03e898871ef586.jpg\" _src=\"http://yanxuan.nosdn.127.net/923a8a571519b89b1a03e898871ef586.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '34', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/38129b4cdabcdf5610160d3a15ef259b.jpg', 'http://yanxuan.nosdn.127.net/63f5da1f5363af43aa91864bf66af48e.png', '259.00', '2776', '1136402', '0.00', '限时购', '', '0.00', '0', '0', '0', '284.90', null, null, null, null);
  760. INSERT INTO `nideshop_goods` VALUES ('1135053', '1008002', '1135053', '法式复古山形纹提花窗帘', '0', '100', '', '轻奢复古,立体提花', '<p><img src=\"http://yanxuan.nosdn.127.net/e21a28b9c5e5203d217f54b0dec35735.jpg\" _src=\"http://yanxuan.nosdn.127.net/e21a28b9c5e5203d217f54b0dec35735.jpg\"/><br/></p><p><img src=\"http://yanxuan.nosdn.127.net/49e4de111eb6cf9ba70ee5ed8c85a416.jpg\" _src=\"http://yanxuan.nosdn.127.net/49e4de111eb6cf9ba70ee5ed8c85a416.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ba9e72450a61c5259c0e025b155d58cf.jpg\" _src=\"http://yanxuan.nosdn.127.net/ba9e72450a61c5259c0e025b155d58cf.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/41dc601d1494f0775e4763091a6671ca.jpg\" _src=\"http://yanxuan.nosdn.127.net/41dc601d1494f0775e4763091a6671ca.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d55bfd606020ef7de66bd70a1b93a12f.jpg\" _src=\"http://yanxuan.nosdn.127.net/d55bfd606020ef7de66bd70a1b93a12f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bc7c6fa620e2635cced6ffbcfd4e6c49.jpg\" _src=\"http://yanxuan.nosdn.127.net/bc7c6fa620e2635cced6ffbcfd4e6c49.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a038525d854188e43cacd3ad2bf9a7a2.jpg\" _src=\"http://yanxuan.nosdn.127.net/a038525d854188e43cacd3ad2bf9a7a2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6224e8afea6653f1baaf9eceb70f4d1e.jpg\" _src=\"http://yanxuan.nosdn.127.net/6224e8afea6653f1baaf9eceb70f4d1e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/617f4b84e19adb6a5e81cf5c3a5574e1.jpg\" _src=\"http://yanxuan.nosdn.127.net/617f4b84e19adb6a5e81cf5c3a5574e1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5265f7746597699562be16e8cd367e78.jpg\" _src=\"http://yanxuan.nosdn.127.net/5265f7746597699562be16e8cd367e78.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7be914365886d471a418ca767e8b2432.jpg\" _src=\"http://yanxuan.nosdn.127.net/7be914365886d471a418ca767e8b2432.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2dce0091a62324d69685980ce463c8e9.jpg\" _src=\"http://yanxuan.nosdn.127.net/2dce0091a62324d69685980ce463c8e9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0f190e680db954313c315ff788c2e677.jpg\" _src=\"http://yanxuan.nosdn.127.net/0f190e680db954313c315ff788c2e677.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/349da9942e82dcc44629781ef2254c06.jpg\" _src=\"http://yanxuan.nosdn.127.net/349da9942e82dcc44629781ef2254c06.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9829be8b12dda40cec3c844df9e521b0.jpg\" _src=\"http://yanxuan.nosdn.127.net/9829be8b12dda40cec3c844df9e521b0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/082cb3197ad814c2df6f6089fa00fa46.jpg\" _src=\"http://yanxuan.nosdn.127.net/082cb3197ad814c2df6f6089fa00fa46.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ca9038261114bdc03cb44ebabacaa67e.jpg\" _src=\"http://yanxuan.nosdn.127.net/ca9038261114bdc03cb44ebabacaa67e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5b4808db6982d4c6efb9967d3e0aad71.jpg\" _src=\"http://yanxuan.nosdn.127.net/5b4808db6982d4c6efb9967d3e0aad71.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1b5f9b19c256980f8948b7eec4319f7e.jpg\" _src=\"http://yanxuan.nosdn.127.net/1b5f9b19c256980f8948b7eec4319f7e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0fbe8e4222a5dbb5a34b774374377c60.jpg\" _src=\"http://yanxuan.nosdn.127.net/0fbe8e4222a5dbb5a34b774374377c60.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b3981672ef8bba7d656e1f6a439b2049.jpg\" _src=\"http://yanxuan.nosdn.127.net/b3981672ef8bba7d656e1f6a439b2049.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/389a17a26b55ebd8090514087ed8b573.jpg\" _src=\"http://yanxuan.nosdn.127.net/389a17a26b55ebd8090514087ed8b573.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/577e2ba58b6c716b1f1e02d95992f8cd.jpg\" _src=\"http://yanxuan.nosdn.127.net/577e2ba58b6c716b1f1e02d95992f8cd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/deb4940d64591b194395c14f2d5407dd.jpg\" _src=\"http://yanxuan.nosdn.127.net/deb4940d64591b194395c14f2d5407dd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6c0cce63ad9658252ddb9152a0801c69.jpg\" _src=\"http://yanxuan.nosdn.127.net/6c0cce63ad9658252ddb9152a0801c69.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/51f7db1d8a7288aaf9712f978dd0e808.jpg\" _src=\"http://yanxuan.nosdn.127.net/51f7db1d8a7288aaf9712f978dd0e808.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/09c3bdf807406fe5fe345e875ac4a69d.jpg\" _src=\"http://yanxuan.nosdn.127.net/09c3bdf807406fe5fe345e875ac4a69d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/818d25244f2dfdade6b23a4a92f55a51.jpg\" _src=\"http://yanxuan.nosdn.127.net/818d25244f2dfdade6b23a4a92f55a51.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/310d4c4888d21f9100d36d7b19b7b841.jpg\" _src=\"http://yanxuan.nosdn.127.net/310d4c4888d21f9100d36d7b19b7b841.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cb8e667ad88260e90211a4f9b246f8e4.jpg\" _src=\"http://yanxuan.nosdn.127.net/cb8e667ad88260e90211a4f9b246f8e4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2b75ffc95e4a5c69944b99b7d3f04837.jpg\" _src=\"http://yanxuan.nosdn.127.net/2b75ffc95e4a5c69944b99b7d3f04837.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/dfef40e5a0861fb9e958b0a6a70c8cf8.jpg\" _src=\"http://yanxuan.nosdn.127.net/dfef40e5a0861fb9e958b0a6a70c8cf8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a506fed177d609e43be43c4eb4ed0c6f.jpg\" _src=\"http://yanxuan.nosdn.127.net/a506fed177d609e43be43c4eb4ed0c6f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a6c905743a3c03c679c7017701399e1e.jpg\" _src=\"http://yanxuan.nosdn.127.net/a6c905743a3c03c679c7017701399e1e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2e44ac8c851c24ff28ef3d28fca1e363.jpg\" _src=\"http://yanxuan.nosdn.127.net/2e44ac8c851c24ff28ef3d28fca1e363.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3d121846341c4eec125668560ea59606.jpg\" _src=\"http://yanxuan.nosdn.127.net/3d121846341c4eec125668560ea59606.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/dbf82173395352acae173a6acac219c6.jpg\" _src=\"http://yanxuan.nosdn.127.net/dbf82173395352acae173a6acac219c6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f8e6aff62f8304cf4c9847f1e6844407.jpg\" _src=\"http://yanxuan.nosdn.127.net/f8e6aff62f8304cf4c9847f1e6844407.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3a604d607f42ad8a1c343d604cc4c147.jpg\" _src=\"http://yanxuan.nosdn.127.net/3a604d607f42ad8a1c343d604cc4c147.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/775d13d9704afa2a46ae2d6616ff78ce.jpg\" _src=\"http://yanxuan.nosdn.127.net/775d13d9704afa2a46ae2d6616ff78ce.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/65617bbfc95b22a4a6fb6060781afc70.jpg\" _src=\"http://yanxuan.nosdn.127.net/65617bbfc95b22a4a6fb6060781afc70.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/79613c75ad103b7b0cc1933a62afeff7.jpg\" _src=\"http://yanxuan.nosdn.127.net/79613c75ad103b7b0cc1933a62afeff7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9754dd885b4f1ff698b440d8582fda5b.jpg\" _src=\"http://yanxuan.nosdn.127.net/9754dd885b4f1ff698b440d8582fda5b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/372bbb746116a10e5c82d2c136883472.jpg\" _src=\"http://yanxuan.nosdn.127.net/372bbb746116a10e5c82d2c136883472.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/79466f6b09420a3c8e8e39ab2091c32e.jpg\" _src=\"http://yanxuan.nosdn.127.net/79466f6b09420a3c8e8e39ab2091c32e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/852fce888e2e4abd8e9256207ce8857c.jpg\" _src=\"http://yanxuan.nosdn.127.net/852fce888e2e4abd8e9256207ce8857c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6f51d785e3ecbe7da3abfb03527900ba.jpg\" _src=\"http://yanxuan.nosdn.127.net/6f51d785e3ecbe7da3abfb03527900ba.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bdf18ac18c0bc4a9ca2834d14bc67e40.jpg\" _src=\"http://yanxuan.nosdn.127.net/bdf18ac18c0bc4a9ca2834d14bc67e40.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/64a9503d1375d2ce3cf2d3aaa8f49d0a.jpg\" _src=\"http://yanxuan.nosdn.127.net/64a9503d1375d2ce3cf2d3aaa8f49d0a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cc7ea083ed7bee671c2b34fdf0a29837.jpg\" _src=\"http://yanxuan.nosdn.127.net/cc7ea083ed7bee671c2b34fdf0a29837.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e58086a3385b0dcb915a35607e83a676.jpg\" _src=\"http://yanxuan.nosdn.127.net/e58086a3385b0dcb915a35607e83a676.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/239a602da7415684a44d5421ebb71e77.jpg\" _src=\"http://yanxuan.nosdn.127.net/239a602da7415684a44d5421ebb71e77.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7c8ecca60b20a9f891c18adc051b7fbc.jpg\" _src=\"http://yanxuan.nosdn.127.net/7c8ecca60b20a9f891c18adc051b7fbc.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cf21f6ceb63279ceccbc35c882c9030c.jpg\" _src=\"http://yanxuan.nosdn.127.net/cf21f6ceb63279ceccbc35c882c9030c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7865fb8acee04157b94b85e62b6f2d14.jpg\" _src=\"http://yanxuan.nosdn.127.net/7865fb8acee04157b94b85e62b6f2d14.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c3c1797e21327d8bff828ac761305867.jpg\" _src=\"http://yanxuan.nosdn.127.net/c3c1797e21327d8bff828ac761305867.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d3263b186f04be03faa803dacf2bddcd.jpg\" _src=\"http://yanxuan.nosdn.127.net/d3263b186f04be03faa803dacf2bddcd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d0a0bfa53b619a61d143314d60e13341.jpg\" _src=\"http://yanxuan.nosdn.127.net/d0a0bfa53b619a61d143314d60e13341.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1e3ddada3bf508947a5715df6792c980.jpg\" _src=\"http://yanxuan.nosdn.127.net/1e3ddada3bf508947a5715df6792c980.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8ee6d2c940700caeec4997ff6deeca4d.jpg\" _src=\"http://yanxuan.nosdn.127.net/8ee6d2c940700caeec4997ff6deeca4d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3902aa67f3485894c892eef84be25952.jpg\" _src=\"http://yanxuan.nosdn.127.net/3902aa67f3485894c892eef84be25952.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9779fa93d513d2747aada4f83423df22.jpg\" _src=\"http://yanxuan.nosdn.127.net/9779fa93d513d2747aada4f83423df22.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4da023d34922ad0fc42ce5e4ac0e3431.jpg\" _src=\"http://yanxuan.nosdn.127.net/4da023d34922ad0fc42ce5e4ac0e3431.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5da0d3862a5e5f72b020a396fcc77423.jpg\" _src=\"http://yanxuan.nosdn.127.net/5da0d3862a5e5f72b020a396fcc77423.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f99a92c12c7057fd5dad948bb80cff98.jpg\" _src=\"http://yanxuan.nosdn.127.net/f99a92c12c7057fd5dad948bb80cff98.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9453c191e802aeb86241cee2e2dd70a5.jpg\" _src=\"http://yanxuan.nosdn.127.net/9453c191e802aeb86241cee2e2dd70a5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/225ab93dd58a18f5878c57841c18b8ea.jpg\" _src=\"http://yanxuan.nosdn.127.net/225ab93dd58a18f5878c57841c18b8ea.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/57994f32bd6423bed216a80c8456eafc.jpg\" _src=\"http://yanxuan.nosdn.127.net/57994f32bd6423bed216a80c8456eafc.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d9803612c814317b259e6c244fb3e191.jpg\" _src=\"http://yanxuan.nosdn.127.net/d9803612c814317b259e6c244fb3e191.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '38', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/3235e120465f2755b6a412668d0be967.jpg', 'http://yanxuan.nosdn.127.net/1f9e34b1aadd14ea0c9c299c530d86ba.png', '429.00', '5280', '1136424', '0.00', '限时购', '', '0.00', '0', '0', '0', '471.90', null, null, null, null);
  761. INSERT INTO `nideshop_goods` VALUES ('1135054', '1008002', '1135054', '美式田园风蜻蜓提花窗帘', '0', '100', '', '美式蜻蜓提花 甜美田园色彩', '<p><img src=\"http://yanxuan.nosdn.127.net/8b13ceefdeffbfd2b2326b9429ab7896.jpg\" _src=\"http://yanxuan.nosdn.127.net/8b13ceefdeffbfd2b2326b9429ab7896.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a8fa854947a7df61a4e063b8e2e14fd3.jpg\" _src=\"http://yanxuan.nosdn.127.net/a8fa854947a7df61a4e063b8e2e14fd3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3d9681a7dd16355294e37057fa3b6c64.jpg\" _src=\"http://yanxuan.nosdn.127.net/3d9681a7dd16355294e37057fa3b6c64.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/292b9704967295fcbf09ee7a98b40425.jpg\" _src=\"http://yanxuan.nosdn.127.net/292b9704967295fcbf09ee7a98b40425.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2ba9a3fb827a7c135670655ff4060553.jpg\" _src=\"http://yanxuan.nosdn.127.net/2ba9a3fb827a7c135670655ff4060553.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e0b12070b3da9c44102a91b34d4a289d.jpg\" _src=\"http://yanxuan.nosdn.127.net/e0b12070b3da9c44102a91b34d4a289d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/27a0e45f6cb8db4e541cc09dc3f56661.jpg\" _src=\"http://yanxuan.nosdn.127.net/27a0e45f6cb8db4e541cc09dc3f56661.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/78c39affb31ea084aec9092a528e1000.jpg\" _src=\"http://yanxuan.nosdn.127.net/78c39affb31ea084aec9092a528e1000.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f1dbf236c3d1f41e23bb703be8e09d62.jpg\" _src=\"http://yanxuan.nosdn.127.net/f1dbf236c3d1f41e23bb703be8e09d62.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8a10b18efc6670c4b5c6abfe25a5d791.jpg\" _src=\"http://yanxuan.nosdn.127.net/8a10b18efc6670c4b5c6abfe25a5d791.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/31f310bfa2a088a865ba86d603c889e3.jpg\" _src=\"http://yanxuan.nosdn.127.net/31f310bfa2a088a865ba86d603c889e3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d6e1112e5c699aadb80edf862b013241.jpg\" _src=\"http://yanxuan.nosdn.127.net/d6e1112e5c699aadb80edf862b013241.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/70e35f2b7536dcf59061fb15e6fbd7f0.jpg\" _src=\"http://yanxuan.nosdn.127.net/70e35f2b7536dcf59061fb15e6fbd7f0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fab87a9493b50f6372eab5d02ab58ddc.jpg\" _src=\"http://yanxuan.nosdn.127.net/fab87a9493b50f6372eab5d02ab58ddc.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6431ef7fa249e9e0412eceac99d77acb.jpg\" _src=\"http://yanxuan.nosdn.127.net/6431ef7fa249e9e0412eceac99d77acb.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d6a3e40285e7e1ba47fff926acd7fb02.jpg\" _src=\"http://yanxuan.nosdn.127.net/d6a3e40285e7e1ba47fff926acd7fb02.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1d714470698ed5f14cf21ca34f3012bb.jpg\" _src=\"http://yanxuan.nosdn.127.net/1d714470698ed5f14cf21ca34f3012bb.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9bc9c660db31968471b598a293b3c44b.jpg\" _src=\"http://yanxuan.nosdn.127.net/9bc9c660db31968471b598a293b3c44b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1bb7a825a3148cb187e8ec2d39b60f21.jpg\" _src=\"http://yanxuan.nosdn.127.net/1bb7a825a3148cb187e8ec2d39b60f21.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9097e4911884ae79e055d85ba0cc07b0.jpg\" _src=\"http://yanxuan.nosdn.127.net/9097e4911884ae79e055d85ba0cc07b0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/49195539f093b5974392cef9f3b2c5c7.jpg\" _src=\"http://yanxuan.nosdn.127.net/49195539f093b5974392cef9f3b2c5c7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/71dc1d77d97e2495dea6edd66b62e906.jpg\" _src=\"http://yanxuan.nosdn.127.net/71dc1d77d97e2495dea6edd66b62e906.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cbb3af413fa229c94682dea4e959edbe.jpg\" _src=\"http://yanxuan.nosdn.127.net/cbb3af413fa229c94682dea4e959edbe.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a3a2b3bcda99806ff31844d44537f62e.jpg\" _src=\"http://yanxuan.nosdn.127.net/a3a2b3bcda99806ff31844d44537f62e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0e09dbf79c01d9ec02234be2063fade0.jpg\" _src=\"http://yanxuan.nosdn.127.net/0e09dbf79c01d9ec02234be2063fade0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2838ac897fbc4339701789d3e05b176e.jpg\" _src=\"http://yanxuan.nosdn.127.net/2838ac897fbc4339701789d3e05b176e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/efe9c94a8e77081d69e8f30dfb501bc6.jpg\" _src=\"http://yanxuan.nosdn.127.net/efe9c94a8e77081d69e8f30dfb501bc6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2d8913b07b679efe4349802d9b0a6887.jpg\" _src=\"http://yanxuan.nosdn.127.net/2d8913b07b679efe4349802d9b0a6887.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/aad09d61a369e2828a64996e6f594331.jpg\" _src=\"http://yanxuan.nosdn.127.net/aad09d61a369e2828a64996e6f594331.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/09a0cc37d89dc0b604a69806ea1a1ec7.jpg\" _src=\"http://yanxuan.nosdn.127.net/09a0cc37d89dc0b604a69806ea1a1ec7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/680758fc7cf2315433ff5815b42a1620.jpg\" _src=\"http://yanxuan.nosdn.127.net/680758fc7cf2315433ff5815b42a1620.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6a83a5e81614a57ca3c55518130dc6e9.jpg\" _src=\"http://yanxuan.nosdn.127.net/6a83a5e81614a57ca3c55518130dc6e9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/09474a7d70cb78b5baadd27906b09a48.jpg\" _src=\"http://yanxuan.nosdn.127.net/09474a7d70cb78b5baadd27906b09a48.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/85ffaf2d542e988adce23e576f539a11.jpg\" _src=\"http://yanxuan.nosdn.127.net/85ffaf2d542e988adce23e576f539a11.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d56fded6471b21499e524b041fd7f409.jpg\" _src=\"http://yanxuan.nosdn.127.net/d56fded6471b21499e524b041fd7f409.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/01d319f088e87d2c3c223467de321352.jpg\" _src=\"http://yanxuan.nosdn.127.net/01d319f088e87d2c3c223467de321352.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f2800c131d7320919b6b02adae7e5bd9.jpg\" _src=\"http://yanxuan.nosdn.127.net/f2800c131d7320919b6b02adae7e5bd9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8172ab2121042e5703183b43fd195509.jpg\" _src=\"http://yanxuan.nosdn.127.net/8172ab2121042e5703183b43fd195509.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/40dbb2286998622b9902fc704b583040.jpg\" _src=\"http://yanxuan.nosdn.127.net/40dbb2286998622b9902fc704b583040.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/68e4e99f2a0a400bfade8cd2befd0e69.jpg\" _src=\"http://yanxuan.nosdn.127.net/68e4e99f2a0a400bfade8cd2befd0e69.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ba7ed53477cc0b34a0569704be78fb7a.jpg\" _src=\"http://yanxuan.nosdn.127.net/ba7ed53477cc0b34a0569704be78fb7a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0e1380ce14c595cc7c896ab6d80977c0.jpg\" _src=\"http://yanxuan.nosdn.127.net/0e1380ce14c595cc7c896ab6d80977c0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d8625973becb30763b8185d5aed6ff2a.jpg\" _src=\"http://yanxuan.nosdn.127.net/d8625973becb30763b8185d5aed6ff2a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/38d2ba1a53807474d5d1908c38e44941.jpg\" _src=\"http://yanxuan.nosdn.127.net/38d2ba1a53807474d5d1908c38e44941.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/19c2742c33d946ea42525bb766b9aa50.jpg\" _src=\"http://yanxuan.nosdn.127.net/19c2742c33d946ea42525bb766b9aa50.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7e38f6f972d9e0a5b1b929b00dac2ab7.jpg\" _src=\"http://yanxuan.nosdn.127.net/7e38f6f972d9e0a5b1b929b00dac2ab7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e2b39cc98245fb88155269d891af0165.jpg\" _src=\"http://yanxuan.nosdn.127.net/e2b39cc98245fb88155269d891af0165.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bf6dc932f82e427196f6202d1da99fc1.jpg\" _src=\"http://yanxuan.nosdn.127.net/bf6dc932f82e427196f6202d1da99fc1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c90a23374fd5cf95dc05c0a687d52de7.jpg\" _src=\"http://yanxuan.nosdn.127.net/c90a23374fd5cf95dc05c0a687d52de7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c88e300269e108c04717dbd70539aa1e.jpg\" _src=\"http://yanxuan.nosdn.127.net/c88e300269e108c04717dbd70539aa1e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b2c90271ed6fdd1b1cb114185962ac5b.jpg\" _src=\"http://yanxuan.nosdn.127.net/b2c90271ed6fdd1b1cb114185962ac5b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/517fcab43dd3c867c9861835991185a0.jpg\" _src=\"http://yanxuan.nosdn.127.net/517fcab43dd3c867c9861835991185a0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/052b5796f383987f0982bfb21c62133d.jpg\" _src=\"http://yanxuan.nosdn.127.net/052b5796f383987f0982bfb21c62133d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/657fece964b17cdb783bce720165c81b.jpg\" _src=\"http://yanxuan.nosdn.127.net/657fece964b17cdb783bce720165c81b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3627ec2a160228289e561b4c4bad1c88.jpg\" _src=\"http://yanxuan.nosdn.127.net/3627ec2a160228289e561b4c4bad1c88.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2c084cdba7d998c6026b77b2bedb16c8.jpg\" _src=\"http://yanxuan.nosdn.127.net/2c084cdba7d998c6026b77b2bedb16c8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/609e6f0b7bcad8516f51c957c352e131.jpg\" _src=\"http://yanxuan.nosdn.127.net/609e6f0b7bcad8516f51c957c352e131.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b51e43dd314866fe7b8cf1def3896b5f.jpg\" _src=\"http://yanxuan.nosdn.127.net/b51e43dd314866fe7b8cf1def3896b5f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f134c68159e3c4ae1b8cd31685c4a0da.jpg\" _src=\"http://yanxuan.nosdn.127.net/f134c68159e3c4ae1b8cd31685c4a0da.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7d6c3dd50f40ce4d2f23e33a10af02f3.jpg\" _src=\"http://yanxuan.nosdn.127.net/7d6c3dd50f40ce4d2f23e33a10af02f3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/93e670375dc312a0bce884d535b49543.jpg\" _src=\"http://yanxuan.nosdn.127.net/93e670375dc312a0bce884d535b49543.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e6ead1f50e3d5a5f7ece304975ebaf3f.jpg\" _src=\"http://yanxuan.nosdn.127.net/e6ead1f50e3d5a5f7ece304975ebaf3f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ab5c9ba3fe26f2eac2908ff4ef0c3e38.jpg\" _src=\"http://yanxuan.nosdn.127.net/ab5c9ba3fe26f2eac2908ff4ef0c3e38.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5955779f4196eacee871872e9c565237.jpg\" _src=\"http://yanxuan.nosdn.127.net/5955779f4196eacee871872e9c565237.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a54295c3a05ce118773f3b72a94ee198.jpg\" _src=\"http://yanxuan.nosdn.127.net/a54295c3a05ce118773f3b72a94ee198.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7f0fb6a2b73c481dc8194efc9036daed.jpg\" _src=\"http://yanxuan.nosdn.127.net/7f0fb6a2b73c481dc8194efc9036daed.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bcffbd7e19cb83a129de0d1dcf70e3fa.jpg\" _src=\"http://yanxuan.nosdn.127.net/bcffbd7e19cb83a129de0d1dcf70e3fa.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/533047cdb7474da59cb87adbe6c50e39.jpg\" _src=\"http://yanxuan.nosdn.127.net/533047cdb7474da59cb87adbe6c50e39.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4aadd1564fd982d1f2267b49418441cf.jpg\" _src=\"http://yanxuan.nosdn.127.net/4aadd1564fd982d1f2267b49418441cf.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/71b5a16bc159955645369c89711374c3.jpg\" _src=\"http://yanxuan.nosdn.127.net/71b5a16bc159955645369c89711374c3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/19a53b3e0bbbda6ee8dc2028930371a6.jpg\" _src=\"http://yanxuan.nosdn.127.net/19a53b3e0bbbda6ee8dc2028930371a6.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '39', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/2f7641027f584b21e2f51d0a546291a0.jpg', 'http://yanxuan.nosdn.127.net/30d7daa0824fbb61b6c36175c8203349.png', '559.00', '22628', '1136431', '0.00', '限时购', '', '0.00', '0', '0', '1', '614.90', null, null, null, null);
  762. INSERT INTO `nideshop_goods` VALUES ('1135055', '1008002', '1135055', '北欧印象几何条纹混色窗帘', '0', '100', '', '山形纹提花 北欧简约混色', '<p><img src=\"http://yanxuan.nosdn.127.net/517a42ae18dfd98e7d3f311317ba3f54.jpg\" _src=\"http://yanxuan.nosdn.127.net/517a42ae18dfd98e7d3f311317ba3f54.jpg\"/><br/></p><p><img src=\"http://yanxuan.nosdn.127.net/68e9db2e8f912d4993a3c912e03f5f2c.jpg\" _src=\"http://yanxuan.nosdn.127.net/68e9db2e8f912d4993a3c912e03f5f2c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/41bc6c237355edd4d4e8dd89c504a4b4.jpg\" _src=\"http://yanxuan.nosdn.127.net/41bc6c237355edd4d4e8dd89c504a4b4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/33f3534df43afd47eb9bb9e3cb85d0b0.jpg\" _src=\"http://yanxuan.nosdn.127.net/33f3534df43afd47eb9bb9e3cb85d0b0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/304afcf82a46055f14f62da9dbf079e5.jpg\" _src=\"http://yanxuan.nosdn.127.net/304afcf82a46055f14f62da9dbf079e5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6b28ab088bc909f9964ce3dc6b911439.jpg\" _src=\"http://yanxuan.nosdn.127.net/6b28ab088bc909f9964ce3dc6b911439.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/31bb168618d29b6088bfe880a99934c6.jpg\" _src=\"http://yanxuan.nosdn.127.net/31bb168618d29b6088bfe880a99934c6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d965a3607b1a22f7f52e01261d7a507b.jpg\" _src=\"http://yanxuan.nosdn.127.net/d965a3607b1a22f7f52e01261d7a507b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0f868badfd66ad1ed70fb7abc4a71f5b.jpg\" _src=\"http://yanxuan.nosdn.127.net/0f868badfd66ad1ed70fb7abc4a71f5b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/662697d3bcdb8427452aec321d3e4c6a.jpg\" _src=\"http://yanxuan.nosdn.127.net/662697d3bcdb8427452aec321d3e4c6a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cdf2fd88a844f539f4c9873efb14a93d.jpg\" _src=\"http://yanxuan.nosdn.127.net/cdf2fd88a844f539f4c9873efb14a93d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1792cab519f6f0b489ddf95c30023f67.jpg\" _src=\"http://yanxuan.nosdn.127.net/1792cab519f6f0b489ddf95c30023f67.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/334801d2a30855b7bf207bf295b4ecfc.jpg\" _src=\"http://yanxuan.nosdn.127.net/334801d2a30855b7bf207bf295b4ecfc.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2c18a7d948ec0ed09d777291a5f547ba.jpg\" _src=\"http://yanxuan.nosdn.127.net/2c18a7d948ec0ed09d777291a5f547ba.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9bc0be56147bf743458d8df50fc5075f.jpg\" _src=\"http://yanxuan.nosdn.127.net/9bc0be56147bf743458d8df50fc5075f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8f89950e36bc4c8ac8cb53e6b4377a9e.jpg\" _src=\"http://yanxuan.nosdn.127.net/8f89950e36bc4c8ac8cb53e6b4377a9e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3322ca38b778f0a9b3ac20a049cf520d.jpg\" _src=\"http://yanxuan.nosdn.127.net/3322ca38b778f0a9b3ac20a049cf520d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/aa487adfab5d685e9da06822a2ea5bb9.jpg\" _src=\"http://yanxuan.nosdn.127.net/aa487adfab5d685e9da06822a2ea5bb9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/23425bf14b340a87dcc22c9c4390e15e.jpg\" _src=\"http://yanxuan.nosdn.127.net/23425bf14b340a87dcc22c9c4390e15e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3f1e82fc020816d3eb2ef17e24b9e5d0.jpg\" _src=\"http://yanxuan.nosdn.127.net/3f1e82fc020816d3eb2ef17e24b9e5d0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ba7a8e956add1c16e9e49ca0d72bd30e.jpg\" _src=\"http://yanxuan.nosdn.127.net/ba7a8e956add1c16e9e49ca0d72bd30e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/21635d8fed07731fe9d6e5a74bc69c41.jpg\" _src=\"http://yanxuan.nosdn.127.net/21635d8fed07731fe9d6e5a74bc69c41.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ed0d59cbd62397d20b5fbf4626d41a93.jpg\" _src=\"http://yanxuan.nosdn.127.net/ed0d59cbd62397d20b5fbf4626d41a93.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/29d5b386af4b5f6a03996655d8295bae.jpg\" _src=\"http://yanxuan.nosdn.127.net/29d5b386af4b5f6a03996655d8295bae.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0843c621c7f7d0d36cebcc5a1caf5d94.jpg\" _src=\"http://yanxuan.nosdn.127.net/0843c621c7f7d0d36cebcc5a1caf5d94.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bcb983612a08f762bd3bcc42dc98c709.jpg\" _src=\"http://yanxuan.nosdn.127.net/bcb983612a08f762bd3bcc42dc98c709.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7fe59f3d9cda66b0fd4a2c94e124d0ce.jpg\" _src=\"http://yanxuan.nosdn.127.net/7fe59f3d9cda66b0fd4a2c94e124d0ce.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/31bd379ac7037b5e54ea93e4f8f833e5.jpg\" _src=\"http://yanxuan.nosdn.127.net/31bd379ac7037b5e54ea93e4f8f833e5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/331051a617e47532461c31e5ff7a16bf.jpg\" _src=\"http://yanxuan.nosdn.127.net/331051a617e47532461c31e5ff7a16bf.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/443cd3bba1bc4e24a17801750b8ffd73.jpg\" _src=\"http://yanxuan.nosdn.127.net/443cd3bba1bc4e24a17801750b8ffd73.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b408464b2167c203bd691c80badedeae.jpg\" _src=\"http://yanxuan.nosdn.127.net/b408464b2167c203bd691c80badedeae.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/79107afd183d1fe4429dd84e27b1869c.jpg\" _src=\"http://yanxuan.nosdn.127.net/79107afd183d1fe4429dd84e27b1869c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/dcd5d9008ff6dbc93631ce29dab6b354.jpg\" _src=\"http://yanxuan.nosdn.127.net/dcd5d9008ff6dbc93631ce29dab6b354.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e5f53f0045b4a770124615a12e724ced.jpg\" _src=\"http://yanxuan.nosdn.127.net/e5f53f0045b4a770124615a12e724ced.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/25ddf1a21d8d5a43ab3b1a5d505c65d9.jpg\" _src=\"http://yanxuan.nosdn.127.net/25ddf1a21d8d5a43ab3b1a5d505c65d9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/dbf4143559b00939a44fde123c8c2888.jpg\" _src=\"http://yanxuan.nosdn.127.net/dbf4143559b00939a44fde123c8c2888.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2dac797df342a33a30e45e365ccbbfd9.jpg\" _src=\"http://yanxuan.nosdn.127.net/2dac797df342a33a30e45e365ccbbfd9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8c2564a0a643c338a3ba3ca6c7e7ff58.jpg\" _src=\"http://yanxuan.nosdn.127.net/8c2564a0a643c338a3ba3ca6c7e7ff58.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/19cc6dc4032ac9ce30325fc92a5e345e.jpg\" _src=\"http://yanxuan.nosdn.127.net/19cc6dc4032ac9ce30325fc92a5e345e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bb623f2b464c8cec997dc021a89571b9.jpg\" _src=\"http://yanxuan.nosdn.127.net/bb623f2b464c8cec997dc021a89571b9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5bb40f61105e0380f7fec424ca29b1fa.jpg\" _src=\"http://yanxuan.nosdn.127.net/5bb40f61105e0380f7fec424ca29b1fa.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/344edfec8435287400477554e2a4fcba.jpg\" _src=\"http://yanxuan.nosdn.127.net/344edfec8435287400477554e2a4fcba.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a9f33ab114476550b418a3f0fbaeea68.jpg\" _src=\"http://yanxuan.nosdn.127.net/a9f33ab114476550b418a3f0fbaeea68.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b72c8e0a58bd04c363306fbd3bf429df.jpg\" _src=\"http://yanxuan.nosdn.127.net/b72c8e0a58bd04c363306fbd3bf429df.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6a7308307c74336da7ff7330436a3dd6.jpg\" _src=\"http://yanxuan.nosdn.127.net/6a7308307c74336da7ff7330436a3dd6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3b1086c39d44b373a2e8cdb3062d8c30.jpg\" _src=\"http://yanxuan.nosdn.127.net/3b1086c39d44b373a2e8cdb3062d8c30.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7c95781a9b95d7e01d384b410cb7a6a7.jpg\" _src=\"http://yanxuan.nosdn.127.net/7c95781a9b95d7e01d384b410cb7a6a7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/dd1f991f3beb2d9861df203c22a03b08.jpg\" _src=\"http://yanxuan.nosdn.127.net/dd1f991f3beb2d9861df203c22a03b08.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a55eccfd7e14fea5c551be5b94bf8851.jpg\" _src=\"http://yanxuan.nosdn.127.net/a55eccfd7e14fea5c551be5b94bf8851.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/af209f2726ee582a11b0adf4473963bf.jpg\" _src=\"http://yanxuan.nosdn.127.net/af209f2726ee582a11b0adf4473963bf.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/eb4b661f960dfab272a833732a338b84.jpg\" _src=\"http://yanxuan.nosdn.127.net/eb4b661f960dfab272a833732a338b84.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e0eac0f1694749e3f2ba7c3ce73234ce.jpg\" _src=\"http://yanxuan.nosdn.127.net/e0eac0f1694749e3f2ba7c3ce73234ce.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9817135b6416cc72642ada8d285a22d9.jpg\" _src=\"http://yanxuan.nosdn.127.net/9817135b6416cc72642ada8d285a22d9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/54443af2a33be3579ecfff18eeabb321.jpg\" _src=\"http://yanxuan.nosdn.127.net/54443af2a33be3579ecfff18eeabb321.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3f79c86438c27c8c0ad9511683fb900c.jpg\" _src=\"http://yanxuan.nosdn.127.net/3f79c86438c27c8c0ad9511683fb900c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ebdc8e8f06f2fbe11bc2765038906df7.jpg\" _src=\"http://yanxuan.nosdn.127.net/ebdc8e8f06f2fbe11bc2765038906df7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3e2cb3235a86089e75b3b848af26755e.jpg\" _src=\"http://yanxuan.nosdn.127.net/3e2cb3235a86089e75b3b848af26755e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2fef8703070e9b1be2e1367bb7c8ea00.jpg\" _src=\"http://yanxuan.nosdn.127.net/2fef8703070e9b1be2e1367bb7c8ea00.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3c84eb4b1c7bb644faf451da2e2b0447.jpg\" _src=\"http://yanxuan.nosdn.127.net/3c84eb4b1c7bb644faf451da2e2b0447.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7df41298392f5c0f38965e2b2097178a.jpg\" _src=\"http://yanxuan.nosdn.127.net/7df41298392f5c0f38965e2b2097178a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3d458e8bf25e7c2877ed2b1ef5637aa9.jpg\" _src=\"http://yanxuan.nosdn.127.net/3d458e8bf25e7c2877ed2b1ef5637aa9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/98cbb394e2b1cae7aaa848c85dd3af18.jpg\" _src=\"http://yanxuan.nosdn.127.net/98cbb394e2b1cae7aaa848c85dd3af18.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0e162e4742a0865e047b3e189591ae8f.jpg\" _src=\"http://yanxuan.nosdn.127.net/0e162e4742a0865e047b3e189591ae8f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4dfd24919e00f6c0715ce2323507c935.jpg\" _src=\"http://yanxuan.nosdn.127.net/4dfd24919e00f6c0715ce2323507c935.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/202ad04b025d49988cc0b4cabcca70f6.jpg\" _src=\"http://yanxuan.nosdn.127.net/202ad04b025d49988cc0b4cabcca70f6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9b72277b67793dc6542783a2d0973869.jpg\" _src=\"http://yanxuan.nosdn.127.net/9b72277b67793dc6542783a2d0973869.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/75bceb04c01f9ebbe533a94b5eccb873.jpg\" _src=\"http://yanxuan.nosdn.127.net/75bceb04c01f9ebbe533a94b5eccb873.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/465b9fc2f115f3881e90120c738ece73.jpg\" _src=\"http://yanxuan.nosdn.127.net/465b9fc2f115f3881e90120c738ece73.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/66dfd8708bd9d6ec229f56d22d1f1e82.jpg\" _src=\"http://yanxuan.nosdn.127.net/66dfd8708bd9d6ec229f56d22d1f1e82.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '37', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/0db87bc9137f5ca00f0d2de15a7cf607.jpg', 'http://yanxuan.nosdn.127.net/87b6a608b99279ebf1764682e9e5fcec.png', '399.00', '17157', '1136456', '0.00', '限时购', '', '0.00', '0', '0', '0', '438.90', null, null, null, null);
  763. INSERT INTO `nideshop_goods` VALUES ('1135056', '1008002', '1135056', '糖果色凹凸条纹儿童房窗帘', '0', '100', '', '灵动色彩,童趣条纹', '<p><img src=\"http://yanxuan.nosdn.127.net/7c20355c62ad66dbba32b0e11f0f75d5.jpg\" _src=\"http://yanxuan.nosdn.127.net/7c20355c62ad66dbba32b0e11f0f75d5.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/35552ca10129c4ec6530fbd5b3596f5e.jpg\" _src=\"http://yanxuan.nosdn.127.net/35552ca10129c4ec6530fbd5b3596f5e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ba98905fc96c69c0a4bf4caec083be2f.jpg\" _src=\"http://yanxuan.nosdn.127.net/ba98905fc96c69c0a4bf4caec083be2f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/08f9e46394d65290533db13e32112890.jpg\" _src=\"http://yanxuan.nosdn.127.net/08f9e46394d65290533db13e32112890.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9b16ba0cc72ef435e2999564ec20cf6c.jpg\" _src=\"http://yanxuan.nosdn.127.net/9b16ba0cc72ef435e2999564ec20cf6c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/df3a97cb4c73bc9c1036bb0446368630.jpg\" _src=\"http://yanxuan.nosdn.127.net/df3a97cb4c73bc9c1036bb0446368630.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c6505b769f5c54f6e66231b03d9c9919.jpg\" _src=\"http://yanxuan.nosdn.127.net/c6505b769f5c54f6e66231b03d9c9919.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/59a6179c8b6f523bc6c67646fcf0ca08.jpg\" _src=\"http://yanxuan.nosdn.127.net/59a6179c8b6f523bc6c67646fcf0ca08.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b3b4ce480059631e26ffac109aa5d18c.jpg\" _src=\"http://yanxuan.nosdn.127.net/b3b4ce480059631e26ffac109aa5d18c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/57dbe2baf75e5fa5529d1b3fd0ebdc97.jpg\" _src=\"http://yanxuan.nosdn.127.net/57dbe2baf75e5fa5529d1b3fd0ebdc97.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/72b5df8ead55acb75c626b7c4f22f76d.jpg\" _src=\"http://yanxuan.nosdn.127.net/72b5df8ead55acb75c626b7c4f22f76d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2a34c76a1a5bd369b0c7acf62813746a.jpg\" _src=\"http://yanxuan.nosdn.127.net/2a34c76a1a5bd369b0c7acf62813746a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c9fb571be38cc011c8edbaff7ab7c961.jpg\" _src=\"http://yanxuan.nosdn.127.net/c9fb571be38cc011c8edbaff7ab7c961.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ae2f00a619449bbc968efbb99a0aacfd.jpg\" _src=\"http://yanxuan.nosdn.127.net/ae2f00a619449bbc968efbb99a0aacfd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fe6dabb85692fd165279f626a27f9fb0.jpg\" _src=\"http://yanxuan.nosdn.127.net/fe6dabb85692fd165279f626a27f9fb0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0f0e4d2016335e408106495abc2cf925.jpg\" _src=\"http://yanxuan.nosdn.127.net/0f0e4d2016335e408106495abc2cf925.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bfd6f2404e14e54f45f26baff796fca9.jpg\" _src=\"http://yanxuan.nosdn.127.net/bfd6f2404e14e54f45f26baff796fca9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a034ad41437cb22dc27edeb8c7ced17c.jpg\" _src=\"http://yanxuan.nosdn.127.net/a034ad41437cb22dc27edeb8c7ced17c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d73f789cd190aaaf80d426939bfc4466.jpg\" _src=\"http://yanxuan.nosdn.127.net/d73f789cd190aaaf80d426939bfc4466.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1a375c717468e02d130a3b335a469b4e.jpg\" _src=\"http://yanxuan.nosdn.127.net/1a375c717468e02d130a3b335a469b4e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c3160e6ae5c4e0cf4809b0d7419c3bf5.jpg\" _src=\"http://yanxuan.nosdn.127.net/c3160e6ae5c4e0cf4809b0d7419c3bf5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d0f8b77d9f28c35569d92d18f72c8c27.jpg\" _src=\"http://yanxuan.nosdn.127.net/d0f8b77d9f28c35569d92d18f72c8c27.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b613b3604ded989f3aaeb1b3af5e7c60.jpg\" _src=\"http://yanxuan.nosdn.127.net/b613b3604ded989f3aaeb1b3af5e7c60.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/82d1d397861c98813e93876f878ed02a.jpg\" _src=\"http://yanxuan.nosdn.127.net/82d1d397861c98813e93876f878ed02a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/628c2aa615c30a97b2c43d829b75161f.jpg\" _src=\"http://yanxuan.nosdn.127.net/628c2aa615c30a97b2c43d829b75161f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/01899c4632878aa07b12e74b67259485.jpg\" _src=\"http://yanxuan.nosdn.127.net/01899c4632878aa07b12e74b67259485.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/82554461e3615eea2564fbb9290e57ab.jpg\" _src=\"http://yanxuan.nosdn.127.net/82554461e3615eea2564fbb9290e57ab.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/36b38aca196c62338811f878e18f52b4.jpg\" _src=\"http://yanxuan.nosdn.127.net/36b38aca196c62338811f878e18f52b4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a27d72b8fe9e3d533c8c448f7b4a0614.jpg\" _src=\"http://yanxuan.nosdn.127.net/a27d72b8fe9e3d533c8c448f7b4a0614.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1e68d027072ddbb0420b21e3f0f44365.jpg\" _src=\"http://yanxuan.nosdn.127.net/1e68d027072ddbb0420b21e3f0f44365.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c62bd7b6ce6ee1da5a27062df9363677.jpg\" _src=\"http://yanxuan.nosdn.127.net/c62bd7b6ce6ee1da5a27062df9363677.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/76fde5b8b397c0efb12685fd8561123d.jpg\" _src=\"http://yanxuan.nosdn.127.net/76fde5b8b397c0efb12685fd8561123d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e5816b3d9fae2b1d15fc462729fe977d.jpg\" _src=\"http://yanxuan.nosdn.127.net/e5816b3d9fae2b1d15fc462729fe977d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d57f643c8d33996708bab3052144aa99.jpg\" _src=\"http://yanxuan.nosdn.127.net/d57f643c8d33996708bab3052144aa99.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ecf67d3847b9050a377f751ce250ce34.jpg\" _src=\"http://yanxuan.nosdn.127.net/ecf67d3847b9050a377f751ce250ce34.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1e01c7dc028bedd59001e7345a5a246d.jpg\" _src=\"http://yanxuan.nosdn.127.net/1e01c7dc028bedd59001e7345a5a246d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4662d564c3b6df760dd19139a6af3060.jpg\" _src=\"http://yanxuan.nosdn.127.net/4662d564c3b6df760dd19139a6af3060.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2bab03382de1776e2cb9021947f44807.jpg\" _src=\"http://yanxuan.nosdn.127.net/2bab03382de1776e2cb9021947f44807.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/668e0c4505f9b86190207fe0d8be84ad.jpg\" _src=\"http://yanxuan.nosdn.127.net/668e0c4505f9b86190207fe0d8be84ad.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/19dbde9ef6edf5c1c8790049662287df.jpg\" _src=\"http://yanxuan.nosdn.127.net/19dbde9ef6edf5c1c8790049662287df.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/53464274e000ef9c108a6875a4dc7a4d.jpg\" _src=\"http://yanxuan.nosdn.127.net/53464274e000ef9c108a6875a4dc7a4d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/138ff2f3f471cf84169a16730ac61c1a.jpg\" _src=\"http://yanxuan.nosdn.127.net/138ff2f3f471cf84169a16730ac61c1a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1397ec9bc1f099328c4991b1e1ba224d.jpg\" _src=\"http://yanxuan.nosdn.127.net/1397ec9bc1f099328c4991b1e1ba224d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/15ea2d7f9648e1e40915d3e300411994.jpg\" _src=\"http://yanxuan.nosdn.127.net/15ea2d7f9648e1e40915d3e300411994.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3011b59e959f2ef7f4ce50960b45af9c.jpg\" _src=\"http://yanxuan.nosdn.127.net/3011b59e959f2ef7f4ce50960b45af9c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8e74c96c5e3bb615176591afbb20d5b3.jpg\" _src=\"http://yanxuan.nosdn.127.net/8e74c96c5e3bb615176591afbb20d5b3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fe8022ad7a0af1a1d3fd775789b43871.jpg\" _src=\"http://yanxuan.nosdn.127.net/fe8022ad7a0af1a1d3fd775789b43871.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bb33363454d749da01e88d7f33d47637.jpg\" _src=\"http://yanxuan.nosdn.127.net/bb33363454d749da01e88d7f33d47637.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b57a6785a7ca57472ead814b5e663ed9.jpg\" _src=\"http://yanxuan.nosdn.127.net/b57a6785a7ca57472ead814b5e663ed9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/58338bfd632396d37a32cc3a111e6d42.jpg\" _src=\"http://yanxuan.nosdn.127.net/58338bfd632396d37a32cc3a111e6d42.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f3d6d7f4d4e9fd6d4b7199ec3f993056.jpg\" _src=\"http://yanxuan.nosdn.127.net/f3d6d7f4d4e9fd6d4b7199ec3f993056.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8e1bd19661b084036aef793cd04eb850.jpg\" _src=\"http://yanxuan.nosdn.127.net/8e1bd19661b084036aef793cd04eb850.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4a4a7ec58407e2c179a268c5f7d9f71b.jpg\" _src=\"http://yanxuan.nosdn.127.net/4a4a7ec58407e2c179a268c5f7d9f71b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7b752ea0fa16847a196c7c72f9b3c790.jpg\" _src=\"http://yanxuan.nosdn.127.net/7b752ea0fa16847a196c7c72f9b3c790.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b2b901ebaf68371b049d87036eb8f41f.jpg\" _src=\"http://yanxuan.nosdn.127.net/b2b901ebaf68371b049d87036eb8f41f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f700d302dfb86c98afc8655526129c05.jpg\" _src=\"http://yanxuan.nosdn.127.net/f700d302dfb86c98afc8655526129c05.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/eb322b63a80aa3e44cca7d0c8fb06820.jpg\" _src=\"http://yanxuan.nosdn.127.net/eb322b63a80aa3e44cca7d0c8fb06820.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d89b92178625b1c87406c1406c891aa7.jpg\" _src=\"http://yanxuan.nosdn.127.net/d89b92178625b1c87406c1406c891aa7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2e4a0c0718ab1f434af40220649c4776.jpg\" _src=\"http://yanxuan.nosdn.127.net/2e4a0c0718ab1f434af40220649c4776.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8cab72015ab23ae571eb8deb0f688870.jpg\" _src=\"http://yanxuan.nosdn.127.net/8cab72015ab23ae571eb8deb0f688870.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f9db276e7c5b8f81223da9bf2b81d146.jpg\" _src=\"http://yanxuan.nosdn.127.net/f9db276e7c5b8f81223da9bf2b81d146.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7e026d4db4dbdb745a970db7aab7a5ff.jpg\" _src=\"http://yanxuan.nosdn.127.net/7e026d4db4dbdb745a970db7aab7a5ff.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/abb53b015f71f95844b9b645f8d2a28e.jpg\" _src=\"http://yanxuan.nosdn.127.net/abb53b015f71f95844b9b645f8d2a28e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fae009fcecbb3b4d387519524f991457.jpg\" _src=\"http://yanxuan.nosdn.127.net/fae009fcecbb3b4d387519524f991457.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/05827553784f26cf0ccc6b02c3b1c7dd.jpg\" _src=\"http://yanxuan.nosdn.127.net/05827553784f26cf0ccc6b02c3b1c7dd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/16d0bf68cd235dac5b72f47d4c7ace7f.jpg\" _src=\"http://yanxuan.nosdn.127.net/16d0bf68cd235dac5b72f47d4c7ace7f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/db55ff3fe3873426c8d047d3403387cb.jpg\" _src=\"http://yanxuan.nosdn.127.net/db55ff3fe3873426c8d047d3403387cb.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/df067a032a8e3f85b7b1e9f3ae4a0ed6.jpg\" _src=\"http://yanxuan.nosdn.127.net/df067a032a8e3f85b7b1e9f3ae4a0ed6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a39eaca1d201e2f71f28c4ffa339e87a.jpg\" _src=\"http://yanxuan.nosdn.127.net/a39eaca1d201e2f71f28c4ffa339e87a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1f9ff903bc8538e43ba0de5fcd57c3e2.jpg\" _src=\"http://yanxuan.nosdn.127.net/1f9ff903bc8538e43ba0de5fcd57c3e2.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '36', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/5b9da3d72c73da202972f88ee1c7837b.jpg', 'http://yanxuan.nosdn.127.net/536246ca4adb77274a94b18bb2f91f47.png', '259.00', '10577', '1136472', '0.00', '限时购', '', '0.00', '0', '0', '0', '284.90', null, null, null, null);
  764. INSERT INTO `nideshop_goods` VALUES ('1135057', '1008002', '1135057', '梦幻系简约轻透莹白纱帘', '0', '100', '', '轻透柔软纱 朦胧细纹肌理', '<p><img src=\"http://yanxuan.nosdn.127.net/088e63e0e298739ce0b7ad6aa4f3bc2d.jpg\" _src=\"http://yanxuan.nosdn.127.net/088e63e0e298739ce0b7ad6aa4f3bc2d.jpg\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/44d08314b0c25796e5211b7f82d9c9cb.jpg\" _src=\"http://yanxuan.nosdn.127.net/44d08314b0c25796e5211b7f82d9c9cb.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b7a2aede16ff390bc980e8bd485e4e6a.jpg\" _src=\"http://yanxuan.nosdn.127.net/b7a2aede16ff390bc980e8bd485e4e6a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bb015656f9c0cf779739438143c7842d.jpg\" _src=\"http://yanxuan.nosdn.127.net/bb015656f9c0cf779739438143c7842d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a76c38ce3e756deba85a09fe5551abcd.jpg\" _src=\"http://yanxuan.nosdn.127.net/a76c38ce3e756deba85a09fe5551abcd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f15917590cd0a049c095a2c95ccf832a.jpg\" _src=\"http://yanxuan.nosdn.127.net/f15917590cd0a049c095a2c95ccf832a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1905c8981f963198da77643f3f774a54.jpg\" _src=\"http://yanxuan.nosdn.127.net/1905c8981f963198da77643f3f774a54.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f2ccdfcf68dd4c0f908cfa5c48c76e3c.jpg\" _src=\"http://yanxuan.nosdn.127.net/f2ccdfcf68dd4c0f908cfa5c48c76e3c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ae6093e376c8ce4b008e5eef96cd2f6b.jpg\" _src=\"http://yanxuan.nosdn.127.net/ae6093e376c8ce4b008e5eef96cd2f6b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f5c6b8de674a14425396608d1788a6bc.jpg\" _src=\"http://yanxuan.nosdn.127.net/f5c6b8de674a14425396608d1788a6bc.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/aa9780ed9a8e1a744c589005428eccb3.jpg\" _src=\"http://yanxuan.nosdn.127.net/aa9780ed9a8e1a744c589005428eccb3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/814d1ee43b10292e38a838e32242ff95.jpg\" _src=\"http://yanxuan.nosdn.127.net/814d1ee43b10292e38a838e32242ff95.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cbbe9bb7409bbc29285394c56fe6de65.jpg\" _src=\"http://yanxuan.nosdn.127.net/cbbe9bb7409bbc29285394c56fe6de65.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/001bc932cab905300c5c00a6da69db28.jpg\" _src=\"http://yanxuan.nosdn.127.net/001bc932cab905300c5c00a6da69db28.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d8bb1b60c6a52683d4d2689894ccbf20.jpg\" _src=\"http://yanxuan.nosdn.127.net/d8bb1b60c6a52683d4d2689894ccbf20.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/817206ab2ffd7946e99f2c459bb725ab.jpg\" _src=\"http://yanxuan.nosdn.127.net/817206ab2ffd7946e99f2c459bb725ab.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/557da67f50abfebb9f38c066ab7b202c.jpg\" _src=\"http://yanxuan.nosdn.127.net/557da67f50abfebb9f38c066ab7b202c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bf68d5bcaba0405d7a3043f7ea36663a.jpg\" _src=\"http://yanxuan.nosdn.127.net/bf68d5bcaba0405d7a3043f7ea36663a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/195cc13edfaaafa97d8f836e5d1c841a.jpg\" _src=\"http://yanxuan.nosdn.127.net/195cc13edfaaafa97d8f836e5d1c841a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/27757a632a1b76e68b1ac520a2bfd5a0.jpg\" _src=\"http://yanxuan.nosdn.127.net/27757a632a1b76e68b1ac520a2bfd5a0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c24fe54ae36bd45b741a5ba8796113a0.jpg\" _src=\"http://yanxuan.nosdn.127.net/c24fe54ae36bd45b741a5ba8796113a0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/894a5ae76c69eb6759de91212a83fa04.jpg\" _src=\"http://yanxuan.nosdn.127.net/894a5ae76c69eb6759de91212a83fa04.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0b3aca05774b786d461645ec4faeefda.jpg\" _src=\"http://yanxuan.nosdn.127.net/0b3aca05774b786d461645ec4faeefda.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/37293874fef9660e431fbe5d2f0a1fad.jpg\" _src=\"http://yanxuan.nosdn.127.net/37293874fef9660e431fbe5d2f0a1fad.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a3f6bb62defe913a888f049be018daa0.jpg\" _src=\"http://yanxuan.nosdn.127.net/a3f6bb62defe913a888f049be018daa0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/35d2a4c32aa83b360cf60cb6a6c71d8f.jpg\" _src=\"http://yanxuan.nosdn.127.net/35d2a4c32aa83b360cf60cb6a6c71d8f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6758ccc43d3a31997bcdfedad718f6e3.jpg\" _src=\"http://yanxuan.nosdn.127.net/6758ccc43d3a31997bcdfedad718f6e3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d101a311f94525444c79075e6dc8a90f.jpg\" _src=\"http://yanxuan.nosdn.127.net/d101a311f94525444c79075e6dc8a90f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1d336e42a2f94454ce0078be4389d4b2.jpg\" _src=\"http://yanxuan.nosdn.127.net/1d336e42a2f94454ce0078be4389d4b2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/dae266d530a47edde62a0424b49cfe73.jpg\" _src=\"http://yanxuan.nosdn.127.net/dae266d530a47edde62a0424b49cfe73.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9c2d1071f14177b19d292b6887544d6e.jpg\" _src=\"http://yanxuan.nosdn.127.net/9c2d1071f14177b19d292b6887544d6e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8e027ee3bc3fa0ced129d05dd85f629a.jpg\" _src=\"http://yanxuan.nosdn.127.net/8e027ee3bc3fa0ced129d05dd85f629a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5c56b8c566ae2dcc0697b4e7bb8b8630.jpg\" _src=\"http://yanxuan.nosdn.127.net/5c56b8c566ae2dcc0697b4e7bb8b8630.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/be84eaf810654923eb06310883435942.jpg\" _src=\"http://yanxuan.nosdn.127.net/be84eaf810654923eb06310883435942.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b207cfccb4eda5a7278bd74c82adacda.jpg\" _src=\"http://yanxuan.nosdn.127.net/b207cfccb4eda5a7278bd74c82adacda.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/54f86d151cf250d3a76a4cd725f9cdfe.jpg\" _src=\"http://yanxuan.nosdn.127.net/54f86d151cf250d3a76a4cd725f9cdfe.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/44d3695e8dd5286b029aa7ce19a5b97a.jpg\" _src=\"http://yanxuan.nosdn.127.net/44d3695e8dd5286b029aa7ce19a5b97a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9c80a2af6d1d1b40d382b1f495e83795.jpg\" _src=\"http://yanxuan.nosdn.127.net/9c80a2af6d1d1b40d382b1f495e83795.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ddd6008d180e884835cfd39094a81dd7.jpg\" _src=\"http://yanxuan.nosdn.127.net/ddd6008d180e884835cfd39094a81dd7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7b70b0bbb4933b57f7d28f517ef9c812.jpg\" _src=\"http://yanxuan.nosdn.127.net/7b70b0bbb4933b57f7d28f517ef9c812.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/251f9ccb814f04ca5e6804b5ca60182f.jpg\" _src=\"http://yanxuan.nosdn.127.net/251f9ccb814f04ca5e6804b5ca60182f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ad8ca0f8ffd3396ee1be6792b316d8fb.jpg\" _src=\"http://yanxuan.nosdn.127.net/ad8ca0f8ffd3396ee1be6792b316d8fb.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/96237772643462f0c923051df580ef8b.jpg\" _src=\"http://yanxuan.nosdn.127.net/96237772643462f0c923051df580ef8b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/054f71961df4fca4c0260d83a5d9bc98.jpg\" _src=\"http://yanxuan.nosdn.127.net/054f71961df4fca4c0260d83a5d9bc98.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d5cbcffbfcd3ac01e38eb3a01d0833a6.jpg\" _src=\"http://yanxuan.nosdn.127.net/d5cbcffbfcd3ac01e38eb3a01d0833a6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fb4bb9f35b500e7a0a7093ddbce407f1.jpg\" _src=\"http://yanxuan.nosdn.127.net/fb4bb9f35b500e7a0a7093ddbce407f1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/23a6091b704260334779826d2b858a9f.jpg\" _src=\"http://yanxuan.nosdn.127.net/23a6091b704260334779826d2b858a9f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/aec34514179b3837429f6e4ab9f39759.jpg\" _src=\"http://yanxuan.nosdn.127.net/aec34514179b3837429f6e4ab9f39759.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/339a771531698027d36f917ccafadd02.jpg\" _src=\"http://yanxuan.nosdn.127.net/339a771531698027d36f917ccafadd02.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/06def276699cc40e8f281c1f0b935c04.jpg\" _src=\"http://yanxuan.nosdn.127.net/06def276699cc40e8f281c1f0b935c04.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f2648155e986745bf2269ef0857968bb.jpg\" _src=\"http://yanxuan.nosdn.127.net/f2648155e986745bf2269ef0857968bb.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ef7a8e1db5aceba36645696895b04671.jpg\" _src=\"http://yanxuan.nosdn.127.net/ef7a8e1db5aceba36645696895b04671.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ddb0d7fee5bde51071746aef961e28d9.jpg\" _src=\"http://yanxuan.nosdn.127.net/ddb0d7fee5bde51071746aef961e28d9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6752bad820840f5f0b684690d35f697d.jpg\" _src=\"http://yanxuan.nosdn.127.net/6752bad820840f5f0b684690d35f697d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/aaec96a0239f848e38d79510191480a7.jpg\" _src=\"http://yanxuan.nosdn.127.net/aaec96a0239f848e38d79510191480a7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ad7d5c557d09e854388d33963566712e.jpg\" _src=\"http://yanxuan.nosdn.127.net/ad7d5c557d09e854388d33963566712e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d64a872b7b803ae2c6a3342edae85bb8.jpg\" _src=\"http://yanxuan.nosdn.127.net/d64a872b7b803ae2c6a3342edae85bb8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/859f290857188c448bdca0e20cf786ee.jpg\" _src=\"http://yanxuan.nosdn.127.net/859f290857188c448bdca0e20cf786ee.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6cc76f812f3a2ebc107cc3d5e0c8da75.jpg\" _src=\"http://yanxuan.nosdn.127.net/6cc76f812f3a2ebc107cc3d5e0c8da75.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '33', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/a007b270ec16a4d4c2c9e18d3b5cb06b.jpg', 'http://yanxuan.nosdn.127.net/98c5e80b8e328687ce9c949314ebc41d.png', '199.00', '4968', '1136484', '0.00', '限时购', '', '0.00', '0', '0', '0', '218.90', null, null, null, null);
  765. INSERT INTO `nideshop_goods` VALUES ('1135058', '1008002', '1135058', '日式多功能手卷午睡枕坐垫', '0', '100', '', '全棉针织条纹,透气按摩粒子', '<p><img src=\"http://yanxuan.nosdn.127.net/2286fb6b29d365466760ecbf2ebc8c82.jpg\" _src=\"http://yanxuan.nosdn.127.net/2286fb6b29d365466760ecbf2ebc8c82.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a9b2bd6e1049c5c4653a00b9802e6a11.jpg\" _src=\"http://yanxuan.nosdn.127.net/a9b2bd6e1049c5c4653a00b9802e6a11.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2639883802a55490ea81fe3dcd543df3.jpg\" _src=\"http://yanxuan.nosdn.127.net/2639883802a55490ea81fe3dcd543df3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/582b3658d2e405bd74dce301502d70f1.jpg\" _src=\"http://yanxuan.nosdn.127.net/582b3658d2e405bd74dce301502d70f1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ba9df33cbb0003bdab7d63dd0a70d599.jpg\" _src=\"http://yanxuan.nosdn.127.net/ba9df33cbb0003bdab7d63dd0a70d599.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/24c5d1905d9c31072445d87f7a37eebb.jpg\" _src=\"http://yanxuan.nosdn.127.net/24c5d1905d9c31072445d87f7a37eebb.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e874eec46f85b846f696dd11fe61b858.jpg\" _src=\"http://yanxuan.nosdn.127.net/e874eec46f85b846f696dd11fe61b858.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d64ae710b7fc2c1cef03d7582515ede0.jpg\" _src=\"http://yanxuan.nosdn.127.net/d64ae710b7fc2c1cef03d7582515ede0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ab294e2889662c548e3e283e548d7ca2.jpg\" _src=\"http://yanxuan.nosdn.127.net/ab294e2889662c548e3e283e548d7ca2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2eb3eaef8f70960e95c67048faf1c68c.jpg\" _src=\"http://yanxuan.nosdn.127.net/2eb3eaef8f70960e95c67048faf1c68c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/11bf7eb8c196ecc361c963836b81d4ad.jpg\" _src=\"http://yanxuan.nosdn.127.net/11bf7eb8c196ecc361c963836b81d4ad.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ef7b28262d2d7def40175ca98bde3222.jpg\" _src=\"http://yanxuan.nosdn.127.net/ef7b28262d2d7def40175ca98bde3222.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/678ae536ac582a2923cfa8240bf66aa8.jpg\" _src=\"http://yanxuan.nosdn.127.net/678ae536ac582a2923cfa8240bf66aa8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/32d157099c01a5c6283513849f699d0f.jpg\" _src=\"http://yanxuan.nosdn.127.net/32d157099c01a5c6283513849f699d0f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e74c91fa555929d5493dcde5da877b02.jpg\" _src=\"http://yanxuan.nosdn.127.net/e74c91fa555929d5493dcde5da877b02.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e511841b236e95ab4ff0bf4562500ad0.jpg\" _src=\"http://yanxuan.nosdn.127.net/e511841b236e95ab4ff0bf4562500ad0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/deb067ad58dea4f11f53b191e3d1e77f.jpg\" _src=\"http://yanxuan.nosdn.127.net/deb067ad58dea4f11f53b191e3d1e77f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/76a6d1fc324d373f70db08ce8750cb32.jpg\" _src=\"http://yanxuan.nosdn.127.net/76a6d1fc324d373f70db08ce8750cb32.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6305c83e95ddddd661cef3d5c9ac58cc.jpg\" _src=\"http://yanxuan.nosdn.127.net/6305c83e95ddddd661cef3d5c9ac58cc.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c9dcf3269c87105f1841aed22d0f36fd.jpg\" _src=\"http://yanxuan.nosdn.127.net/c9dcf3269c87105f1841aed22d0f36fd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/54d7c9813569e17cef0f1027e5a52e6b.jpg\" _src=\"http://yanxuan.nosdn.127.net/54d7c9813569e17cef0f1027e5a52e6b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d39f00c7e20a5cd1a9ee8c9a65744cc0.jpg\" _src=\"http://yanxuan.nosdn.127.net/d39f00c7e20a5cd1a9ee8c9a65744cc0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b3bcd9d4b95c77f2a61dc5e29cd804cc.jpg\" _src=\"http://yanxuan.nosdn.127.net/b3bcd9d4b95c77f2a61dc5e29cd804cc.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f52a276d2daf93cb61be8d6b6509106a.jpg\" _src=\"http://yanxuan.nosdn.127.net/f52a276d2daf93cb61be8d6b6509106a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d659bfb20371020a769309886aadd16f.jpg\" _src=\"http://yanxuan.nosdn.127.net/d659bfb20371020a769309886aadd16f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/43d05684abd3de808a8e35506a232c76.jpg\" _src=\"http://yanxuan.nosdn.127.net/43d05684abd3de808a8e35506a232c76.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/48905901467d7f0950220b3eac766519.jpg\" _src=\"http://yanxuan.nosdn.127.net/48905901467d7f0950220b3eac766519.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3ed5dcbd0e5d8b53cd6c4116780415af.jpg\" _src=\"http://yanxuan.nosdn.127.net/3ed5dcbd0e5d8b53cd6c4116780415af.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f0e8dbe1a4acb9985534c1a1017b91ce.jpg\" _src=\"http://yanxuan.nosdn.127.net/f0e8dbe1a4acb9985534c1a1017b91ce.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5953f2c981375ea3945f368b9efcf2e2.jpg\" _src=\"http://yanxuan.nosdn.127.net/5953f2c981375ea3945f368b9efcf2e2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e2afc692ecef8565da94ab96d605bd8d.jpg\" _src=\"http://yanxuan.nosdn.127.net/e2afc692ecef8565da94ab96d605bd8d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b1c74ac52f6858cbaf6795bb98269a60.jpg\" _src=\"http://yanxuan.nosdn.127.net/b1c74ac52f6858cbaf6795bb98269a60.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c1090b13b82a36d182644a78c1ade112.jpg\" _src=\"http://yanxuan.nosdn.127.net/c1090b13b82a36d182644a78c1ade112.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8d28fba7b538217405ad66fb119e5fa0.jpg\" _src=\"http://yanxuan.nosdn.127.net/8d28fba7b538217405ad66fb119e5fa0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/22588b3bc32226a798cb1ae6106525ae.jpg\" _src=\"http://yanxuan.nosdn.127.net/22588b3bc32226a798cb1ae6106525ae.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d9f07dcfdfa0e7a90df6e8c9ea397d17.jpg\" _src=\"http://yanxuan.nosdn.127.net/d9f07dcfdfa0e7a90df6e8c9ea397d17.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/00df39022e7a1c29a9c0fbf4a0e3fb38.jpg\" _src=\"http://yanxuan.nosdn.127.net/00df39022e7a1c29a9c0fbf4a0e3fb38.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8588aabc1bbe4475026d74052b166a51.jpg\" _src=\"http://yanxuan.nosdn.127.net/8588aabc1bbe4475026d74052b166a51.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/22071588ec58dfd880e913908acf2544.jpg\" _src=\"http://yanxuan.nosdn.127.net/22071588ec58dfd880e913908acf2544.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c8f02bcd66829318d9ca39618df2f42f.jpg\" _src=\"http://yanxuan.nosdn.127.net/c8f02bcd66829318d9ca39618df2f42f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e0a72a74333e658a4da4bf886d74d739.jpg\" _src=\"http://yanxuan.nosdn.127.net/e0a72a74333e658a4da4bf886d74d739.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8e40a7ae5c9834f61408a1d31c839d79.jpg\" _src=\"http://yanxuan.nosdn.127.net/8e40a7ae5c9834f61408a1d31c839d79.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/af4812a2debd12fb561816f2df84fddc.jpg\" _src=\"http://yanxuan.nosdn.127.net/af4812a2debd12fb561816f2df84fddc.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e8182e35711a99d7e443bd69908948e2.jpg\" _src=\"http://yanxuan.nosdn.127.net/e8182e35711a99d7e443bd69908948e2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/82ca0181ca502c76834e528135b272e8.jpg\" _src=\"http://yanxuan.nosdn.127.net/82ca0181ca502c76834e528135b272e8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f359915790a2bc8a399f243357da1cd4.jpg\" _src=\"http://yanxuan.nosdn.127.net/f359915790a2bc8a399f243357da1cd4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fa9246460b556890c5fdd5a8cc305743.jpg\" _src=\"http://yanxuan.nosdn.127.net/fa9246460b556890c5fdd5a8cc305743.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5381c329f434e08e18e087ebec952a28.jpg\" _src=\"http://yanxuan.nosdn.127.net/5381c329f434e08e18e087ebec952a28.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8f966701c7b93490c5cebf8e9cfdffa5.jpg\" _src=\"http://yanxuan.nosdn.127.net/8f966701c7b93490c5cebf8e9cfdffa5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/056d111c415c9db7282d8a27aeed9ae8.jpg\" _src=\"http://yanxuan.nosdn.127.net/056d111c415c9db7282d8a27aeed9ae8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/32dc1dbca7a4922e8da3aaf90ca5f1be.jpg\" _src=\"http://yanxuan.nosdn.127.net/32dc1dbca7a4922e8da3aaf90ca5f1be.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1ca114e5755a30f1557f8c75b89b1902.jpg\" _src=\"http://yanxuan.nosdn.127.net/1ca114e5755a30f1557f8c75b89b1902.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/959c4385428233e4ec256a6646ced133.jpg\" _src=\"http://yanxuan.nosdn.127.net/959c4385428233e4ec256a6646ced133.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '16', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/56fe8e4eda700613d852141b0fd22fa1.jpg', 'http://yanxuan.nosdn.127.net/37bc0fa3524a904ac740340fa92bd515.png', '79.00', '2023', '1136490', '0.00', '限时购', '', '0.00', '0', '0', '0', '86.90', null, null, null, null);
  766. INSERT INTO `nideshop_goods` VALUES ('1135065', '1010002', '1135065', '里昂 男式防磨平角内裤', '0', '100', '', '19道工艺,磨绒质感', '', '1', '2017-08-30 11:40:11', '9', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/a55e95d3efa6f04d5dae3b9f9b7ca106.png', 'http://yanxuan.nosdn.127.net/055eb16f95fe995108dd683f532fda22.png', '69.00', '7714', '1136556', '0.00', '限时购', '', '0.00', '0', '0', '0', '75.90', null, null, null, null);
  767. INSERT INTO `nideshop_goods` VALUES ('1135072', '1020003', '1135072', '经典海魂纹水手裙(婴童)', '0', '100', '', '自由海军领探索未来梦', '', '1', '2017-08-30 11:40:11', '3', '0', '0', '0.00', '0.00', '1', '件', 'http://yanxuan.nosdn.127.net/fe97cc9eb49397a608eb52671767f9a3.jpg', 'http://yanxuan.nosdn.127.net/43e57d4208cdc78ac9c088f9b3e798f5.png', '69.00', '1864', '1136606', '0.00', '限时购', '', '0.00', '0', '0', '0', '75.90', null, null, null, null);
  768. INSERT INTO `nideshop_goods` VALUES ('1135073', '1020003', '1135073', '海魂纹哈衣水手服(婴童)', '0', '100', '', '经典海魂纹自由海军领', '', '1', '2017-08-30 11:40:11', '4', '0', '0', '0.00', '0.00', '1', '件', 'http://yanxuan.nosdn.127.net/55aac61eeb39a4ac9b60741650897453.png', 'http://yanxuan.nosdn.127.net/53052b04ae001d289c040e09ea92231c.png', '69.00', '1935', '1136618', '0.00', '限时购', '', '0.00', '0', '0', '0', '75.90', null, null, null, null);
  769. INSERT INTO `nideshop_goods` VALUES ('1138000', '1008002', '1138000', '日式蓬软太鼓抱枕', '0', '100', '', '萌趣太鼓造型 软糯轻柔回弹', '<p><img src=\"http://yanxuan.nosdn.127.net/c0433bd3aafdc44b2b5fe10ced151823.jpg\" _src=\"http://yanxuan.nosdn.127.net/c0433bd3aafdc44b2b5fe10ced151823.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/241526b14e760f3b327d745127b7cadd.jpg\" _src=\"http://yanxuan.nosdn.127.net/241526b14e760f3b327d745127b7cadd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/924f6a3a78957b404ea2ad0ea24b4d58.jpg\" _src=\"http://yanxuan.nosdn.127.net/924f6a3a78957b404ea2ad0ea24b4d58.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/21b519690bf5574c6a4794fd0663fa37.jpg\" _src=\"http://yanxuan.nosdn.127.net/21b519690bf5574c6a4794fd0663fa37.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/40ce0f2d0f0331024cb5eeffd48613f5.jpg\" _src=\"http://yanxuan.nosdn.127.net/40ce0f2d0f0331024cb5eeffd48613f5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/707d4c2e44903802f5181edc4d5e2aa4.jpg\" _src=\"http://yanxuan.nosdn.127.net/707d4c2e44903802f5181edc4d5e2aa4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0a26d87e0542007a59158a814b999f67.jpg\" _src=\"http://yanxuan.nosdn.127.net/0a26d87e0542007a59158a814b999f67.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5732b17001835e524acac7d3b75685e7.jpg\" _src=\"http://yanxuan.nosdn.127.net/5732b17001835e524acac7d3b75685e7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/19a4e7e34b7507e1ffb7ff3a3939a0fe.jpg\" _src=\"http://yanxuan.nosdn.127.net/19a4e7e34b7507e1ffb7ff3a3939a0fe.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/699bf4c433ba2bb7736401e2272a2697.jpg\" _src=\"http://yanxuan.nosdn.127.net/699bf4c433ba2bb7736401e2272a2697.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bb28a8cb46ffd42a39122d3f0724b3ee.jpg\" _src=\"http://yanxuan.nosdn.127.net/bb28a8cb46ffd42a39122d3f0724b3ee.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/43f3eeb3661f54db929a9e3c8ee8be1c.jpg\" _src=\"http://yanxuan.nosdn.127.net/43f3eeb3661f54db929a9e3c8ee8be1c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/37b4e61572b7c69462ae74b6a3cb4cb3.jpg\" _src=\"http://yanxuan.nosdn.127.net/37b4e61572b7c69462ae74b6a3cb4cb3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/dd17986d401a93b01526b7855e722efa.jpg\" _src=\"http://yanxuan.nosdn.127.net/dd17986d401a93b01526b7855e722efa.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e76a0c72a3e6cc2f15f61048ef1423c8.jpg\" _src=\"http://yanxuan.nosdn.127.net/e76a0c72a3e6cc2f15f61048ef1423c8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/eabbdb77f25b449b1b3bcfd740a5c85c.jpg\" _src=\"http://yanxuan.nosdn.127.net/eabbdb77f25b449b1b3bcfd740a5c85c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c92f5747f156e0c3df3873456bfdc364.jpg\" _src=\"http://yanxuan.nosdn.127.net/c92f5747f156e0c3df3873456bfdc364.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fce1bbb0804c45fcedc0d407526197bd.jpg\" _src=\"http://yanxuan.nosdn.127.net/fce1bbb0804c45fcedc0d407526197bd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/de893522b3454e6769d46d5d16c35ec9.jpg\" _src=\"http://yanxuan.nosdn.127.net/de893522b3454e6769d46d5d16c35ec9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c7ca459ec92d9f32b25c4d1681a3efdf.jpg\" _src=\"http://yanxuan.nosdn.127.net/c7ca459ec92d9f32b25c4d1681a3efdf.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bd7974a599497d0830fe209f572f1d43.jpg\" _src=\"http://yanxuan.nosdn.127.net/bd7974a599497d0830fe209f572f1d43.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a52672cac9385c1a6da086e46aead878.jpg\" _src=\"http://yanxuan.nosdn.127.net/a52672cac9385c1a6da086e46aead878.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/edc7589ef8d2d748b10d4fbe62d6cad9.jpg\" _src=\"http://yanxuan.nosdn.127.net/edc7589ef8d2d748b10d4fbe62d6cad9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/769529f68aad47685e9fd8ccc88a5065.jpg\" _src=\"http://yanxuan.nosdn.127.net/769529f68aad47685e9fd8ccc88a5065.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6151ae4dcae5a0ed3e9194c0d994e8d8.jpg\" _src=\"http://yanxuan.nosdn.127.net/6151ae4dcae5a0ed3e9194c0d994e8d8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ddfb7e8eb34b476cb3a5cc6aeae1b414.jpg\" _src=\"http://yanxuan.nosdn.127.net/ddfb7e8eb34b476cb3a5cc6aeae1b414.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/356742ded4619131733f009e7f44bdb8.jpg\" _src=\"http://yanxuan.nosdn.127.net/356742ded4619131733f009e7f44bdb8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d522efc0adefdf878a187d68287ccac7.jpg\" _src=\"http://yanxuan.nosdn.127.net/d522efc0adefdf878a187d68287ccac7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bd385aa80f06967d8c120ee2a73ebdea.jpg\" _src=\"http://yanxuan.nosdn.127.net/bd385aa80f06967d8c120ee2a73ebdea.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4a383ec27f0d0fecf6b218a6434a6537.jpg\" _src=\"http://yanxuan.nosdn.127.net/4a383ec27f0d0fecf6b218a6434a6537.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/dd76c5d83bdfac3eaef226032e9f2f1c.jpg\" _src=\"http://yanxuan.nosdn.127.net/dd76c5d83bdfac3eaef226032e9f2f1c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f37bf734bedcb5fc34f96a2d3ce21362.jpg\" _src=\"http://yanxuan.nosdn.127.net/f37bf734bedcb5fc34f96a2d3ce21362.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9426b170263b5f2e60b4e349002fb453.jpg\" _src=\"http://yanxuan.nosdn.127.net/9426b170263b5f2e60b4e349002fb453.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/02c8fd2d4afb11e4ebfe7e675725f8b9.jpg\" _src=\"http://yanxuan.nosdn.127.net/02c8fd2d4afb11e4ebfe7e675725f8b9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/55114d32fb55124afb57fa5f96c7aad6.jpg\" _src=\"http://yanxuan.nosdn.127.net/55114d32fb55124afb57fa5f96c7aad6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6c812cb0cf47dfb2b0e0dbdd4e2ae2d9.jpg\" _src=\"http://yanxuan.nosdn.127.net/6c812cb0cf47dfb2b0e0dbdd4e2ae2d9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8491553451f68f13de7d88abd32e80bb.jpg\" _src=\"http://yanxuan.nosdn.127.net/8491553451f68f13de7d88abd32e80bb.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2358865b0b2916d7b4c85105828e6f5e.jpg\" _src=\"http://yanxuan.nosdn.127.net/2358865b0b2916d7b4c85105828e6f5e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3d4a761f631987bcb1542cee33c35661.jpg\" _src=\"http://yanxuan.nosdn.127.net/3d4a761f631987bcb1542cee33c35661.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/af64442ed12ecc4ec0a8f1053f0e6c4f.jpg\" _src=\"http://yanxuan.nosdn.127.net/af64442ed12ecc4ec0a8f1053f0e6c4f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d00f1aa2e519c822a180024983611962.jpg\" _src=\"http://yanxuan.nosdn.127.net/d00f1aa2e519c822a180024983611962.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4dca882b9a0a583456f322030d96d99f.jpg\" _src=\"http://yanxuan.nosdn.127.net/4dca882b9a0a583456f322030d96d99f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a95ed3ffbb239954cc0f1089600847cb.jpg\" _src=\"http://yanxuan.nosdn.127.net/a95ed3ffbb239954cc0f1089600847cb.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3783189e151670cae90114ac96208749.jpg\" _src=\"http://yanxuan.nosdn.127.net/3783189e151670cae90114ac96208749.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ea89e25888731072a7838f367efe40cc.jpg\" _src=\"http://yanxuan.nosdn.127.net/ea89e25888731072a7838f367efe40cc.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1f3d87a044500179907d61e7984785b8.jpg\" _src=\"http://yanxuan.nosdn.127.net/1f3d87a044500179907d61e7984785b8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bfc62369d2cebd727c24356199b3dfc6.jpg\" _src=\"http://yanxuan.nosdn.127.net/bfc62369d2cebd727c24356199b3dfc6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/be23add374cfc9344889d449a537159c.jpg\" _src=\"http://yanxuan.nosdn.127.net/be23add374cfc9344889d449a537159c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/113f624f32c22d14b8fe49495d275bce.jpg\" _src=\"http://yanxuan.nosdn.127.net/113f624f32c22d14b8fe49495d275bce.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ed060c62699d53a8d04451061aed0a95.jpg\" _src=\"http://yanxuan.nosdn.127.net/ed060c62699d53a8d04451061aed0a95.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a5cc33cd7c28a4c6dbb12e24c5b95e17.jpg\" _src=\"http://yanxuan.nosdn.127.net/a5cc33cd7c28a4c6dbb12e24c5b95e17.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6ea47a643df6b81539cb50e83585febf.jpg\" _src=\"http://yanxuan.nosdn.127.net/6ea47a643df6b81539cb50e83585febf.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/37bd564f186c644e582eb5056597fe2b.jpg\" _src=\"http://yanxuan.nosdn.127.net/37bd564f186c644e582eb5056597fe2b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8b47fe758560f31f84441a5420c2777e.jpg\" _src=\"http://yanxuan.nosdn.127.net/8b47fe758560f31f84441a5420c2777e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/079946aa8f0edab416032a761e69c874.jpg\" _src=\"http://yanxuan.nosdn.127.net/079946aa8f0edab416032a761e69c874.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fab6ee083f738fe81e836f5b46345b8c.jpg\" _src=\"http://yanxuan.nosdn.127.net/fab6ee083f738fe81e836f5b46345b8c.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '2', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/afba3e98110e7a36dea74c5bdfe75e41.jpg', 'http://yanxuan.nosdn.127.net/ad953e16ad8c33b714e7af941ce8cd56.png', '29.00', '49864', '1139013', '0.00', '限时购', '', '0.00', '0', '0', '0', '31.90', null, null, null, null);
  770. INSERT INTO `nideshop_goods` VALUES ('1138001', '1008002', '1138001', '北欧简约山形纹绣花抱枕', '0', '100', '', '精细刺绣,舒适立体', '<p><img src=\"http://yanxuan.nosdn.127.net/5737ca831d2cd44a2242eb0992583faf.jpg\" _src=\"http://yanxuan.nosdn.127.net/5737ca831d2cd44a2242eb0992583faf.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1160e68bcdeba98d2aada60af18c03c8.jpg\" _src=\"http://yanxuan.nosdn.127.net/1160e68bcdeba98d2aada60af18c03c8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c3772cb0d0f4767217726f9af7faa396.jpg\" _src=\"http://yanxuan.nosdn.127.net/c3772cb0d0f4767217726f9af7faa396.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/715a7f19500f5c28d9f73d37ebb1c557.jpg\" _src=\"http://yanxuan.nosdn.127.net/715a7f19500f5c28d9f73d37ebb1c557.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/84238cd8ab59b2fe193b825a3e89fd65.jpg\" _src=\"http://yanxuan.nosdn.127.net/84238cd8ab59b2fe193b825a3e89fd65.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f4efe768f21095587d8bb4db202b2e23.jpg\" _src=\"http://yanxuan.nosdn.127.net/f4efe768f21095587d8bb4db202b2e23.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/dbb5a935340a7ff61de6bec5fa3fd985.jpg\" _src=\"http://yanxuan.nosdn.127.net/dbb5a935340a7ff61de6bec5fa3fd985.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b0750c142e857a922d77999a48760cb9.jpg\" _src=\"http://yanxuan.nosdn.127.net/b0750c142e857a922d77999a48760cb9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d742c6ee8b65f2812784e13c2efd04fc.jpg\" _src=\"http://yanxuan.nosdn.127.net/d742c6ee8b65f2812784e13c2efd04fc.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3aada66e84ec86907ca941fbc5235f12.jpg\" _src=\"http://yanxuan.nosdn.127.net/3aada66e84ec86907ca941fbc5235f12.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bb0fd8620c6d6208773667096709ba2b.jpg\" _src=\"http://yanxuan.nosdn.127.net/bb0fd8620c6d6208773667096709ba2b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/82b0a7a951c15b41eb5a4bb688dd74dc.jpg\" _src=\"http://yanxuan.nosdn.127.net/82b0a7a951c15b41eb5a4bb688dd74dc.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/274fea6d222c1da9c687cb73f0f4f993.jpg\" _src=\"http://yanxuan.nosdn.127.net/274fea6d222c1da9c687cb73f0f4f993.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fc87ced2f7b274139bb079a75f7adf91.jpg\" _src=\"http://yanxuan.nosdn.127.net/fc87ced2f7b274139bb079a75f7adf91.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3a7f98096222daadf9820e1075670173.jpg\" _src=\"http://yanxuan.nosdn.127.net/3a7f98096222daadf9820e1075670173.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/26501a456d9e85980e12efe92120de56.jpg\" _src=\"http://yanxuan.nosdn.127.net/26501a456d9e85980e12efe92120de56.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7a9fbd6be2b2a3c2c83d4edaad2086a6.jpg\" _src=\"http://yanxuan.nosdn.127.net/7a9fbd6be2b2a3c2c83d4edaad2086a6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a3bf915e824b8b917c893167a99a3773.jpg\" _src=\"http://yanxuan.nosdn.127.net/a3bf915e824b8b917c893167a99a3773.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/211b5a457edcb05d3f3d21ff69c48398.jpg\" _src=\"http://yanxuan.nosdn.127.net/211b5a457edcb05d3f3d21ff69c48398.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cc0105d79ff4744f0680cbd2f87a8060.jpg\" _src=\"http://yanxuan.nosdn.127.net/cc0105d79ff4744f0680cbd2f87a8060.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f1da6da8c6b7b52f958fdec1dd7769c6.jpg\" _src=\"http://yanxuan.nosdn.127.net/f1da6da8c6b7b52f958fdec1dd7769c6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/88ed21fc61da4f79545941fffce1f68c.jpg\" _src=\"http://yanxuan.nosdn.127.net/88ed21fc61da4f79545941fffce1f68c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6eb4abc57dbd46d6dcc38cac3bd32c68.jpg\" _src=\"http://yanxuan.nosdn.127.net/6eb4abc57dbd46d6dcc38cac3bd32c68.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3c54b9b585c2e03559865e086f9b45bd.jpg\" _src=\"http://yanxuan.nosdn.127.net/3c54b9b585c2e03559865e086f9b45bd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f88e9af10088b3a0b4669b27ef2fcadb.jpg\" _src=\"http://yanxuan.nosdn.127.net/f88e9af10088b3a0b4669b27ef2fcadb.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6b249bac9bf3aa94bf4fffb5ac4d1e70.jpg\" _src=\"http://yanxuan.nosdn.127.net/6b249bac9bf3aa94bf4fffb5ac4d1e70.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b7ded1405eaa6f687eeb9e31b469d5de.jpg\" _src=\"http://yanxuan.nosdn.127.net/b7ded1405eaa6f687eeb9e31b469d5de.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3d072d1f04f7d94495227cf25b591744.jpg\" _src=\"http://yanxuan.nosdn.127.net/3d072d1f04f7d94495227cf25b591744.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/89f67b83d74f2a18b680bb5e6ef0d721.jpg\" _src=\"http://yanxuan.nosdn.127.net/89f67b83d74f2a18b680bb5e6ef0d721.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/236e948413b249b5ea4c1f6f8e835641.jpg\" _src=\"http://yanxuan.nosdn.127.net/236e948413b249b5ea4c1f6f8e835641.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b799d3613b5e3b87d89a608533473df8.jpg\" _src=\"http://yanxuan.nosdn.127.net/b799d3613b5e3b87d89a608533473df8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e6d4af8873253a0b5ae097c15c3628c0.jpg\" _src=\"http://yanxuan.nosdn.127.net/e6d4af8873253a0b5ae097c15c3628c0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fc017dc5a790385f6a96b43cf1a5b867.jpg\" _src=\"http://yanxuan.nosdn.127.net/fc017dc5a790385f6a96b43cf1a5b867.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0f10cc90e368fad0bd49fafc3b9047b5.jpg\" _src=\"http://yanxuan.nosdn.127.net/0f10cc90e368fad0bd49fafc3b9047b5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/864bf5646ba2ad778f507c224973bca7.jpg\" _src=\"http://yanxuan.nosdn.127.net/864bf5646ba2ad778f507c224973bca7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0443f772258e35af98be389a08fd85b8.jpg\" _src=\"http://yanxuan.nosdn.127.net/0443f772258e35af98be389a08fd85b8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/821926b210f311717fdaa0eccb142e37.jpg\" _src=\"http://yanxuan.nosdn.127.net/821926b210f311717fdaa0eccb142e37.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/24d0ab5a259a662501e813cf21d752d8.jpg\" _src=\"http://yanxuan.nosdn.127.net/24d0ab5a259a662501e813cf21d752d8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b58c263c7e090c68d77e056c9d9afe27.jpg\" _src=\"http://yanxuan.nosdn.127.net/b58c263c7e090c68d77e056c9d9afe27.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d50d8b9f53f54ff0c066de7b39b2601c.jpg\" _src=\"http://yanxuan.nosdn.127.net/d50d8b9f53f54ff0c066de7b39b2601c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b382bfe1d8797e845bbcfd9dce361f76.jpg\" _src=\"http://yanxuan.nosdn.127.net/b382bfe1d8797e845bbcfd9dce361f76.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3aecb3e8d261312596727f56b54a0fa2.jpg\" _src=\"http://yanxuan.nosdn.127.net/3aecb3e8d261312596727f56b54a0fa2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c733463829f1fe8fa61998ae7c2ae37b.jpg\" _src=\"http://yanxuan.nosdn.127.net/c733463829f1fe8fa61998ae7c2ae37b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/da2850f298b6cf4108e00a06bbc59821.jpg\" _src=\"http://yanxuan.nosdn.127.net/da2850f298b6cf4108e00a06bbc59821.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bd0924729a92af064c2108569e9d9463.jpg\" _src=\"http://yanxuan.nosdn.127.net/bd0924729a92af064c2108569e9d9463.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b819438a87396b0e3cc22202fc19caf0.jpg\" _src=\"http://yanxuan.nosdn.127.net/b819438a87396b0e3cc22202fc19caf0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3ea853201f8ad389ae3068f3d765aa44.jpg\" _src=\"http://yanxuan.nosdn.127.net/3ea853201f8ad389ae3068f3d765aa44.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5ef9093e1959a79178c32d5fc0fbe996.jpg\" _src=\"http://yanxuan.nosdn.127.net/5ef9093e1959a79178c32d5fc0fbe996.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/da1d1a9a1e2afe85b640d573085a3d24.jpg\" _src=\"http://yanxuan.nosdn.127.net/da1d1a9a1e2afe85b640d573085a3d24.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ce702a9ac92d3666be5d4de2af5e03ab.jpg\" _src=\"http://yanxuan.nosdn.127.net/ce702a9ac92d3666be5d4de2af5e03ab.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b43f6da048bbc7206990d9ff972a23ba.jpg\" _src=\"http://yanxuan.nosdn.127.net/b43f6da048bbc7206990d9ff972a23ba.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/22eb869c0f07b55826e1e183dd498f3f.jpg\" _src=\"http://yanxuan.nosdn.127.net/22eb869c0f07b55826e1e183dd498f3f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d2c6bf7e29f0e8380ebef90b3bab2294.jpg\" _src=\"http://yanxuan.nosdn.127.net/d2c6bf7e29f0e8380ebef90b3bab2294.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '3', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/1d388fe2012c52f77732aef17b32a058.jpg', 'http://yanxuan.nosdn.127.net/dbc5b25b824c3b3d7ff43b56ca35eee9.png', '79.00', '5508', '1139049', '0.00', '限时购', '', '0.00', '0', '0', '0', '86.90', null, null, null, null);
  771. INSERT INTO `nideshop_goods` VALUES ('1143006', '1012003', '1143006', '十四行诗-礼盒', '0', '100', '', '简约素雅,文艺大气', '', '1', '2017-08-30 11:40:11', '1', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/6581026507cf958241a07b38a7abb516.jpg', 'http://yanxuan.nosdn.127.net/2b48feb65954c6739be28d15b9fbfbe3.png', '99.00', '4447', '1144026', '0.00', '限时购', '', '0.00', '0', '0', '0', '108.90', null, null, null, null);
  772. INSERT INTO `nideshop_goods` VALUES ('1143015', '1036000', '1143015', '婴儿床蔺草席', '0', '100', '', '天然龙眉草,婴童可用', '<p><img src=\"http://yanxuan.nosdn.127.net/5b61283878386d0a6689aaf2c7cca216.jpg\" _src=\"http://yanxuan.nosdn.127.net/5b61283878386d0a6689aaf2c7cca216.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/317f0172cd25cf4e3df977ae352e93de.jpg\" _src=\"http://yanxuan.nosdn.127.net/317f0172cd25cf4e3df977ae352e93de.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ce44d9f635c9622d07b013d1ecec673b.jpg\" _src=\"http://yanxuan.nosdn.127.net/ce44d9f635c9622d07b013d1ecec673b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e1458923bf8ef1026d348b8b3836bebb.jpg\" _src=\"http://yanxuan.nosdn.127.net/e1458923bf8ef1026d348b8b3836bebb.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/aadf3010b98aea8b76e71311bd1817be.jpg\" _src=\"http://yanxuan.nosdn.127.net/aadf3010b98aea8b76e71311bd1817be.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0ebd08654443994ed649268bf3e2644e.jpg\" _src=\"http://yanxuan.nosdn.127.net/0ebd08654443994ed649268bf3e2644e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a4d8ebfb3b325c5860593111853b4cf0.jpg\" _src=\"http://yanxuan.nosdn.127.net/a4d8ebfb3b325c5860593111853b4cf0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a82ab7d28d583d0ee1589839d4bbd4ed.jpg\" _src=\"http://yanxuan.nosdn.127.net/a82ab7d28d583d0ee1589839d4bbd4ed.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d4d5b0f2a189b762dbfa30d17d9c2000.jpg\" _src=\"http://yanxuan.nosdn.127.net/d4d5b0f2a189b762dbfa30d17d9c2000.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3ced9250cbae3d8aab59cce10097f604.jpg\" _src=\"http://yanxuan.nosdn.127.net/3ced9250cbae3d8aab59cce10097f604.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/defc1c7c003db33e3a59f516a2d8d325.jpg\" _src=\"http://yanxuan.nosdn.127.net/defc1c7c003db33e3a59f516a2d8d325.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d771d0983bf9e4c8fa9e1884670bd0f4.jpg\" _src=\"http://yanxuan.nosdn.127.net/d771d0983bf9e4c8fa9e1884670bd0f4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cd34242238006e1025979957f8c3472a.jpg\" _src=\"http://yanxuan.nosdn.127.net/cd34242238006e1025979957f8c3472a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e92d5f81f62dc8fe04637d2c7cb547cf.jpg\" _src=\"http://yanxuan.nosdn.127.net/e92d5f81f62dc8fe04637d2c7cb547cf.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ea5b8208c72f4c24e34eb7c60eaa08ba.jpg\" _src=\"http://yanxuan.nosdn.127.net/ea5b8208c72f4c24e34eb7c60eaa08ba.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/07313180371a891db51584f4f9a8c7f8.jpg\" _src=\"http://yanxuan.nosdn.127.net/07313180371a891db51584f4f9a8c7f8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0c5eda0ef4b1531769bba85577da55a5.jpg\" _src=\"http://yanxuan.nosdn.127.net/0c5eda0ef4b1531769bba85577da55a5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d1a8cbadb11977682e7ee27cf91641f3.jpg\" _src=\"http://yanxuan.nosdn.127.net/d1a8cbadb11977682e7ee27cf91641f3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/68c44468e16975d51f0a0681ffc9bc20.jpg\" _src=\"http://yanxuan.nosdn.127.net/68c44468e16975d51f0a0681ffc9bc20.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/235d44c2f70e56eac52e42d7e9394f08.jpg\" _src=\"http://yanxuan.nosdn.127.net/235d44c2f70e56eac52e42d7e9394f08.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ed95f47c5d824989cb194f6a07f254f2.jpg\" _src=\"http://yanxuan.nosdn.127.net/ed95f47c5d824989cb194f6a07f254f2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2e398e17d2d87162f1bef8a2bc8a5811.jpg\" _src=\"http://yanxuan.nosdn.127.net/2e398e17d2d87162f1bef8a2bc8a5811.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0061713aac984a6d87141be2228b8530.jpg\" _src=\"http://yanxuan.nosdn.127.net/0061713aac984a6d87141be2228b8530.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1c090d3a13c075d6156c0ea944e1f1a6.jpg\" _src=\"http://yanxuan.nosdn.127.net/1c090d3a13c075d6156c0ea944e1f1a6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/09420e2f06e599d083664957b8b884aa.jpg\" _src=\"http://yanxuan.nosdn.127.net/09420e2f06e599d083664957b8b884aa.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bb477e3a351f4e40ca76bf354dff70a7.jpg\" _src=\"http://yanxuan.nosdn.127.net/bb477e3a351f4e40ca76bf354dff70a7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/68f2f21b876d694ff1af0ffcde990bee.jpg\" _src=\"http://yanxuan.nosdn.127.net/68f2f21b876d694ff1af0ffcde990bee.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/957d8bfbd1854f3a92ec2fc0749dc6da.jpg\" _src=\"http://yanxuan.nosdn.127.net/957d8bfbd1854f3a92ec2fc0749dc6da.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/84134ea83eb50206ee0c3ef0ab52d78f.jpg\" _src=\"http://yanxuan.nosdn.127.net/84134ea83eb50206ee0c3ef0ab52d78f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/379692b42214d136c3a445d45a5b1b1d.jpg\" _src=\"http://yanxuan.nosdn.127.net/379692b42214d136c3a445d45a5b1b1d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a25c517680858162dea24d0b37d64b53.jpg\" _src=\"http://yanxuan.nosdn.127.net/a25c517680858162dea24d0b37d64b53.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4c04b31c04e1d9889253d567a6ce32a4.jpg\" _src=\"http://yanxuan.nosdn.127.net/4c04b31c04e1d9889253d567a6ce32a4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0b05310ce60fafbb1f0b6c7627a67196.jpg\" _src=\"http://yanxuan.nosdn.127.net/0b05310ce60fafbb1f0b6c7627a67196.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1cf0d8858292a9bb20f80dd774637613.jpg\" _src=\"http://yanxuan.nosdn.127.net/1cf0d8858292a9bb20f80dd774637613.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/72e3d6e2e01c5b9548f3439abe7969fd.jpg\" _src=\"http://yanxuan.nosdn.127.net/72e3d6e2e01c5b9548f3439abe7969fd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/904a4481b60969252a60f3c190344bc8.jpg\" _src=\"http://yanxuan.nosdn.127.net/904a4481b60969252a60f3c190344bc8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/98ece1c30eb8d7b16aa11af48b03553c.jpg\" _src=\"http://yanxuan.nosdn.127.net/98ece1c30eb8d7b16aa11af48b03553c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/39dd6d55d20f56ca1795e3d45935adb0.jpg\" _src=\"http://yanxuan.nosdn.127.net/39dd6d55d20f56ca1795e3d45935adb0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/039e0ac85d9acf414c44863f39ad8929.jpg\" _src=\"http://yanxuan.nosdn.127.net/039e0ac85d9acf414c44863f39ad8929.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a336c7b499f5426bcea6b3ab31a5f93f.jpg\" _src=\"http://yanxuan.nosdn.127.net/a336c7b499f5426bcea6b3ab31a5f93f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e697f9bb8a793a4d3663147ceb1d8b57.jpg\" _src=\"http://yanxuan.nosdn.127.net/e697f9bb8a793a4d3663147ceb1d8b57.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/64d57a4fb77a24a2df5bd1c14d7f4da0.jpg\" _src=\"http://yanxuan.nosdn.127.net/64d57a4fb77a24a2df5bd1c14d7f4da0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/13ac7026c48e61f9f1b25117ea1b9e40.jpg\" _src=\"http://yanxuan.nosdn.127.net/13ac7026c48e61f9f1b25117ea1b9e40.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/61bdc294c3231090b937b7d5328277da.jpg\" _src=\"http://yanxuan.nosdn.127.net/61bdc294c3231090b937b7d5328277da.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2af5948114532c7170ffeaedfda5da49.jpg\" _src=\"http://yanxuan.nosdn.127.net/2af5948114532c7170ffeaedfda5da49.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8e43b9131d81764e1ef81458de7bb798.jpg\" _src=\"http://yanxuan.nosdn.127.net/8e43b9131d81764e1ef81458de7bb798.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1ef58e9ed789f86a985ab9439a95a6c4.jpg\" _src=\"http://yanxuan.nosdn.127.net/1ef58e9ed789f86a985ab9439a95a6c4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/45c8b928bc8cf670051e446a252a4960.jpg\" _src=\"http://yanxuan.nosdn.127.net/45c8b928bc8cf670051e446a252a4960.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e15246213d7633d34c33fe214a53e8c1.jpg\" _src=\"http://yanxuan.nosdn.127.net/e15246213d7633d34c33fe214a53e8c1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/084e90368fdadcc1f87c594d22f2b9de.jpg\" _src=\"http://yanxuan.nosdn.127.net/084e90368fdadcc1f87c594d22f2b9de.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cd8018baef4c8839ef169fef88c871d2.jpg\" _src=\"http://yanxuan.nosdn.127.net/cd8018baef4c8839ef169fef88c871d2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7e7c26b5a006575d26c9b65afb716ac2.jpg\" _src=\"http://yanxuan.nosdn.127.net/7e7c26b5a006575d26c9b65afb716ac2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a0e06716327075b050026390e4ca2f0b.jpg\" _src=\"http://yanxuan.nosdn.127.net/a0e06716327075b050026390e4ca2f0b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/03a7fa7173433ce47ff48eeb69682d0d.jpg\" _src=\"http://yanxuan.nosdn.127.net/03a7fa7173433ce47ff48eeb69682d0d.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '12', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/a53a90c6a7d47ad862b570579ec3e89e.jpg', 'http://yanxuan.nosdn.127.net/50e197854e0ada79c37b7215a1574450.png', '79.00', '130', '1144081', '0.00', '限时购', '', '0.00', '0', '0', '1', '86.90', null, null, null, null);
  773. INSERT INTO `nideshop_goods` VALUES ('1143016', '1012001', '1143016', '112升 纯PC拉链斜纹拉杆箱', '0', '100', '', '容量升级,全家一箱搞定', '', '1', '2017-08-30 11:40:11', '6', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/122e27c15197386f454f74176183d202.png', 'http://yanxuan.nosdn.127.net/e56c6239ee4a641ce2a4565c6babb43e.png', '319.00', '6920', '1150007', '0.00', '限时购', '', '0.00', '0', '0', '0', '350.90', null, null, null, null);
  774. INSERT INTO `nideshop_goods` VALUES ('1143018', '1008015', '1143018', '粽情乡思端午粽礼盒 640克', '0', '100', '', '五种口味,寄情端午', '', '1', '2017-08-30 11:40:11', '1', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/e34581a51939ceaf69ac71fe19c1cc45.jpg', 'http://yanxuan.nosdn.127.net/d1fd69cee4990f4de1109baef30efeeb.png', '68.00', '3641', '1144095', '0.00', '限时购', '', '0.00', '0', '0', '0', '74.80', null, null, null, null);
  775. INSERT INTO `nideshop_goods` VALUES ('1143019', '1008015', '1143019', '粽夏冰晶端午粽礼盒 480克', '0', '100', '', '五味冰粽,清凉一夏', '', '1', '2017-08-30 11:40:11', '2', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/2b88be4b0e9acfa83d5d95fa19f13a1f.jpg', 'http://yanxuan.nosdn.127.net/277b07c1e5e6fb57cf9ca47fcd3903d5.png', '98.00', '2610', '1144096', '0.00', '限时购', '', '0.00', '0', '0', '0', '107.80', null, null, null, null);
  776. INSERT INTO `nideshop_goods` VALUES ('1143020', '1008015', '1143020', '粽横四海端午粽礼盒 800克', '0', '100', '', '八方风味,粽香礼赞', '', '1', '2017-08-30 11:40:11', '3', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/9465a0076a665f3937269685879cdbb9.jpg', 'http://yanxuan.nosdn.127.net/200d4d59763af9a0781cca4a06175de7.png', '168.00', '1327', '1144097', '0.00', '限时购', '', '0.00', '0', '0', '0', '184.80', null, null, null, null);
  777. INSERT INTO `nideshop_goods` VALUES ('1147045', '1008002', '1147045', '清新趣粉系列居家地毯 灰黄条纹', '0', '100', '', '条纹色块拼接 软糯温馨', '<p><img src=\"http://yanxuan.nosdn.127.net/baa3d2e8841117edfdf0b77ba4b923a3.jpg\" _src=\"http://yanxuan.nosdn.127.net/baa3d2e8841117edfdf0b77ba4b923a3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8c629e309184f5e1e51cdb10193bf993.jpg\" _src=\"http://yanxuan.nosdn.127.net/8c629e309184f5e1e51cdb10193bf993.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1e9f6e41af564fd0cc40a123dce69db4.jpg\" _src=\"http://yanxuan.nosdn.127.net/1e9f6e41af564fd0cc40a123dce69db4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/61df354d45227bd4d1870a792cc69b65.jpg\" _src=\"http://yanxuan.nosdn.127.net/61df354d45227bd4d1870a792cc69b65.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/eb315d87c9b79db279e8fe1f0a4ff351.jpg\" _src=\"http://yanxuan.nosdn.127.net/eb315d87c9b79db279e8fe1f0a4ff351.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b43def579fe53f8b3d55f3838a5e98dc.jpg\" _src=\"http://yanxuan.nosdn.127.net/b43def579fe53f8b3d55f3838a5e98dc.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4844c8fcd50ebca556d83c3b79563e30.jpg\" _src=\"http://yanxuan.nosdn.127.net/4844c8fcd50ebca556d83c3b79563e30.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d8ec64be5f5e18d9c7c3f8031f843928.jpg\" _src=\"http://yanxuan.nosdn.127.net/d8ec64be5f5e18d9c7c3f8031f843928.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/76b3c0e01553f16457d2d86c7a4fcfd6.jpg\" _src=\"http://yanxuan.nosdn.127.net/76b3c0e01553f16457d2d86c7a4fcfd6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fef2ca1994a2fdb6a2ed15c6fcd55e71.jpg\" _src=\"http://yanxuan.nosdn.127.net/fef2ca1994a2fdb6a2ed15c6fcd55e71.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/02cc37f70c3eb52657303293f20d7273.jpg\" _src=\"http://yanxuan.nosdn.127.net/02cc37f70c3eb52657303293f20d7273.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e9970f5e3649225e7922cd16e2552f92.jpg\" _src=\"http://yanxuan.nosdn.127.net/e9970f5e3649225e7922cd16e2552f92.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/73be44d027e0869444fabcf8455f7c41.jpg\" _src=\"http://yanxuan.nosdn.127.net/73be44d027e0869444fabcf8455f7c41.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4b032b74be52d7f848073d847c4ad2e5.jpg\" _src=\"http://yanxuan.nosdn.127.net/4b032b74be52d7f848073d847c4ad2e5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/39422d211ff45305b433f52be48ba594.jpg\" _src=\"http://yanxuan.nosdn.127.net/39422d211ff45305b433f52be48ba594.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/253b600c627a913f11621c4b0efabd9b.jpg\" _src=\"http://yanxuan.nosdn.127.net/253b600c627a913f11621c4b0efabd9b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e0615bcf15f2a5c242cf8ac8b25954e9.jpg\" _src=\"http://yanxuan.nosdn.127.net/e0615bcf15f2a5c242cf8ac8b25954e9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/75c6bb3e19f57b854f3f1c81aebb12a5.jpg\" _src=\"http://yanxuan.nosdn.127.net/75c6bb3e19f57b854f3f1c81aebb12a5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0d8903b362c483a6a361e25db45efad4.jpg\" _src=\"http://yanxuan.nosdn.127.net/0d8903b362c483a6a361e25db45efad4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/861fb97fb4debc078419692924514e82.jpg\" _src=\"http://yanxuan.nosdn.127.net/861fb97fb4debc078419692924514e82.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/743398e0811fd6d35b89c8a381596b78.jpg\" _src=\"http://yanxuan.nosdn.127.net/743398e0811fd6d35b89c8a381596b78.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8e9e0833fcc2817458548985fc82743a.jpg\" _src=\"http://yanxuan.nosdn.127.net/8e9e0833fcc2817458548985fc82743a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6fc6a7297e038f54bdd793fa4d46b7f6.jpg\" _src=\"http://yanxuan.nosdn.127.net/6fc6a7297e038f54bdd793fa4d46b7f6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f9d1f2c5711307a84e2ef3a804eb124e.jpg\" _src=\"http://yanxuan.nosdn.127.net/f9d1f2c5711307a84e2ef3a804eb124e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d43ea14ec1e6a520d204fef585bc2ced.jpg\" _src=\"http://yanxuan.nosdn.127.net/d43ea14ec1e6a520d204fef585bc2ced.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ca2cab985f7089ad1d6a94d6dd32ff79.jpg\" _src=\"http://yanxuan.nosdn.127.net/ca2cab985f7089ad1d6a94d6dd32ff79.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/adaf13c5db73ab4617b6fa0523281cb8.jpg\" _src=\"http://yanxuan.nosdn.127.net/adaf13c5db73ab4617b6fa0523281cb8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7adf7694a6b17807ef8d209b762019ac.jpg\" _src=\"http://yanxuan.nosdn.127.net/7adf7694a6b17807ef8d209b762019ac.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4e240ae9175c7038ba5aea852ba8d79b.jpg\" _src=\"http://yanxuan.nosdn.127.net/4e240ae9175c7038ba5aea852ba8d79b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f996a3aedda46c7035c7e62f15de1b12.jpg\" _src=\"http://yanxuan.nosdn.127.net/f996a3aedda46c7035c7e62f15de1b12.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8b8d1f9feac00c6f0400cf1398075afe.jpg\" _src=\"http://yanxuan.nosdn.127.net/8b8d1f9feac00c6f0400cf1398075afe.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/da97979f5eb5ebc72258275a4dc4f811.jpg\" _src=\"http://yanxuan.nosdn.127.net/da97979f5eb5ebc72258275a4dc4f811.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/836c4651e2517b6fec9378f5b402ee52.jpg\" _src=\"http://yanxuan.nosdn.127.net/836c4651e2517b6fec9378f5b402ee52.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/aabd8aebb5ba1e110e83549fc4731695.jpg\" _src=\"http://yanxuan.nosdn.127.net/aabd8aebb5ba1e110e83549fc4731695.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9b9044c606ecc9f38abbf0221e3ebbd4.jpg\" _src=\"http://yanxuan.nosdn.127.net/9b9044c606ecc9f38abbf0221e3ebbd4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f16bc374ca38229922d2045a665e2748.jpg\" _src=\"http://yanxuan.nosdn.127.net/f16bc374ca38229922d2045a665e2748.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/71061c570c309fa87cc40be92015ddc2.jpg\" _src=\"http://yanxuan.nosdn.127.net/71061c570c309fa87cc40be92015ddc2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a96dbfd80979f937ea12a3af9320967f.jpg\" _src=\"http://yanxuan.nosdn.127.net/a96dbfd80979f937ea12a3af9320967f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/108f41fb93d0b1b4a126e5a9f1e4c36b.jpg\" _src=\"http://yanxuan.nosdn.127.net/108f41fb93d0b1b4a126e5a9f1e4c36b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/082055188b9b80a9280d87f0da63f071.jpg\" _src=\"http://yanxuan.nosdn.127.net/082055188b9b80a9280d87f0da63f071.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/16785ca3b958e7f7285e60d83cb642dd.jpg\" _src=\"http://yanxuan.nosdn.127.net/16785ca3b958e7f7285e60d83cb642dd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ddddc261de8e4000c8172e2541375167.jpg\" _src=\"http://yanxuan.nosdn.127.net/ddddc261de8e4000c8172e2541375167.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/59e2121b4fded2ec47e9b5465fd3e019.jpg\" _src=\"http://yanxuan.nosdn.127.net/59e2121b4fded2ec47e9b5465fd3e019.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/df574a0bb679353a6dc1fb0ddc5f3eb5.jpg\" _src=\"http://yanxuan.nosdn.127.net/df574a0bb679353a6dc1fb0ddc5f3eb5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/09ad34f2c245395cf95d6bfe90e178da.jpg\" _src=\"http://yanxuan.nosdn.127.net/09ad34f2c245395cf95d6bfe90e178da.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '28', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/4675b367076adc6817efd2b1f3746534.jpg', 'http://yanxuan.nosdn.127.net/5cda4a0c4c4ff9728d03186bd053c9ca.png', '599.00', '247', '1148174', '0.00', '限时购', '', '0.00', '0', '0', '0', '658.90', null, null, null, null);
  778. INSERT INTO `nideshop_goods` VALUES ('1147046', '1008002', '1147046', '清新趣粉系列居家地毯 条纹间粉', '0', '100', '', '多色拼接 舒柔静音', '<p><img src=\"http://yanxuan.nosdn.127.net/b3e30fd4547bd74e73f6de777eb64bcd.jpg\" _src=\"http://yanxuan.nosdn.127.net/b3e30fd4547bd74e73f6de777eb64bcd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c224fa76981b3ee07645807d1ad0ab1c.jpg\" _src=\"http://yanxuan.nosdn.127.net/c224fa76981b3ee07645807d1ad0ab1c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/77835aad8abf7f76f0c7d3a2733aae69.jpg\" _src=\"http://yanxuan.nosdn.127.net/77835aad8abf7f76f0c7d3a2733aae69.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2062742ccf38bdb099123db791cda7a2.jpg\" _src=\"http://yanxuan.nosdn.127.net/2062742ccf38bdb099123db791cda7a2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/952b3584258aae0d3e05ef6b62acdce5.jpg\" _src=\"http://yanxuan.nosdn.127.net/952b3584258aae0d3e05ef6b62acdce5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d30e5094f3a9f6649d70680cbf0b3926.jpg\" _src=\"http://yanxuan.nosdn.127.net/d30e5094f3a9f6649d70680cbf0b3926.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b08dc18762700d9bf8cf76fbe25f2a5d.jpg\" _src=\"http://yanxuan.nosdn.127.net/b08dc18762700d9bf8cf76fbe25f2a5d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6c86c5e807cde9caeb442c7f38ec0150.jpg\" _src=\"http://yanxuan.nosdn.127.net/6c86c5e807cde9caeb442c7f38ec0150.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6d698add3680c26585135789f6017aac.jpg\" _src=\"http://yanxuan.nosdn.127.net/6d698add3680c26585135789f6017aac.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/308bba84a93420ab84dcf137c1ed40cd.jpg\" _src=\"http://yanxuan.nosdn.127.net/308bba84a93420ab84dcf137c1ed40cd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d99cfdded9ca4eaf4b8893a02990a66e.jpg\" _src=\"http://yanxuan.nosdn.127.net/d99cfdded9ca4eaf4b8893a02990a66e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3fc5684fa24b379ab34a348305a771d8.jpg\" _src=\"http://yanxuan.nosdn.127.net/3fc5684fa24b379ab34a348305a771d8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/539f5536b64206e201ac52a9812685d9.jpg\" _src=\"http://yanxuan.nosdn.127.net/539f5536b64206e201ac52a9812685d9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1a9cb4fd76ff556c5d3dede50366c94e.jpg\" _src=\"http://yanxuan.nosdn.127.net/1a9cb4fd76ff556c5d3dede50366c94e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4198d8a1ac1b9f8dec283041d4fd2995.jpg\" _src=\"http://yanxuan.nosdn.127.net/4198d8a1ac1b9f8dec283041d4fd2995.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/426ea47932152aea6bc507f3e7e45419.jpg\" _src=\"http://yanxuan.nosdn.127.net/426ea47932152aea6bc507f3e7e45419.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/39a503db110fd6af417f2a4f8c69e0dd.jpg\" _src=\"http://yanxuan.nosdn.127.net/39a503db110fd6af417f2a4f8c69e0dd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/33c5cbd2a8b3f6e822411bd1c3ad7a8a.jpg\" _src=\"http://yanxuan.nosdn.127.net/33c5cbd2a8b3f6e822411bd1c3ad7a8a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/08dc7ac6cf5bd20b14306161ad801f89.jpg\" _src=\"http://yanxuan.nosdn.127.net/08dc7ac6cf5bd20b14306161ad801f89.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/dd0c4ae24186570c49ecb6ea6bc4d223.jpg\" _src=\"http://yanxuan.nosdn.127.net/dd0c4ae24186570c49ecb6ea6bc4d223.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/46eaed18b282b3177df608f9e410cfac.jpg\" _src=\"http://yanxuan.nosdn.127.net/46eaed18b282b3177df608f9e410cfac.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2e4a411c483653141471eec5c9c9f6fc.jpg\" _src=\"http://yanxuan.nosdn.127.net/2e4a411c483653141471eec5c9c9f6fc.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e013bfa3e6a997fcce4e526efa5d68fd.jpg\" _src=\"http://yanxuan.nosdn.127.net/e013bfa3e6a997fcce4e526efa5d68fd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/50bc2637bd5ea29d1d787df548e494c3.jpg\" _src=\"http://yanxuan.nosdn.127.net/50bc2637bd5ea29d1d787df548e494c3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ef7aebd62895db555aec269d55cbe14a.jpg\" _src=\"http://yanxuan.nosdn.127.net/ef7aebd62895db555aec269d55cbe14a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cb53d78a085c29a0c12ec4c608db20a2.jpg\" _src=\"http://yanxuan.nosdn.127.net/cb53d78a085c29a0c12ec4c608db20a2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b887ad166e42363fe84e7a7a74971b88.jpg\" _src=\"http://yanxuan.nosdn.127.net/b887ad166e42363fe84e7a7a74971b88.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e57ab2325bfacc46a536d2e9f774814b.jpg\" _src=\"http://yanxuan.nosdn.127.net/e57ab2325bfacc46a536d2e9f774814b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2bf04434da86c3ef8f46e034164836a6.jpg\" _src=\"http://yanxuan.nosdn.127.net/2bf04434da86c3ef8f46e034164836a6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bfa1f11efc7d868ae038fadc5f55096b.jpg\" _src=\"http://yanxuan.nosdn.127.net/bfa1f11efc7d868ae038fadc5f55096b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0dd4b31cc78d7f9047948b224221b643.jpg\" _src=\"http://yanxuan.nosdn.127.net/0dd4b31cc78d7f9047948b224221b643.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/39a3bc4e36427106682402c687addb1d.jpg\" _src=\"http://yanxuan.nosdn.127.net/39a3bc4e36427106682402c687addb1d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ae019d3a06a02983f26de10b3b415830.jpg\" _src=\"http://yanxuan.nosdn.127.net/ae019d3a06a02983f26de10b3b415830.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f8fef320814c866e80295655a8bcbd81.jpg\" _src=\"http://yanxuan.nosdn.127.net/f8fef320814c866e80295655a8bcbd81.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/980c7827076572b35c5c4c7bb2e65108.jpg\" _src=\"http://yanxuan.nosdn.127.net/980c7827076572b35c5c4c7bb2e65108.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/65f907cc355fe1701f3e2822bf631d55.jpg\" _src=\"http://yanxuan.nosdn.127.net/65f907cc355fe1701f3e2822bf631d55.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d27625f9111c8fd1bf19bc428b87a6d2.jpg\" _src=\"http://yanxuan.nosdn.127.net/d27625f9111c8fd1bf19bc428b87a6d2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/714ea85d22a65a2a7698a20ac9cb3320.jpg\" _src=\"http://yanxuan.nosdn.127.net/714ea85d22a65a2a7698a20ac9cb3320.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a8ee12c729cf07679d4135ac314c1b37.jpg\" _src=\"http://yanxuan.nosdn.127.net/a8ee12c729cf07679d4135ac314c1b37.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0bcb12fdd8d835705ee9ac88b764b441.jpg\" _src=\"http://yanxuan.nosdn.127.net/0bcb12fdd8d835705ee9ac88b764b441.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/79124540860c5a26842803b62b46fc8a.jpg\" _src=\"http://yanxuan.nosdn.127.net/79124540860c5a26842803b62b46fc8a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ca54c7438b6cfe4c139f9a07e9c0b055.jpg\" _src=\"http://yanxuan.nosdn.127.net/ca54c7438b6cfe4c139f9a07e9c0b055.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a4eede58b9d7b516b708bd1bfb18e9df.jpg\" _src=\"http://yanxuan.nosdn.127.net/a4eede58b9d7b516b708bd1bfb18e9df.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/25db36db73d7b38380b3c829a12770d3.jpg\" _src=\"http://yanxuan.nosdn.127.net/25db36db73d7b38380b3c829a12770d3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c86f1f43a2cc6f25c0d162601fa143b9.jpg\" _src=\"http://yanxuan.nosdn.127.net/c86f1f43a2cc6f25c0d162601fa143b9.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '26', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/a4ec154d8a8496dd4aa490c8ec6f8bfd.jpg', 'http://yanxuan.nosdn.127.net/655d718df8107f8e7fd1dc6140e29039.png', '599.00', '225', '1148175', '0.00', '限时购', '', '0.00', '0', '0', '0', '658.90', null, null, null, null);
  779. INSERT INTO `nideshop_goods` VALUES ('1147047', '1008002', '1147047', '简约知性系列居家地毯 蓝粉拼接', '0', '100', '', '三角几何拼接 超细绒感', '<p><img src=\"http://yanxuan.nosdn.127.net/e56e30a2c6cbdeadb1a2b6d00f2e877f.jpg\" _src=\"http://yanxuan.nosdn.127.net/e56e30a2c6cbdeadb1a2b6d00f2e877f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d14496c74886e92b3a3f30692756e77a.jpg\" _src=\"http://yanxuan.nosdn.127.net/d14496c74886e92b3a3f30692756e77a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0a371e340849de0ca0c628021cbc0014.jpg\" _src=\"http://yanxuan.nosdn.127.net/0a371e340849de0ca0c628021cbc0014.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1a5a80c783e941991414cd8ede724312.jpg\" _src=\"http://yanxuan.nosdn.127.net/1a5a80c783e941991414cd8ede724312.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/37a49c90311b2661a24887ff2de448c7.jpg\" _src=\"http://yanxuan.nosdn.127.net/37a49c90311b2661a24887ff2de448c7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e25787020a28bbb6e9f2a220aa2dd442.jpg\" _src=\"http://yanxuan.nosdn.127.net/e25787020a28bbb6e9f2a220aa2dd442.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/52b8beb545c2ae0115522908ac352a39.jpg\" _src=\"http://yanxuan.nosdn.127.net/52b8beb545c2ae0115522908ac352a39.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/afaa8978308f2531ada6aaaf63c56347.jpg\" _src=\"http://yanxuan.nosdn.127.net/afaa8978308f2531ada6aaaf63c56347.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/18789d3aacac9d2de6a6b21cfb7aec53.jpg\" _src=\"http://yanxuan.nosdn.127.net/18789d3aacac9d2de6a6b21cfb7aec53.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/154e9f3504ada7cdadcb906ee01450c7.jpg\" _src=\"http://yanxuan.nosdn.127.net/154e9f3504ada7cdadcb906ee01450c7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3326e16fbfee855392404e970bd5aa4c.jpg\" _src=\"http://yanxuan.nosdn.127.net/3326e16fbfee855392404e970bd5aa4c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7b5b0d22fc526776cef8e756dff60dd1.jpg\" _src=\"http://yanxuan.nosdn.127.net/7b5b0d22fc526776cef8e756dff60dd1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/48dd357aa1abc60c01b3fbf8dacb2694.jpg\" _src=\"http://yanxuan.nosdn.127.net/48dd357aa1abc60c01b3fbf8dacb2694.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/27e574eab03093d302f01e5ceb42d0af.jpg\" _src=\"http://yanxuan.nosdn.127.net/27e574eab03093d302f01e5ceb42d0af.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/30228bd984383c97633eef50ca556406.jpg\" _src=\"http://yanxuan.nosdn.127.net/30228bd984383c97633eef50ca556406.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/baa3cc805dc0afb4257c30466771535a.jpg\" _src=\"http://yanxuan.nosdn.127.net/baa3cc805dc0afb4257c30466771535a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/daa37937c3440919e597e4954e68f646.jpg\" _src=\"http://yanxuan.nosdn.127.net/daa37937c3440919e597e4954e68f646.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/82df87910187f081e2a4d5f5a06df4cb.jpg\" _src=\"http://yanxuan.nosdn.127.net/82df87910187f081e2a4d5f5a06df4cb.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/eaa197c3d63c8479e38f46595df50a5e.jpg\" _src=\"http://yanxuan.nosdn.127.net/eaa197c3d63c8479e38f46595df50a5e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/56cf9f1b8de8627ad0d064843d97cd96.jpg\" _src=\"http://yanxuan.nosdn.127.net/56cf9f1b8de8627ad0d064843d97cd96.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/99ad88418c88c550b183dc12a9280a1d.jpg\" _src=\"http://yanxuan.nosdn.127.net/99ad88418c88c550b183dc12a9280a1d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a84aafb6ddbe25f32bddc4f843ad35d0.jpg\" _src=\"http://yanxuan.nosdn.127.net/a84aafb6ddbe25f32bddc4f843ad35d0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9ce402bfb9d08603259264e9115166b2.jpg\" _src=\"http://yanxuan.nosdn.127.net/9ce402bfb9d08603259264e9115166b2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1a7248d14d630770dfff1b17350219ba.jpg\" _src=\"http://yanxuan.nosdn.127.net/1a7248d14d630770dfff1b17350219ba.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/43113bc52b7eece12f777092d9b04c3f.jpg\" _src=\"http://yanxuan.nosdn.127.net/43113bc52b7eece12f777092d9b04c3f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fbe65886e9405ceb1a43fb3097fd709a.jpg\" _src=\"http://yanxuan.nosdn.127.net/fbe65886e9405ceb1a43fb3097fd709a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e098163e428171418a77c077a8330299.jpg\" _src=\"http://yanxuan.nosdn.127.net/e098163e428171418a77c077a8330299.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cbb9a88692c9621652244844bf0b299d.jpg\" _src=\"http://yanxuan.nosdn.127.net/cbb9a88692c9621652244844bf0b299d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7d8264c945ccb68d432dcaeb86e3e4ec.jpg\" _src=\"http://yanxuan.nosdn.127.net/7d8264c945ccb68d432dcaeb86e3e4ec.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5e0a467456d69bc746e6bd7797f6963b.jpg\" _src=\"http://yanxuan.nosdn.127.net/5e0a467456d69bc746e6bd7797f6963b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a58d0c630b0e2f51fa49aef8687a9e16.jpg\" _src=\"http://yanxuan.nosdn.127.net/a58d0c630b0e2f51fa49aef8687a9e16.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1de7c562962e54da6a63e749634eb008.jpg\" _src=\"http://yanxuan.nosdn.127.net/1de7c562962e54da6a63e749634eb008.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8931ee6e2b4b3ed3454184093b6471ed.jpg\" _src=\"http://yanxuan.nosdn.127.net/8931ee6e2b4b3ed3454184093b6471ed.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3b032ca9815193ec258be3ffa0a25da3.jpg\" _src=\"http://yanxuan.nosdn.127.net/3b032ca9815193ec258be3ffa0a25da3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bfd12f882162e93008c97bff3187f694.jpg\" _src=\"http://yanxuan.nosdn.127.net/bfd12f882162e93008c97bff3187f694.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/79d69e15728310ec458ec665a287fc87.jpg\" _src=\"http://yanxuan.nosdn.127.net/79d69e15728310ec458ec665a287fc87.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e10b0c8d89689483eceea36aa330deb4.jpg\" _src=\"http://yanxuan.nosdn.127.net/e10b0c8d89689483eceea36aa330deb4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/88c5b10b0916839ae7cf6ca1b8c8d83f.jpg\" _src=\"http://yanxuan.nosdn.127.net/88c5b10b0916839ae7cf6ca1b8c8d83f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/17b3ace86142f2b8c7f29ed10d1dba55.jpg\" _src=\"http://yanxuan.nosdn.127.net/17b3ace86142f2b8c7f29ed10d1dba55.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/83f9993c4dda4898693ba3fe9f313c1f.jpg\" _src=\"http://yanxuan.nosdn.127.net/83f9993c4dda4898693ba3fe9f313c1f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9310f4e403eb5db6107bfc280c3e6cf8.jpg\" _src=\"http://yanxuan.nosdn.127.net/9310f4e403eb5db6107bfc280c3e6cf8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7ba895b4d7507984a26344d7c03db550.jpg\" _src=\"http://yanxuan.nosdn.127.net/7ba895b4d7507984a26344d7c03db550.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/34f3faaad28a93f140f3f1b78def4bce.jpg\" _src=\"http://yanxuan.nosdn.127.net/34f3faaad28a93f140f3f1b78def4bce.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/355dc9d6e4a8a1a8561183641ef2890a.jpg\" _src=\"http://yanxuan.nosdn.127.net/355dc9d6e4a8a1a8561183641ef2890a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f2b6a2155e30bf99750756ec4fb99f11.jpg\" _src=\"http://yanxuan.nosdn.127.net/f2b6a2155e30bf99750756ec4fb99f11.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '29', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/6f162e1b98906c2a02c75b40ff9659d3.jpg', 'http://yanxuan.nosdn.127.net/bda805b0a2464b6ec33c18981565e50e.png', '559.00', '199', '1148176', '0.00', '限时购', '', '0.00', '0', '0', '0', '614.90', null, null, null, null);
  780. INSERT INTO `nideshop_goods` VALUES ('1147048', '1008002', '1147048', '简约知性系列居家地毯 蓝灰格', '0', '100', '', '沉稳双拼色 居家温柔伴护', '<p><img src=\"http://yanxuan.nosdn.127.net/037e5909a5bec975c67bf61d193d7b72.jpg\" _src=\"http://yanxuan.nosdn.127.net/037e5909a5bec975c67bf61d193d7b72.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/88486bfa3d7bd68c7780df5cc01e7a7d.jpg\" _src=\"http://yanxuan.nosdn.127.net/88486bfa3d7bd68c7780df5cc01e7a7d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/77c2d1819d99dde7cad8c140048a46aa.jpg\" _src=\"http://yanxuan.nosdn.127.net/77c2d1819d99dde7cad8c140048a46aa.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f49aed0ebcd5c54f3edb8240921e3a46.jpg\" _src=\"http://yanxuan.nosdn.127.net/f49aed0ebcd5c54f3edb8240921e3a46.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/60b923642f98ca62ca3d9a6fe0db8800.jpg\" _src=\"http://yanxuan.nosdn.127.net/60b923642f98ca62ca3d9a6fe0db8800.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/782d6edfc30d1a53711d5f0f6145f8fd.jpg\" _src=\"http://yanxuan.nosdn.127.net/782d6edfc30d1a53711d5f0f6145f8fd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3b10a5a5f29340056cb6b1673420f46c.jpg\" _src=\"http://yanxuan.nosdn.127.net/3b10a5a5f29340056cb6b1673420f46c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e2e721a8f26030ba31f0b290c47ba232.jpg\" _src=\"http://yanxuan.nosdn.127.net/e2e721a8f26030ba31f0b290c47ba232.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/77d18b39a7d8b603b869ca4cb8d7235b.jpg\" _src=\"http://yanxuan.nosdn.127.net/77d18b39a7d8b603b869ca4cb8d7235b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c266d8f75bc074531033430882a93d8a.jpg\" _src=\"http://yanxuan.nosdn.127.net/c266d8f75bc074531033430882a93d8a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ceb7a59b3c56f7ced051cae61d70daf6.jpg\" _src=\"http://yanxuan.nosdn.127.net/ceb7a59b3c56f7ced051cae61d70daf6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0db841700c868c08d627f01c354b013c.jpg\" _src=\"http://yanxuan.nosdn.127.net/0db841700c868c08d627f01c354b013c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/008ea04b11a0f68116e5eb180ca8a6a0.jpg\" _src=\"http://yanxuan.nosdn.127.net/008ea04b11a0f68116e5eb180ca8a6a0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/dfa3513280704216372dade1751b2bc6.jpg\" _src=\"http://yanxuan.nosdn.127.net/dfa3513280704216372dade1751b2bc6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1287987157d7a1767ccaec835bb82b17.jpg\" _src=\"http://yanxuan.nosdn.127.net/1287987157d7a1767ccaec835bb82b17.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/041f4c058fd201716c456d32588e0611.jpg\" _src=\"http://yanxuan.nosdn.127.net/041f4c058fd201716c456d32588e0611.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/22832d570b7eaf8153d5038d9095b990.jpg\" _src=\"http://yanxuan.nosdn.127.net/22832d570b7eaf8153d5038d9095b990.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e5651dedb8b4d5c1d40345f13a4ad622.jpg\" _src=\"http://yanxuan.nosdn.127.net/e5651dedb8b4d5c1d40345f13a4ad622.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0b988f3146c079e488eeb05ba03cae37.jpg\" _src=\"http://yanxuan.nosdn.127.net/0b988f3146c079e488eeb05ba03cae37.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6d53d4374b9a800da1eb215b6215b403.jpg\" _src=\"http://yanxuan.nosdn.127.net/6d53d4374b9a800da1eb215b6215b403.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1abd7dd665582e0eb1c8e4bd6196b6cb.jpg\" _src=\"http://yanxuan.nosdn.127.net/1abd7dd665582e0eb1c8e4bd6196b6cb.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/39561bb5901a7a80bf362bf4b7b96d30.jpg\" _src=\"http://yanxuan.nosdn.127.net/39561bb5901a7a80bf362bf4b7b96d30.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/99eff53c1440f72152c2b264c22244a7.jpg\" _src=\"http://yanxuan.nosdn.127.net/99eff53c1440f72152c2b264c22244a7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8e54bd5c82506db1eed358edcdbd6ef8.jpg\" _src=\"http://yanxuan.nosdn.127.net/8e54bd5c82506db1eed358edcdbd6ef8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/83ca52b41e1907932bc55330fd5a5cad.jpg\" _src=\"http://yanxuan.nosdn.127.net/83ca52b41e1907932bc55330fd5a5cad.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6f58dc91de46bbf93fbf054de64958aa.jpg\" _src=\"http://yanxuan.nosdn.127.net/6f58dc91de46bbf93fbf054de64958aa.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/08d20c7dc0ae462a176ac52a58e7b297.jpg\" _src=\"http://yanxuan.nosdn.127.net/08d20c7dc0ae462a176ac52a58e7b297.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ca1db2649c0a5c67ed319cb212332380.jpg\" _src=\"http://yanxuan.nosdn.127.net/ca1db2649c0a5c67ed319cb212332380.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2feac4d0a9ef0053863b81e37f7fe9fe.jpg\" _src=\"http://yanxuan.nosdn.127.net/2feac4d0a9ef0053863b81e37f7fe9fe.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b9d2fa42d4fec3abd1c151a8dbdab0ef.jpg\" _src=\"http://yanxuan.nosdn.127.net/b9d2fa42d4fec3abd1c151a8dbdab0ef.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e78a8555da079fb963f78fc9149f93cd.jpg\" _src=\"http://yanxuan.nosdn.127.net/e78a8555da079fb963f78fc9149f93cd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b5384e883e1e96640d1adfca1c2e511f.jpg\" _src=\"http://yanxuan.nosdn.127.net/b5384e883e1e96640d1adfca1c2e511f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9c8ec5307f7f0c5a3dcea9916bbbf091.jpg\" _src=\"http://yanxuan.nosdn.127.net/9c8ec5307f7f0c5a3dcea9916bbbf091.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3c59d89c8b46e0e740fd6d8f40071422.jpg\" _src=\"http://yanxuan.nosdn.127.net/3c59d89c8b46e0e740fd6d8f40071422.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4f5640cac8b41175cf3fb620f25ed7ec.jpg\" _src=\"http://yanxuan.nosdn.127.net/4f5640cac8b41175cf3fb620f25ed7ec.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/20ab37f417610381659ad47de48aa42f.jpg\" _src=\"http://yanxuan.nosdn.127.net/20ab37f417610381659ad47de48aa42f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f676f5243a835cb63d76e20423666337.jpg\" _src=\"http://yanxuan.nosdn.127.net/f676f5243a835cb63d76e20423666337.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8b9e1a348d1766c803f9b31221f94553.jpg\" _src=\"http://yanxuan.nosdn.127.net/8b9e1a348d1766c803f9b31221f94553.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a49199ab0ee762df58a2dce4bd26b1e3.jpg\" _src=\"http://yanxuan.nosdn.127.net/a49199ab0ee762df58a2dce4bd26b1e3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4635e2b0daeca9d6dbaf66dc6a74b2f6.jpg\" _src=\"http://yanxuan.nosdn.127.net/4635e2b0daeca9d6dbaf66dc6a74b2f6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2d05ee8ffcca5df74090153c8892cb4d.jpg\" _src=\"http://yanxuan.nosdn.127.net/2d05ee8ffcca5df74090153c8892cb4d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/60c532e803c2d4a75c3da1200797d29c.jpg\" _src=\"http://yanxuan.nosdn.127.net/60c532e803c2d4a75c3da1200797d29c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/75b9feace19e5c3c2e5a9e8dca01a0f2.jpg\" _src=\"http://yanxuan.nosdn.127.net/75b9feace19e5c3c2e5a9e8dca01a0f2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7f5ef8ad3f27f9f6dd1826afe0494c29.jpg\" _src=\"http://yanxuan.nosdn.127.net/7f5ef8ad3f27f9f6dd1826afe0494c29.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/50aab2e77e905e1f0c1a71ec25739207.jpg\" _src=\"http://yanxuan.nosdn.127.net/50aab2e77e905e1f0c1a71ec25739207.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '30', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/3386744ee6833d13a6f6b843cb35f6c6.jpg', 'http://yanxuan.nosdn.127.net/fd7920a2eadd10fa10c0c03959a2abe0.png', '559.00', '183', '1148177', '0.00', '限时购', '', '0.00', '0', '0', '0', '614.90', null, null, null, null);
  781. INSERT INTO `nideshop_goods` VALUES ('1151012', '1008009', '1151012', '简约知性全棉四件套 素雅灰', '0', '100', '', '素净优雅灰 彰显平和知性', '<p><img src=\"http://yanxuan.nosdn.127.net/22b812da7dca97361b40aa96e81cc888.jpg\" _src=\"http://yanxuan.nosdn.127.net/22b812da7dca97361b40aa96e81cc888.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e36aff5bf628fd263767a204463ff886.jpg\" _src=\"http://yanxuan.nosdn.127.net/e36aff5bf628fd263767a204463ff886.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ca854ced3282b74d91557b27aeb1fd6b.jpg\" _src=\"http://yanxuan.nosdn.127.net/ca854ced3282b74d91557b27aeb1fd6b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6c7a0be81b70367577f1e73ae65c5ab0.jpg\" _src=\"http://yanxuan.nosdn.127.net/6c7a0be81b70367577f1e73ae65c5ab0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/841c04848a1539e4410dd8b85716f164.jpg\" _src=\"http://yanxuan.nosdn.127.net/841c04848a1539e4410dd8b85716f164.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a5fda1d7f117edb5f79e2730df10e834.jpg\" _src=\"http://yanxuan.nosdn.127.net/a5fda1d7f117edb5f79e2730df10e834.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5a79348c76f19c3d40eda77fa18c02e1.jpg\" _src=\"http://yanxuan.nosdn.127.net/5a79348c76f19c3d40eda77fa18c02e1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/98325c35ebb3ac8d3f70c6029c11298c.jpg\" _src=\"http://yanxuan.nosdn.127.net/98325c35ebb3ac8d3f70c6029c11298c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b2ce12ff241eaef9cabda8a52399a293.jpg\" _src=\"http://yanxuan.nosdn.127.net/b2ce12ff241eaef9cabda8a52399a293.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4d650259ce6110cb11b0ec0d94ba6e1a.jpg\" _src=\"http://yanxuan.nosdn.127.net/4d650259ce6110cb11b0ec0d94ba6e1a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f3fd996afeb88689c99af8d77ce83ec1.jpg\" _src=\"http://yanxuan.nosdn.127.net/f3fd996afeb88689c99af8d77ce83ec1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/823196c2a231fcc5cf935b25dfe2a79f.jpg\" _src=\"http://yanxuan.nosdn.127.net/823196c2a231fcc5cf935b25dfe2a79f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b38389192126c4c984e1ab6f684774ca.jpg\" _src=\"http://yanxuan.nosdn.127.net/b38389192126c4c984e1ab6f684774ca.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5deb581119cf457296927bab32257057.jpg\" _src=\"http://yanxuan.nosdn.127.net/5deb581119cf457296927bab32257057.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5957305e9660f58bb72484b7e6070aab.jpg\" _src=\"http://yanxuan.nosdn.127.net/5957305e9660f58bb72484b7e6070aab.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9d12bd0bd727852d5ca880f7125ade26.jpg\" _src=\"http://yanxuan.nosdn.127.net/9d12bd0bd727852d5ca880f7125ade26.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b79d56a55903858f6a356fbaee3a2dd7.jpg\" _src=\"http://yanxuan.nosdn.127.net/b79d56a55903858f6a356fbaee3a2dd7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0cd64b23754a7d992166e73b30837ad1.jpg\" _src=\"http://yanxuan.nosdn.127.net/0cd64b23754a7d992166e73b30837ad1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/20d65ca8f1edf8fc0298991aa59913cf.jpg\" _src=\"http://yanxuan.nosdn.127.net/20d65ca8f1edf8fc0298991aa59913cf.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/35524cf9b68887afd1cf30b4938ca0c5.jpg\" _src=\"http://yanxuan.nosdn.127.net/35524cf9b68887afd1cf30b4938ca0c5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1e8885bbe79ffe39e4368f41149cf986.jpg\" _src=\"http://yanxuan.nosdn.127.net/1e8885bbe79ffe39e4368f41149cf986.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0d17a1679797ecd8dabfe5282a0206c2.jpg\" _src=\"http://yanxuan.nosdn.127.net/0d17a1679797ecd8dabfe5282a0206c2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a48049c6029bf32f88923a25b21460ae.jpg\" _src=\"http://yanxuan.nosdn.127.net/a48049c6029bf32f88923a25b21460ae.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3888e5201d789cd286a7dd328fd29371.jpg\" _src=\"http://yanxuan.nosdn.127.net/3888e5201d789cd286a7dd328fd29371.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f2137422baf040a7084d77b18c2fe1c1.jpg\" _src=\"http://yanxuan.nosdn.127.net/f2137422baf040a7084d77b18c2fe1c1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7b5b91b4da409b1431b0eef63eb3038e.jpg\" _src=\"http://yanxuan.nosdn.127.net/7b5b91b4da409b1431b0eef63eb3038e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/39f8df7f3b93b6c9b63f7f418cdcd78f.jpg\" _src=\"http://yanxuan.nosdn.127.net/39f8df7f3b93b6c9b63f7f418cdcd78f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b96828bdccde8d8b56f5d1574f6f4b1a.jpg\" _src=\"http://yanxuan.nosdn.127.net/b96828bdccde8d8b56f5d1574f6f4b1a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e313d74ec293f40fe97b12dc189a03d9.jpg\" _src=\"http://yanxuan.nosdn.127.net/e313d74ec293f40fe97b12dc189a03d9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4f1e5877dac306a9f1dab7ab30ebf5fd.jpg\" _src=\"http://yanxuan.nosdn.127.net/4f1e5877dac306a9f1dab7ab30ebf5fd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/00dc42047dc2374574c26efeeb17110a.jpg\" _src=\"http://yanxuan.nosdn.127.net/00dc42047dc2374574c26efeeb17110a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9412d261ee5576f74d2be2b5acbc9e37.jpg\" _src=\"http://yanxuan.nosdn.127.net/9412d261ee5576f74d2be2b5acbc9e37.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d1115ae6d8b672861dcc61007aa65f57.jpg\" _src=\"http://yanxuan.nosdn.127.net/d1115ae6d8b672861dcc61007aa65f57.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c38bc6b03fc8c0dee0c77c7dccce717e.jpg\" _src=\"http://yanxuan.nosdn.127.net/c38bc6b03fc8c0dee0c77c7dccce717e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d47729e2be12050e5543d25a211c3363.jpg\" _src=\"http://yanxuan.nosdn.127.net/d47729e2be12050e5543d25a211c3363.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4540c62850a2e3c31b5ece17465cc579.jpg\" _src=\"http://yanxuan.nosdn.127.net/4540c62850a2e3c31b5ece17465cc579.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ffea480abb4375dc2948b22f0211a4d8.jpg\" _src=\"http://yanxuan.nosdn.127.net/ffea480abb4375dc2948b22f0211a4d8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/20fdaa641b27197044e1e803e0b9ee06.jpg\" _src=\"http://yanxuan.nosdn.127.net/20fdaa641b27197044e1e803e0b9ee06.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1662355a190f5b850357250b506f88a6.jpg\" _src=\"http://yanxuan.nosdn.127.net/1662355a190f5b850357250b506f88a6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6d1501046b469427df1b9f29aca69934.jpg\" _src=\"http://yanxuan.nosdn.127.net/6d1501046b469427df1b9f29aca69934.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2904850c1eb778078909a971498ec669.jpg\" _src=\"http://yanxuan.nosdn.127.net/2904850c1eb778078909a971498ec669.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/37eb43cb6429ec8c0677f64108dda627.jpg\" _src=\"http://yanxuan.nosdn.127.net/37eb43cb6429ec8c0677f64108dda627.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7103fcee303c117423a8b1e3fe56c7d9.jpg\" _src=\"http://yanxuan.nosdn.127.net/7103fcee303c117423a8b1e3fe56c7d9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d4c06ec49c9483be17adf3e61c22b97a.jpg\" _src=\"http://yanxuan.nosdn.127.net/d4c06ec49c9483be17adf3e61c22b97a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9b77eaeee7b84d199b2a0fa4b5935085.jpg\" _src=\"http://yanxuan.nosdn.127.net/9b77eaeee7b84d199b2a0fa4b5935085.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b30fa4346ed575a84bf51d108a9aebb5.jpg\" _src=\"http://yanxuan.nosdn.127.net/b30fa4346ed575a84bf51d108a9aebb5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/822226fa01bdd7831aa9609803318655.jpg\" _src=\"http://yanxuan.nosdn.127.net/822226fa01bdd7831aa9609803318655.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5a3009a8210515f4fd9ee6bfbafd1b14.jpg\" _src=\"http://yanxuan.nosdn.127.net/5a3009a8210515f4fd9ee6bfbafd1b14.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d99646284321dc0417652de95e6a1504.jpg\" _src=\"http://yanxuan.nosdn.127.net/d99646284321dc0417652de95e6a1504.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c01f65f02fcaf36ac3103663e260c7b4.jpg\" _src=\"http://yanxuan.nosdn.127.net/c01f65f02fcaf36ac3103663e260c7b4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9727a9eaf5f9a174a8c6d8406912a121.jpg\" _src=\"http://yanxuan.nosdn.127.net/9727a9eaf5f9a174a8c6d8406912a121.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8222afa1b88bfa0b5d414ce4cb0bd82c.jpg\" _src=\"http://yanxuan.nosdn.127.net/8222afa1b88bfa0b5d414ce4cb0bd82c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f52b8bdb0de1489f5f51c9ee10d18b85.jpg\" _src=\"http://yanxuan.nosdn.127.net/f52b8bdb0de1489f5f51c9ee10d18b85.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3a74ade912297cfd24d259d9dc920e50.jpg\" _src=\"http://yanxuan.nosdn.127.net/3a74ade912297cfd24d259d9dc920e50.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '10', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/995961eebe7620022a0aef2f0bbb75fd.jpg', 'http://yanxuan.nosdn.127.net/cb65635dbcef42b68ba21433f4948f5a.png', '359.00', '74', '1155045', '0.00', '限时购', '', '0.00', '0', '0', '0', '394.90', null, null, null, null);
  782. INSERT INTO `nideshop_goods` VALUES ('1151013', '1008009', '1151013', '简约知性全棉四件套 胭脂粉', '0', '100', '', '清新灵动粉 谱写浪漫意趣', '<p><img src=\"http://yanxuan.nosdn.127.net/d6544642d064b59d0a16093064306075.jpg\" _src=\"http://yanxuan.nosdn.127.net/d6544642d064b59d0a16093064306075.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/10b209c033243d0122a0d08654516fe1.jpg\" _src=\"http://yanxuan.nosdn.127.net/10b209c033243d0122a0d08654516fe1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ecdba59b976d4026358d020d313a7356.jpg\" _src=\"http://yanxuan.nosdn.127.net/ecdba59b976d4026358d020d313a7356.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1c02e90582caaccd9be1a5c88f7dc2ed.jpg\" _src=\"http://yanxuan.nosdn.127.net/1c02e90582caaccd9be1a5c88f7dc2ed.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b260372c315957b52d49ddd72a079eea.jpg\" _src=\"http://yanxuan.nosdn.127.net/b260372c315957b52d49ddd72a079eea.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7460e729f98978f5fd958ce043358a98.jpg\" _src=\"http://yanxuan.nosdn.127.net/7460e729f98978f5fd958ce043358a98.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7b83c3a2cf875b261801bd8a3c5808d8.jpg\" _src=\"http://yanxuan.nosdn.127.net/7b83c3a2cf875b261801bd8a3c5808d8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a21baed71cff280b2f4c9ebb71568488.jpg\" _src=\"http://yanxuan.nosdn.127.net/a21baed71cff280b2f4c9ebb71568488.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ffe7204613d5538e8ce828432ec09913.jpg\" _src=\"http://yanxuan.nosdn.127.net/ffe7204613d5538e8ce828432ec09913.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d98f40594db8ce1878ab29481f74bffe.jpg\" _src=\"http://yanxuan.nosdn.127.net/d98f40594db8ce1878ab29481f74bffe.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/eaf57e27e9d16233cb58160449a6bd50.jpg\" _src=\"http://yanxuan.nosdn.127.net/eaf57e27e9d16233cb58160449a6bd50.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ac2cb0c00a823d630e557cf1ef5d02a6.jpg\" _src=\"http://yanxuan.nosdn.127.net/ac2cb0c00a823d630e557cf1ef5d02a6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f90aa292b1a60e94760b72b793014194.jpg\" _src=\"http://yanxuan.nosdn.127.net/f90aa292b1a60e94760b72b793014194.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ca69118402a541371f3c4a23017e04df.jpg\" _src=\"http://yanxuan.nosdn.127.net/ca69118402a541371f3c4a23017e04df.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/826b111040d1e63249a6d229ace4f9c1.jpg\" _src=\"http://yanxuan.nosdn.127.net/826b111040d1e63249a6d229ace4f9c1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d7a8f883f698b4c906ff613007c6a17a.jpg\" _src=\"http://yanxuan.nosdn.127.net/d7a8f883f698b4c906ff613007c6a17a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3ec9478b87667e61ed70b4043bb43aee.jpg\" _src=\"http://yanxuan.nosdn.127.net/3ec9478b87667e61ed70b4043bb43aee.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/27cb5f494e1d19750dbd28c13e5f7b65.jpg\" _src=\"http://yanxuan.nosdn.127.net/27cb5f494e1d19750dbd28c13e5f7b65.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/61866f57b583beca8f083210f469291c.jpg\" _src=\"http://yanxuan.nosdn.127.net/61866f57b583beca8f083210f469291c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8c994af6144abebfa535ad11628545bc.jpg\" _src=\"http://yanxuan.nosdn.127.net/8c994af6144abebfa535ad11628545bc.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0be78c4a1f1c76ea3210cd3812866cd9.jpg\" _src=\"http://yanxuan.nosdn.127.net/0be78c4a1f1c76ea3210cd3812866cd9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/496ede67a61486227a0c4631cbe5112e.jpg\" _src=\"http://yanxuan.nosdn.127.net/496ede67a61486227a0c4631cbe5112e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bd9d7e9ded941eb0ed41ab258fb4ef02.jpg\" _src=\"http://yanxuan.nosdn.127.net/bd9d7e9ded941eb0ed41ab258fb4ef02.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3af2b547d590850a7725cb89312e11bd.jpg\" _src=\"http://yanxuan.nosdn.127.net/3af2b547d590850a7725cb89312e11bd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9a0d33a9ef3151b6548461db4e095d79.jpg\" _src=\"http://yanxuan.nosdn.127.net/9a0d33a9ef3151b6548461db4e095d79.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1e9ab7ed3f52e74791086d0f2c88c1aa.jpg\" _src=\"http://yanxuan.nosdn.127.net/1e9ab7ed3f52e74791086d0f2c88c1aa.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/72245ad84f53f6f138c80005d1f7ac86.jpg\" _src=\"http://yanxuan.nosdn.127.net/72245ad84f53f6f138c80005d1f7ac86.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/693f9cc8bbf412d33ef4f87687fe09b0.jpg\" _src=\"http://yanxuan.nosdn.127.net/693f9cc8bbf412d33ef4f87687fe09b0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/efc34f26f385192d59eb023399890ffd.jpg\" _src=\"http://yanxuan.nosdn.127.net/efc34f26f385192d59eb023399890ffd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ed62f6274a033d6153efc88991214484.jpg\" _src=\"http://yanxuan.nosdn.127.net/ed62f6274a033d6153efc88991214484.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/34d59d584a4a8c6fcd156f07c1f2e4ba.jpg\" _src=\"http://yanxuan.nosdn.127.net/34d59d584a4a8c6fcd156f07c1f2e4ba.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cf9df6cc1744a3ddf23dce32a8fe758c.jpg\" _src=\"http://yanxuan.nosdn.127.net/cf9df6cc1744a3ddf23dce32a8fe758c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/411038ebae02b7e899713bb600bffb92.jpg\" _src=\"http://yanxuan.nosdn.127.net/411038ebae02b7e899713bb600bffb92.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bcb52ad859856f0c80b9bdec4aa29f2d.jpg\" _src=\"http://yanxuan.nosdn.127.net/bcb52ad859856f0c80b9bdec4aa29f2d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ade70fae1a6894c7f8897478e41da3a0.jpg\" _src=\"http://yanxuan.nosdn.127.net/ade70fae1a6894c7f8897478e41da3a0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e4d8c628742f041d6aacb736d6e122fb.jpg\" _src=\"http://yanxuan.nosdn.127.net/e4d8c628742f041d6aacb736d6e122fb.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/890532252573ffb8ab6ee7005c88812b.jpg\" _src=\"http://yanxuan.nosdn.127.net/890532252573ffb8ab6ee7005c88812b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/107806b823f0126ffe486ed2332849d1.jpg\" _src=\"http://yanxuan.nosdn.127.net/107806b823f0126ffe486ed2332849d1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/884f0400541572d836200188634cc12c.jpg\" _src=\"http://yanxuan.nosdn.127.net/884f0400541572d836200188634cc12c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/117ee3ba12f133b0d14412a60571c4d0.jpg\" _src=\"http://yanxuan.nosdn.127.net/117ee3ba12f133b0d14412a60571c4d0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0780db4cb5ba5d4ce464289c9c51e551.jpg\" _src=\"http://yanxuan.nosdn.127.net/0780db4cb5ba5d4ce464289c9c51e551.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5f0b4d36bbfbb00ad37a2d5760a0a275.jpg\" _src=\"http://yanxuan.nosdn.127.net/5f0b4d36bbfbb00ad37a2d5760a0a275.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bd8adc0d356a780e3948625dd93b3404.jpg\" _src=\"http://yanxuan.nosdn.127.net/bd8adc0d356a780e3948625dd93b3404.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3c6c92bc3c08f692a86a1028777cd70f.jpg\" _src=\"http://yanxuan.nosdn.127.net/3c6c92bc3c08f692a86a1028777cd70f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a1ed97000ddaa2c94e22e4770a67c2c8.jpg\" _src=\"http://yanxuan.nosdn.127.net/a1ed97000ddaa2c94e22e4770a67c2c8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/89f27d26c9c3b6473cf4da736a2b48ad.jpg\" _src=\"http://yanxuan.nosdn.127.net/89f27d26c9c3b6473cf4da736a2b48ad.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c3cf686c6b1e4c7aa75f91b71659feb4.jpg\" _src=\"http://yanxuan.nosdn.127.net/c3cf686c6b1e4c7aa75f91b71659feb4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bea4230158f1eb3cbf59a9c6df2e451b.jpg\" _src=\"http://yanxuan.nosdn.127.net/bea4230158f1eb3cbf59a9c6df2e451b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d9218090d23fc8c74713de9ecb17b76b.jpg\" _src=\"http://yanxuan.nosdn.127.net/d9218090d23fc8c74713de9ecb17b76b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c93d59df72c0fb9a38f8fd9a7a159e1b.jpg\" _src=\"http://yanxuan.nosdn.127.net/c93d59df72c0fb9a38f8fd9a7a159e1b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d24584d02691832f0c9160e55ad6bd3d.jpg\" _src=\"http://yanxuan.nosdn.127.net/d24584d02691832f0c9160e55ad6bd3d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7d73a590cf19bcadf073cf89cd9f21fd.jpg\" _src=\"http://yanxuan.nosdn.127.net/7d73a590cf19bcadf073cf89cd9f21fd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6e06cc07d846fbd6a314e6845a8a722c.jpg\" _src=\"http://yanxuan.nosdn.127.net/6e06cc07d846fbd6a314e6845a8a722c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b88852a8de665870e4fd59aad0b2280c.jpg\" _src=\"http://yanxuan.nosdn.127.net/b88852a8de665870e4fd59aad0b2280c.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '9', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/f9298d5a9b5c59e88bdff531835c3dd1.jpg', 'http://yanxuan.nosdn.127.net/73a8692048f58f15e823b636d7c3bb74.png', '359.00', '174', '1155047', '0.00', '限时购', '', '0.00', '0', '0', '0', '394.90', null, null, null, null);
  783. INSERT INTO `nideshop_goods` VALUES ('1152004', '1032000', '1152004', '魔兽世界 蛋盾包 双肩包', '0', '100', '', '伊利丹掉落,挤地铁神器', '', '1', '2017-08-30 11:40:11', '3', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/4aee427a3837db29aa116900a46b1a6a.png', 'http://yanxuan.nosdn.127.net/8c93cef435d888bd79833777df1cd0c2.png', '399.00', '164', '1156012', '0.00', '限时购', '', '0.00', '0', '0', '0', '438.90', null, null, null, null);
  784. INSERT INTO `nideshop_goods` VALUES ('1152008', '1032000', '1152008', '魔兽世界 部落 护腕 一只', '0', '100', '', '吸汗、舒适、弹性、防护、耐用', '', '1', '2017-08-30 11:40:11', '7', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/46bcddbc57e70bf5f36bdff9c9195c65.png', 'http://yanxuan.nosdn.127.net/203cb83d93606865e3ddde57b69b9e9a.png', '29.00', '341', '1156016', '0.00', '限时购', '', '0.00', '0', '0', '1', '31.90', null, null, null, null);
  785. INSERT INTO `nideshop_goods` VALUES ('1152009', '1032000', '1152009', '魔兽世界 联盟 护腕 一只', '0', '100', '', '吸汗、舒适、弹性、防护、耐用', '', '1', '2017-08-30 11:40:11', '8', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/6df415dbe9b30aa8ae45301a96c18a59.png', 'http://yanxuan.nosdn.127.net/ae6d41117717387b82dcaf1dfce0cd97.png', '29.00', '19', '1156017', '0.00', '限时购', '', '0.00', '0', '0', '1', '31.90', null, null, null, null);
  786. INSERT INTO `nideshop_goods` VALUES ('1152031', '1032000', '1152031', '魔兽世界-伊利丹颈枕眼罩套装', '0', '100', '', '差旅好伴侣', '', '1', '2017-08-30 11:40:11', '4', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/06c4dae19c2a229ca1819a7b8e8efddd.png', 'http://yanxuan.nosdn.127.net/fd6e78a397bd9e9804116a36f0270b0a.png', '99.00', '351', '1156059', '0.00', '限时购', '', '0.00', '0', '0', '1', '108.90', null, null, null, null);
  787. INSERT INTO `nideshop_goods` VALUES ('1152095', '1032000', '1152095', '魔兽世界 联盟·暴风城 堡垒收纳盒', '0', '100', '', '桌面整理神器', '', '1', '2017-08-30 11:40:11', '6', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/cc04443ee4303040e9ad6360d38f972b.png', 'http://yanxuan.nosdn.127.net/c86b49f635fa141decebabbd0966a6ef.png', '499.00', '84', '1156133', '0.00', '限时购', '', '0.00', '0', '0', '0', '548.90', null, null, null, null);
  788. INSERT INTO `nideshop_goods` VALUES ('1152097', '1032000', '1152097', '魔兽世界 雷霆之怒逐风者的祝福之剑 雨伞', '0', '100', '', '炫酷装备,可以背的雨伞', '', '1', '2017-08-30 11:40:11', '1', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/76d2630a86b17770a1908235212ad505.png', 'http://yanxuan.nosdn.127.net/532836444ae5eaec40b5810ca4f9b1e6.png', '399.00', '170', '1156135', '0.00', '限时购', '', '0.00', '0', '0', '0', '438.90', null, null, null, null);
  789. INSERT INTO `nideshop_goods` VALUES ('1152100', '1032000', '1152100', '魔兽世界 部落·奥格瑞玛 堡垒收纳盒', '0', '100', '', '桌面整理神器', '', '1', '2017-08-30 11:40:11', '5', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/e7c1af4e8e5d5940b991dc9bb70e9ec5.png', 'http://yanxuan.nosdn.127.net/a667c4fbbd9c499c0733539d7e986617.png', '499.00', '90', '1156138', '0.00', '限时购', '', '0.00', '0', '0', '0', '548.90', null, null, null, null);
  790. INSERT INTO `nideshop_goods` VALUES ('1152101', '1012001', '1152101', '魔兽世界 部落 奥格瑞玛 拉杆箱 可登机', '0', '100', '', '18寸,可携带登机', '', '1', '2017-08-30 11:40:11', '9', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/864c62b7ba8a128a79dc9d69fe425528.png', 'http://yanxuan.nosdn.127.net/c1c62211a17b71a634fa0c705d11fb42.png', '888.00', '64', '1156139', '0.00', '限时购', '', '0.00', '0', '0', '1', '976.80', null, null, null, null);
  791. INSERT INTO `nideshop_goods` VALUES ('1152161', '1008009', '1152161', '竹语丝麻印花四件套', '0', '100', '', '3重透气,清爽柔滑', '<p><img src=\"http://yanxuan.nosdn.127.net/cf116e8989e4b81e0d50c5f319bc106f.jpg\" _src=\"http://yanxuan.nosdn.127.net/cf116e8989e4b81e0d50c5f319bc106f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/93fbbfff577742915b3d0d7642656bf7.jpg\" _src=\"http://yanxuan.nosdn.127.net/93fbbfff577742915b3d0d7642656bf7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c40d9809465f1c1941021f564052d60f.jpg\" _src=\"http://yanxuan.nosdn.127.net/c40d9809465f1c1941021f564052d60f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/933ae73c978ed874b2e5cd7ce909f962.jpg\" _src=\"http://yanxuan.nosdn.127.net/933ae73c978ed874b2e5cd7ce909f962.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cb256d888a121c2b71804c7da607b97b.jpg\" _src=\"http://yanxuan.nosdn.127.net/cb256d888a121c2b71804c7da607b97b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4be4e62c7b44f25c1a618447aa5dbacf.jpg\" _src=\"http://yanxuan.nosdn.127.net/4be4e62c7b44f25c1a618447aa5dbacf.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b6fa8de210f4f309a407e61915cf6a37.jpg\" _src=\"http://yanxuan.nosdn.127.net/b6fa8de210f4f309a407e61915cf6a37.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fe8b40624ae2c42c07a5ee9c2d75c8d1.jpg\" _src=\"http://yanxuan.nosdn.127.net/fe8b40624ae2c42c07a5ee9c2d75c8d1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/46864e53b8d9fc4dee333e237d4a1574.jpg\" _src=\"http://yanxuan.nosdn.127.net/46864e53b8d9fc4dee333e237d4a1574.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/22b672c95a602f962ac3bf80bfe78c15.jpg\" _src=\"http://yanxuan.nosdn.127.net/22b672c95a602f962ac3bf80bfe78c15.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8dff21e77d809012d2542e144027dce1.jpg\" _src=\"http://yanxuan.nosdn.127.net/8dff21e77d809012d2542e144027dce1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c52320c2b0c0a345eebce48a306feb77.jpg\" _src=\"http://yanxuan.nosdn.127.net/c52320c2b0c0a345eebce48a306feb77.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3804f056b176a9d6155b59d031ca6132.jpg\" _src=\"http://yanxuan.nosdn.127.net/3804f056b176a9d6155b59d031ca6132.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c25dc6d4a97dd48eb79099ccb1cc9e0e.jpg\" _src=\"http://yanxuan.nosdn.127.net/c25dc6d4a97dd48eb79099ccb1cc9e0e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ca65e2860c3cf07fa8eab69da1b52660.jpg\" _src=\"http://yanxuan.nosdn.127.net/ca65e2860c3cf07fa8eab69da1b52660.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/63bf368c5085f50fc615d9c4a59862ab.jpg\" _src=\"http://yanxuan.nosdn.127.net/63bf368c5085f50fc615d9c4a59862ab.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4204c63b17ec1fac9bcb91e10ccd1ad0.jpg\" _src=\"http://yanxuan.nosdn.127.net/4204c63b17ec1fac9bcb91e10ccd1ad0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7ab56f66b90797f611eda19493579770.jpg\" _src=\"http://yanxuan.nosdn.127.net/7ab56f66b90797f611eda19493579770.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8af577bad4fc49a0c19746018daa3471.jpg\" _src=\"http://yanxuan.nosdn.127.net/8af577bad4fc49a0c19746018daa3471.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0ba321a17808e3bda5e80737d06d2ac0.jpg\" _src=\"http://yanxuan.nosdn.127.net/0ba321a17808e3bda5e80737d06d2ac0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/40370cc37a778e51496be60aca486414.jpg\" _src=\"http://yanxuan.nosdn.127.net/40370cc37a778e51496be60aca486414.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0dab164aa1ca90730899481e0c753195.jpg\" _src=\"http://yanxuan.nosdn.127.net/0dab164aa1ca90730899481e0c753195.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/329548b43585798b6f1bd9b7cd93a0c0.jpg\" _src=\"http://yanxuan.nosdn.127.net/329548b43585798b6f1bd9b7cd93a0c0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/017f407ea546506b58221c477a2a8682.jpg\" _src=\"http://yanxuan.nosdn.127.net/017f407ea546506b58221c477a2a8682.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/80ce79453e0eb915b3dfe9b7d638b410.jpg\" _src=\"http://yanxuan.nosdn.127.net/80ce79453e0eb915b3dfe9b7d638b410.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d7cec1d667293cb179e67cd965d208df.jpg\" _src=\"http://yanxuan.nosdn.127.net/d7cec1d667293cb179e67cd965d208df.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cb29ca1498bd8ff9e36bcb99593f2485.jpg\" _src=\"http://yanxuan.nosdn.127.net/cb29ca1498bd8ff9e36bcb99593f2485.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ca0d32927d292e14e2992c63627e1181.jpg\" _src=\"http://yanxuan.nosdn.127.net/ca0d32927d292e14e2992c63627e1181.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d56d749cbf18eb121f3a4040a3ef334f.jpg\" _src=\"http://yanxuan.nosdn.127.net/d56d749cbf18eb121f3a4040a3ef334f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/61f7e94e631a446f6a683d9256304fd6.jpg\" _src=\"http://yanxuan.nosdn.127.net/61f7e94e631a446f6a683d9256304fd6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e1f0cae229da25b32a5ddf9a6472379c.jpg\" _src=\"http://yanxuan.nosdn.127.net/e1f0cae229da25b32a5ddf9a6472379c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7a8c42109a307ee65b6de0f66d9e4e3f.jpg\" _src=\"http://yanxuan.nosdn.127.net/7a8c42109a307ee65b6de0f66d9e4e3f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3427a0dbb683d88e86b4b1864c767b84.jpg\" _src=\"http://yanxuan.nosdn.127.net/3427a0dbb683d88e86b4b1864c767b84.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4bd66cfacfda8467e491bcbb44e22906.jpg\" _src=\"http://yanxuan.nosdn.127.net/4bd66cfacfda8467e491bcbb44e22906.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/979f9dcf65ce2b91f7b801f39db9b534.jpg\" _src=\"http://yanxuan.nosdn.127.net/979f9dcf65ce2b91f7b801f39db9b534.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/8043490f0853723691db7ba64cff86c6.jpg\" _src=\"http://yanxuan.nosdn.127.net/8043490f0853723691db7ba64cff86c6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/30ef0f46fcc6a175836332e76f758cc5.jpg\" _src=\"http://yanxuan.nosdn.127.net/30ef0f46fcc6a175836332e76f758cc5.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ffd0c62f0c485cc78de05a6b22a7156e.jpg\" _src=\"http://yanxuan.nosdn.127.net/ffd0c62f0c485cc78de05a6b22a7156e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/a422ce5a7a147175adbda6d2549cef6b.jpg\" _src=\"http://yanxuan.nosdn.127.net/a422ce5a7a147175adbda6d2549cef6b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/882556a9ac3b06b518b61c166a8d7f1e.jpg\" _src=\"http://yanxuan.nosdn.127.net/882556a9ac3b06b518b61c166a8d7f1e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/06aab3c72d4372656a9f1b2e513cb7fd.jpg\" _src=\"http://yanxuan.nosdn.127.net/06aab3c72d4372656a9f1b2e513cb7fd.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/685e4a2fa3481ea948bef5681e52215a.jpg\" _src=\"http://yanxuan.nosdn.127.net/685e4a2fa3481ea948bef5681e52215a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e3674d2936668967d8b1f97288e66de9.jpg\" _src=\"http://yanxuan.nosdn.127.net/e3674d2936668967d8b1f97288e66de9.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/eb1f199f0270941fe64e82340042ead1.jpg\" _src=\"http://yanxuan.nosdn.127.net/eb1f199f0270941fe64e82340042ead1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f82cde4430eb4d1bdfb07db04af0e734.jpg\" _src=\"http://yanxuan.nosdn.127.net/f82cde4430eb4d1bdfb07db04af0e734.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f39325963c794851d1f12d6383ecdeab.jpg\" _src=\"http://yanxuan.nosdn.127.net/f39325963c794851d1f12d6383ecdeab.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7baee43f0c04e3429f9dc30699624c9a.jpg\" _src=\"http://yanxuan.nosdn.127.net/7baee43f0c04e3429f9dc30699624c9a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2543913123e578347f09cd3f389c05f4.jpg\" _src=\"http://yanxuan.nosdn.127.net/2543913123e578347f09cd3f389c05f4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c1c4bccb5cd4ce28be27f3dcdf0055f2.jpg\" _src=\"http://yanxuan.nosdn.127.net/c1c4bccb5cd4ce28be27f3dcdf0055f2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/757da5724cac81a0ec5cafe3271930fc.jpg\" _src=\"http://yanxuan.nosdn.127.net/757da5724cac81a0ec5cafe3271930fc.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/442b6ff5b416611ee61f989c4dc4d3a1.jpg\" _src=\"http://yanxuan.nosdn.127.net/442b6ff5b416611ee61f989c4dc4d3a1.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/082e748775f644b758d3de6526e97844.jpg\" _src=\"http://yanxuan.nosdn.127.net/082e748775f644b758d3de6526e97844.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/56fb598a9440324c73745b08715cca3b.jpg\" _src=\"http://yanxuan.nosdn.127.net/56fb598a9440324c73745b08715cca3b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/598fd4ff9a9c1915c9a0f1c3534316d4.jpg\" _src=\"http://yanxuan.nosdn.127.net/598fd4ff9a9c1915c9a0f1c3534316d4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3d847d0a56e444b0e1cb36c26922b884.jpg\" _src=\"http://yanxuan.nosdn.127.net/3d847d0a56e444b0e1cb36c26922b884.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/682c7151cad3e694497adfc12cb1e1da.jpg\" _src=\"http://yanxuan.nosdn.127.net/682c7151cad3e694497adfc12cb1e1da.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1ed414f70dcf49f91ceb1e2cbc2f5542.jpg\" _src=\"http://yanxuan.nosdn.127.net/1ed414f70dcf49f91ceb1e2cbc2f5542.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3609fa8d28d06e40d1886eb1ac0704cc.jpg\" _src=\"http://yanxuan.nosdn.127.net/3609fa8d28d06e40d1886eb1ac0704cc.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/725aa2568d0f7143f2fbfa101e84447f.jpg\" _src=\"http://yanxuan.nosdn.127.net/725aa2568d0f7143f2fbfa101e84447f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5384db578319addff7edb303be9b1fed.jpg\" _src=\"http://yanxuan.nosdn.127.net/5384db578319addff7edb303be9b1fed.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ca32f04d1d59020beff80d16ce372825.jpg\" _src=\"http://yanxuan.nosdn.127.net/ca32f04d1d59020beff80d16ce372825.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3e3782425ceddc455c2ffe74039f00d6.jpg\" _src=\"http://yanxuan.nosdn.127.net/3e3782425ceddc455c2ffe74039f00d6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ac06284b83b3b21a5dffe7614847c6cb.jpg\" _src=\"http://yanxuan.nosdn.127.net/ac06284b83b3b21a5dffe7614847c6cb.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f5b98c459b62f8fbbf7be27bb9521d16.jpg\" _src=\"http://yanxuan.nosdn.127.net/f5b98c459b62f8fbbf7be27bb9521d16.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1f5f77de250035f7975183dc67b8f09a.jpg\" _src=\"http://yanxuan.nosdn.127.net/1f5f77de250035f7975183dc67b8f09a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/086452250325756475c68cb7e93c9d7b.jpg\" _src=\"http://yanxuan.nosdn.127.net/086452250325756475c68cb7e93c9d7b.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '6', '0', '0', '0.00', '0.00', '1', '件', 'http://yanxuan.nosdn.127.net/de273bec722b4d7a0050b56ebc680afd.jpg', 'http://yanxuan.nosdn.127.net/977401e75113f7c8334c4fb5b4bf6215.png', '459.00', '310', '1156329', '0.00', '限时购', '', '0.00', '0', '0', '0', '504.90', null, null, null, null);
  792. INSERT INTO `nideshop_goods` VALUES ('1153006', '1032000', '1153006', '魔兽世界 纪念版 麻将套装', '0', '100', '', '十年经典,纪念麻将套装', '', '1', '2017-08-30 11:40:11', '2', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/4f4010a4146054df0aa4e01afb4274e5.png', 'http://yanxuan.nosdn.127.net/2743921b945a6c71fcdc3c5282a03413.png', '1288.00', '213', '1158031', '0.00', '限时购', '', '0.00', '0', '0', '1', '1416.80', null, null, null, null);
  793. INSERT INTO `nideshop_goods` VALUES ('1155000', '1008009', '1155000', '清新趣粉全棉四件套 条纹绿格', '0', '100', '', '清新趣粉全棉四件套 青粉拼接', '<p><img src=\"http://yanxuan.nosdn.127.net/162f14bce2afba3a484ce8fb5da1e58b.jpg\" _src=\"http://yanxuan.nosdn.127.net/162f14bce2afba3a484ce8fb5da1e58b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1f7942650759087591c5983b8833b0b0.jpg\" _src=\"http://yanxuan.nosdn.127.net/1f7942650759087591c5983b8833b0b0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/7b2c61359c3323f426a0214d79f52e5d.jpg\" _src=\"http://yanxuan.nosdn.127.net/7b2c61359c3323f426a0214d79f52e5d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4ef5a035b31b1dea51c0f9ad89df9af3.jpg\" _src=\"http://yanxuan.nosdn.127.net/4ef5a035b31b1dea51c0f9ad89df9af3.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e78cd4ddd9bd39ab9a488fef9b5f7b3a.jpg\" _src=\"http://yanxuan.nosdn.127.net/e78cd4ddd9bd39ab9a488fef9b5f7b3a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6cce2f34025ab487af8707ee4cf61373.jpg\" _src=\"http://yanxuan.nosdn.127.net/6cce2f34025ab487af8707ee4cf61373.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/248de06b79ddf1bc6e28a00ffbbb97d0.jpg\" _src=\"http://yanxuan.nosdn.127.net/248de06b79ddf1bc6e28a00ffbbb97d0.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/c2306432efd11b36979518c91f3dac76.jpg\" _src=\"http://yanxuan.nosdn.127.net/c2306432efd11b36979518c91f3dac76.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d62be6560ff53b1fd6b8f83664965758.jpg\" _src=\"http://yanxuan.nosdn.127.net/d62be6560ff53b1fd6b8f83664965758.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/879123cb7355ce5aa2df371bf8821754.jpg\" _src=\"http://yanxuan.nosdn.127.net/879123cb7355ce5aa2df371bf8821754.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/24bd066e91fe31da4c21fb6f13d0b944.jpg\" _src=\"http://yanxuan.nosdn.127.net/24bd066e91fe31da4c21fb6f13d0b944.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9da18ea054a561a17c36e41d693bfdae.jpg\" _src=\"http://yanxuan.nosdn.127.net/9da18ea054a561a17c36e41d693bfdae.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/71873676e788a2d2aa5184f46cc0f30e.jpg\" _src=\"http://yanxuan.nosdn.127.net/71873676e788a2d2aa5184f46cc0f30e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/b3f9463598c55d2c55428b2eef8bf556.jpg\" _src=\"http://yanxuan.nosdn.127.net/b3f9463598c55d2c55428b2eef8bf556.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d1321c2db83e7485c67265427fa986bc.jpg\" _src=\"http://yanxuan.nosdn.127.net/d1321c2db83e7485c67265427fa986bc.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4cc8bc6028a45eddab15e21ebc7caef7.jpg\" _src=\"http://yanxuan.nosdn.127.net/4cc8bc6028a45eddab15e21ebc7caef7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/27453a8037edc367424e6432a3e5a59c.jpg\" _src=\"http://yanxuan.nosdn.127.net/27453a8037edc367424e6432a3e5a59c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/528ef8f963f9733d8cfd0f50556ae110.jpg\" _src=\"http://yanxuan.nosdn.127.net/528ef8f963f9733d8cfd0f50556ae110.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/cb3c92fed21740cc6b5c5dc16fc60508.jpg\" _src=\"http://yanxuan.nosdn.127.net/cb3c92fed21740cc6b5c5dc16fc60508.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0dee0fd961eaffd7aa2bdaf62d2ab126.jpg\" _src=\"http://yanxuan.nosdn.127.net/0dee0fd961eaffd7aa2bdaf62d2ab126.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/661e1cb14a801d03f28626196c00d14f.jpg\" _src=\"http://yanxuan.nosdn.127.net/661e1cb14a801d03f28626196c00d14f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/2b6a2f6a7f3a45039b0b7c572c2eeed8.jpg\" _src=\"http://yanxuan.nosdn.127.net/2b6a2f6a7f3a45039b0b7c572c2eeed8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e46db149caf4b825f4a90627e0db6a79.jpg\" _src=\"http://yanxuan.nosdn.127.net/e46db149caf4b825f4a90627e0db6a79.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/98673c4ff33fc8c55bf88945dbef364c.jpg\" _src=\"http://yanxuan.nosdn.127.net/98673c4ff33fc8c55bf88945dbef364c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/9a2324cb4ff8f4332c51343efeaafe8e.jpg\" _src=\"http://yanxuan.nosdn.127.net/9a2324cb4ff8f4332c51343efeaafe8e.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/eb0d21207bf5b26592511ef80e48eb91.jpg\" _src=\"http://yanxuan.nosdn.127.net/eb0d21207bf5b26592511ef80e48eb91.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/be386763462ada086662387e40431c85.jpg\" _src=\"http://yanxuan.nosdn.127.net/be386763462ada086662387e40431c85.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/71724c37bc98358af22d25a4edebe12d.jpg\" _src=\"http://yanxuan.nosdn.127.net/71724c37bc98358af22d25a4edebe12d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3226eb33802d18a6baa093b1ccc3f412.jpg\" _src=\"http://yanxuan.nosdn.127.net/3226eb33802d18a6baa093b1ccc3f412.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/32370f76a781924f6e0252abdea047f6.jpg\" _src=\"http://yanxuan.nosdn.127.net/32370f76a781924f6e0252abdea047f6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/22c82828b81e11053849f3c9f826f453.jpg\" _src=\"http://yanxuan.nosdn.127.net/22c82828b81e11053849f3c9f826f453.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/e8c42123ac126046542176d511a29139.jpg\" _src=\"http://yanxuan.nosdn.127.net/e8c42123ac126046542176d511a29139.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/d981ab4821ca98c89e71d2a2a9b23330.jpg\" _src=\"http://yanxuan.nosdn.127.net/d981ab4821ca98c89e71d2a2a9b23330.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/995a72c9c8bb895f5445a473daccc218.jpg\" _src=\"http://yanxuan.nosdn.127.net/995a72c9c8bb895f5445a473daccc218.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/251151c89c54c9c272288ed461533a8c.jpg\" _src=\"http://yanxuan.nosdn.127.net/251151c89c54c9c272288ed461533a8c.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/bba4921b09f7c9eb4bae76259d7d82e2.jpg\" _src=\"http://yanxuan.nosdn.127.net/bba4921b09f7c9eb4bae76259d7d82e2.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/0fd159ef30bfd4cb6e4c37141ad96666.jpg\" _src=\"http://yanxuan.nosdn.127.net/0fd159ef30bfd4cb6e4c37141ad96666.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4e31861a89e1e10be81f5290e31e6b85.jpg\" _src=\"http://yanxuan.nosdn.127.net/4e31861a89e1e10be81f5290e31e6b85.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3404e5c9b9e9e3855a52831a1d4acad7.jpg\" _src=\"http://yanxuan.nosdn.127.net/3404e5c9b9e9e3855a52831a1d4acad7.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/5d15b51fc382847b8de4a4b6fad3646b.jpg\" _src=\"http://yanxuan.nosdn.127.net/5d15b51fc382847b8de4a4b6fad3646b.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/6fd940b500b07c5157a7db17d858c56f.jpg\" _src=\"http://yanxuan.nosdn.127.net/6fd940b500b07c5157a7db17d858c56f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4cf02bfda7429cb78da05f8b521e5195.jpg\" _src=\"http://yanxuan.nosdn.127.net/4cf02bfda7429cb78da05f8b521e5195.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/74ed4ea956e43e6b1f37b1dd31c6feee.jpg\" _src=\"http://yanxuan.nosdn.127.net/74ed4ea956e43e6b1f37b1dd31c6feee.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/77d288d7c8e815e014f6ceac652adf83.jpg\" _src=\"http://yanxuan.nosdn.127.net/77d288d7c8e815e014f6ceac652adf83.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/18478afad61f4fad519a4fe598c38bb8.jpg\" _src=\"http://yanxuan.nosdn.127.net/18478afad61f4fad519a4fe598c38bb8.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/f527072aeaed7abb974551d7ad93faf4.jpg\" _src=\"http://yanxuan.nosdn.127.net/f527072aeaed7abb974551d7ad93faf4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/276d97cc862f718bfb7cd8a5970d2b9a.jpg\" _src=\"http://yanxuan.nosdn.127.net/276d97cc862f718bfb7cd8a5970d2b9a.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/1765a6390fd9116320230cea1b2e2570.jpg\" _src=\"http://yanxuan.nosdn.127.net/1765a6390fd9116320230cea1b2e2570.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/ee6eff91b9e9ee9c8a70cf9ad59cd274.jpg\" _src=\"http://yanxuan.nosdn.127.net/ee6eff91b9e9ee9c8a70cf9ad59cd274.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4db4a90e1e83e2e77b4b17deb6b618c4.jpg\" _src=\"http://yanxuan.nosdn.127.net/4db4a90e1e83e2e77b4b17deb6b618c4.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/3e58b2129b6ca7f8f845d88ccb1ecda6.jpg\" _src=\"http://yanxuan.nosdn.127.net/3e58b2129b6ca7f8f845d88ccb1ecda6.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/fe901e2f92e213b444f4950a6adb320f.jpg\" _src=\"http://yanxuan.nosdn.127.net/fe901e2f92e213b444f4950a6adb320f.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/11c552fba5a1ba0bf6189da2d243db7d.jpg\" _src=\"http://yanxuan.nosdn.127.net/11c552fba5a1ba0bf6189da2d243db7d.jpg\" style=\"\"/></p><p><img src=\"http://yanxuan.nosdn.127.net/4c78602cdbba3992711257325de376ed.jpg\" _src=\"http://yanxuan.nosdn.127.net/4c78602cdbba3992711257325de376ed.jpg\" style=\"\"/></p><p><br/></p>', '1', '2017-08-30 11:40:11', '12', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/7335f6e807e8507994710bca848de2d8.jpg', 'http://yanxuan.nosdn.127.net/d7d6ef1f1865991077384761b4521dce.png', '399.00', '395', '1162001', '0.00', '限时购', '', '0.00', '0', '0', '0', '438.90', null, null, null, null);
  794. INSERT INTO `nideshop_goods` VALUES ('1155015', '1008015', '1155015', '绿豆糕 80克(4枚入)', '0', '100', '', '细腻松软,入口绵柔', '', '1', '2017-08-30 11:40:11', '6', '0', '0', '0.00', '0.00', '1', '件', 'http://yanxuan.nosdn.127.net/67d52acd78bf685bb5982bcac47ca01a.jpg', 'http://yanxuan.nosdn.127.net/66b9f1638c0517d179262f14ed1345f9.png', '12.90', '7353', '1162102', '0.00', '限时购', '', '0.00', '0', '0', '0', '14.19', null, null, null, null);
  795. INSERT INTO `nideshop_goods` VALUES ('1156006', '1012001', '1156006', '20寸 全铝镁合金登机箱', '0', '100', '', '100%铝镁合金,超薄坚固', '', '1', '2017-08-30 11:40:11', '3', '0', '0', '0.00', '0.00', '0', '件', 'http://yanxuan.nosdn.127.net/d1ab558679fb96508c0d3991c4e8b5d9.jpg', 'http://yanxuan.nosdn.127.net/ea5b0a572b35089446fba491db7fbbc3.png', '699.00', '741', '1165011', '0.00', '限时购', '', '0.00', '0', '0', '0', '768.90', null, null, null, null);
  796. INSERT INTO `nideshop_goods` VALUES ('1166008', '1005007', '1166008', 'Carat钻石 不粘厨具组合', '0', '100', '', '钻石涂层,不粘锅锅具组', '', '1', '2017-08-30 11:40:11', '5', '0', '0', '0.00', '0.00', '1', '只', 'http://yanxuan.nosdn.127.net/056baf67bb8cc9a4f2544ac5954ab67c.jpg', 'http://yanxuan.nosdn.127.net/615a16e899e01efb780c488df4233f48.png', '459.00', '889', '1178050', '0.00', '限时购', '', '0.00', '0', '0', '0', '504.90', null, '1', null, null);
  797. INSERT INTO `nideshop_goods` VALUES ('1181000', '1008008', '1181000', '母亲节礼物-舒适安睡组合', '1001020', '100', '', '安心舒适是最好的礼物', '<p><img src=\"http://yanxuan.nosdn.127.net/3ddfe10db43f7df33ba82ae7570ada80.jpg\" style=\"\" class=\"fr-fin\"></p><p><img src=\"http://yanxuan.nosdn.127.net/7682b7930b4776ce032f509c24a74a1e.jpg\" style=\"\" class=\"fr-fin\"></p><p><img src=\"http://yanxuan.nosdn.127.net/e0bb6a50e27681925c5bb26bceb67ef4.jpg\" style=\"\" class=\"fr-fin\"></p><p><img src=\"http://yanxuan.nosdn.127.net/ba63b244c74ce06fda82bb6a29cc0f71.jpg\" style=\"\" class=\"fr-fin\"></p><p><img src=\"http://yanxuan.nosdn.127.net/3c7808c3a4769bad5af4974782f08654.jpg\" style=\"\" class=\"fr-fin\"></p><p><img src=\"http://yanxuan.nosdn.127.net/71798aaac23a91fdab4d77e1b980a4df.jpg\" style=\"\" class=\"fr-fin\"></p><p><img src=\"http://yanxuan.nosdn.127.net/c88cbb2dd2310b732571f49050fe4059.jpg\" style=\"\" class=\"fr-fin\"></p><p><img src=\"http://yanxuan.nosdn.127.net/5dfdcd654e0f3076f7c05dd9c19c15ea.jpg\" style=\"\" class=\"fr-fin\"></p><p><img src=\"http://yanxuan.nosdn.127.net/bd55d6ef7af69422d8d76af10ee70156.jpg\" style=\"\" class=\"fr-fin\"></p><p><img src=\"http://yanxuan.nosdn.127.net/bae571b22954c521b35e446d652edc1d.jpg\" style=\"\" class=\"fr-fin\"></p><p><img src=\"http://yanxuan.nosdn.127.net/e709c4d9e46d602a4d2125e47110f6ae.jpg\" style=\"\" class=\"fr-fin\"></p><p><img src=\"http://yanxuan.nosdn.127.net/83e41915035c418db177af8b1eca385c.jpg\" style=\"\" class=\"fr-fin\"></p><p><img src=\"http://yanxuan.nosdn.127.net/f42c561e6935fe3e0e0873653da78670.jpg\" style=\"\" class=\"fr-fin\"></p><p><img src=\"http://yanxuan.nosdn.127.net/8317726fbae80b98764dc4c6233a913e.jpg\" style=\"\" class=\"fr-fin\"></p><p><img src=\"http://yanxuan.nosdn.127.net/ba904b7c948b8015db2171435325270f.jpg\" style=\"\" class=\"fr-fin\"></p><p><img src=\"http://yanxuan.nosdn.127.net/4969c73d0d8f29bffb69529c96ca4889.jpg\" style=\"\" class=\"fr-fin\"></p><p><img src=\"http://yanxuan.nosdn.127.net/d80b9b8c5c31031d1cd5357e48748632.jpg\" style=\"\" class=\"fr-fin\"></p><p><img src=\"http://yanxuan.nosdn.127.net/3fe79bdae40662a7b1feed3179d3dd1f.jpg\" style=\"\" class=\"fr-fin\"></p><p><img src=\"http://yanxuan.nosdn.127.net/79eef059963b12479f65e782d1dca128.jpg\" style=\"\" class=\"fr-fin\"></p><p><img src=\"http://yanxuan.nosdn.127.net/e5a8f64f4297ccc01b41df98b0f252c8.jpg\" style=\"\" class=\"fr-fin\"></p><p><img src=\"http://yanxuan.nosdn.127.net/a940b9e9525c4861407e4c3b07b02977.jpg\" style=\"\" class=\"fr-fin\"></p><p><img src=\"http://yanxuan.nosdn.127.net/224b8b81cbe12e4ad060a50f1e26601a.jpg\" style=\"\" class=\"fr-fin\"></p><p><img src=\"http://yanxuan.nosdn.127.net/85e151647452fad718effb7b1adc18e2.jpg\" style=\"\" class=\"fr-fin\"></p><p><img src=\"http://yanxuan.nosdn.127.net/d47444ff3bb9dc0aa4ab1f9b84d83768.jpg\" style=\"\" class=\"fr-fin\"></p><p><img src=\"http://yanxuan.nosdn.127.net/136262743f0c849cc0c55c8e7963dd7e.jpg\" style=\"\" class=\"fr-fin\"></p><p><img src=\"http://yanxuan.nosdn.127.net/331a97cbaff5b25a3b08ed7cdfe29df9.jpg\" style=\"\" class=\"fr-fin\"></p><p><img src=\"http://yanxuan.nosdn.127.net/89b450aa0a8afe1db566dcad926f1fe8.jpg\" style=\"\" class=\"fr-fin\"></p><p><img src=\"http://yanxuan.nosdn.127.net/c1cf94f13b7280a97e751cebe573fa78.jpg\" style=\"\" class=\"fr-fin\"></p><p><img src=\"http://yanxuan.nosdn.127.net/1822c23def83b77e7607c24237eeec74.jpg\" style=\"\" class=\"fr-fin\"></p><p><img src=\"http://yanxuan.nosdn.127.net/2af234312b3914d6d0bc316f92134614.jpg\" style=\"\" class=\"fr-fin\"></p><p><img src=\"http://yanxuan.nosdn.127.net/c4f8ab2b3813275d954a8bedcf902d26.jpg\" style=\"\" class=\"fr-fin\"></p><p><img src=\"http://yanxuan.nosdn.127.net/42f18842ff0c92ed849c4401ae47bb61.jpg\" style=\"\" class=\"fr-fin\"></p><p><img src=\"http://yanxuan.nosdn.127.net/a8ea64a35799e50ab31ecb65345fe8f4.jpg\" style=\"\" class=\"fr-fin\"></p><p><img src=\"http://yanxuan.nosdn.127.net/18759fa90cd153bdd744280807c3c155.jpg\" style=\"\" class=\"fr-fin\"></p><p><img src=\"http://yanxuan.nosdn.127.net/431f00d068a8e747959deb3b7bdd495a.jpg\" style=\"\" class=\"fr-fin\"></p><p><img src=\"http://yanxuan.nosdn.127.net/5bd3b44f1f4c627bfa39f7809e866ec6.jpg\" style=\"\" class=\"fr-fin\"></p><p><img src=\"http://yanxuan.nosdn.127.net/7fc36778fe2f6129b9c26e8298c5be7e.jpg\" style=\"\" class=\"fr-fin\"></p><p><img src=\"http://yanxuan.nosdn.127.net/c568432e3d5ab6786cd9dcae8008891b.jpg\" style=\"\" class=\"fr-fin\"></p><p><img src=\"http://yanxuan.nosdn.127.net/ec82ff5aecafa48807117da68cce2ce9.jpg\" style=\"\" class=\"fr-fin\"></p><p><img src=\"http://yanxuan.nosdn.127.net/b8eccbed570da595e6f8a71ed4abc42c.jpg\" style=\"\" class=\"fr-fin\"></p><p><img src=\"http://yanxuan.nosdn.127.net/9cae1fed6ecefcd61435fe6e2c700fd6.jpg\" style=\"\" class=\"fr-fin\"></p><p><img src=\"http://yanxuan.nosdn.127.net/e306a418f82777399f5e88b93cca22db.jpg\" style=\"\" class=\"fr-fin\"></p><p><img src=\"http://yanxuan.nosdn.127.net/a66d717084e23864ce079f936557709f.jpg\" style=\"\" class=\"fr-fin\"></p><p><img src=\"http://yanxuan.nosdn.127.net/6ae06c6505cdbf87a0210fe3b8727d5f.jpg\" style=\"\" class=\"fr-fin\"></p><p><img src=\"http://yanxuan.nosdn.127.net/58ac2086725b0ba2fe800195f274a0b4.jpg\" style=\"\" class=\"fr-fin\"></p><p><img src=\"http://yanxuan.nosdn.127.net/5e2e9d9eb099647fbe041ec6645ac034.jpg\" style=\"\" class=\"fr-fin\"></p><p><img src=\"http://yanxuan.nosdn.127.net/8154357c0fab82bd4e67cda9aaa128c0.jpg\" style=\"\" class=\"fr-fin\"></p><p><img src=\"http://yanxuan.nosdn.127.net/4325763b738ec3183ecf0d82b2b28e32.jpg\" style=\"\" class=\"fr-fin\"></p><p><img src=\"http://yanxuan.nosdn.127.net/06d8ea9d10035a00f26c5c52cc601ca7.jpg\" style=\"\" class=\"fr-fin\"></p><p><img src=\"http://yanxuan.nosdn.127.net/499f30b9e69b5dddf3db36f105756111.jpg\" style=\"\" class=\"fr-fin\"></p><p><img src=\"http://yanxuan.nosdn.127.net/ed7e1733d54e711a560edb3a76f1a60c.jpg\" style=\"\" class=\"fr-fin\"></p><p><img src=\"http://yanxuan.nosdn.127.net/b6474347eebdb917d2e827fd526dd01c.jpg\" style=\"\" class=\"fr-fin\"></p><p><img src=\"http://yanxuan.nosdn.127.net/b2c0691f9204c5ebc94b4ff678919ca7.jpg\" style=\"\" class=\"fr-fin\"></p><p><img src=\"http://yanxuan.nosdn.127.net/b4811e702a6884a9251d7cc9e3b06b6f.jpg\" style=\"\" class=\"fr-fin\"></p><p><img src=\"http://yanxuan.nosdn.127.net/d518783c054695acf329e81d597fdec3.jpg\" style=\"\" class=\"fr-fin\"></p><p><img src=\"http://yanxuan.nosdn.127.net/835ce09e785cca635c176008975053a1.jpg\" style=\"\" class=\"fr-fin\"></p><p><img src=\"http://yanxuan.nosdn.127.net/769af780de81a302c0a3b03ed8e6c528.jpg\" style=\"\" class=\"fr-fin\"></p><p><img src=\"http://yanxuan.nosdn.127.net/da34f99daf9141f0fe56a766461b8485.jpg\" style=\"\" class=\"fr-fin\"></p><p><img src=\"http://yanxuan.nosdn.127.net/d7c9cd8722a2f9a78e158ce02ec5d4f2.jpg\" style=\"\" class=\"fr-fin\"></p><p><img src=\"http://yanxuan.nosdn.127.net/09ea18953884b15227819e326103462b.jpg\" style=\"\" class=\"fr-fin\"></p><p><img src=\"http://yanxuan.nosdn.127.net/5ef728213983842edf1aec27b2c1f5b6.jpg\" style=\"\" class=\"fr-fin\"></p><p><img src=\"http://yanxuan.nosdn.127.net/95409f2a884dcfeaabfe5e61fcf9ec37.jpg\" style=\"\" class=\"fr-fin\"></p><p><img src=\"http://yanxuan.nosdn.127.net/6807836dc2a940ba56ea10c7a63b14c9.jpg\" style=\"\" class=\"fr-fin\"></p><p><img src=\"http://yanxuan.nosdn.127.net/e1d976d06853e7a0e6c9cc4ab484ac8a.jpg\" style=\"\" class=\"fr-fin\"></p><p><img src=\"http://yanxuan.nosdn.127.net/47f5673dec5005092f6d897d6335966c.jpg\" style=\"\" class=\"fr-fin\"></p><p><img src=\"http://yanxuan.nosdn.127.net/1b0109abd0e6a0d13fa2423a96c1167e.jpg\" style=\"\" class=\"fr-fin\"></p><p><img src=\"http://yanxuan.nosdn.127.net/916111a8f94cc0bd39375b3dcac14e35.jpg\" style=\"\" class=\"fr-fin\"></p><p><img src=\"http://yanxuan.nosdn.127.net/c1360df3d6b703c5df9b2f47a2a3d12e.jpg\" style=\"\" class=\"fr-fin\"></p><p><img src=\"http://yanxuan.nosdn.127.net/1d5a31eb93ef873a165993bd99f29df1.jpg\" style=\"\" class=\"fr-fin\"></p><p><img src=\"http://yanxuan.nosdn.127.net/997a48948b89dd7261ed5a59ba884f45.jpg\" style=\"\" class=\"fr-fin\"></p><p><img src=\"http://yanxuan.nosdn.127.net/eb96d9689735c9f4019ebf76da43b2b2.jpg\" style=\"\" class=\"fr-fin\"></p><p><img src=\"http://yanxuan.nosdn.127.net/a92cf2172e6cafe080e4511205568d79.jpg\" style=\"\" class=\"fr-fin\"></p><p><img src=\"http://yanxuan.nosdn.127.net/c9e94570428f197292bb3f43609963f5.jpg\" style=\"\" class=\"fr-fin\"></p><p><img src=\"http://yanxuan.nosdn.127.net/37145f06cce747311692ad7f276645db.jpg\" style=\"\" class=\"fr-fin\"></p><p><img src=\"http://yanxuan.nosdn.127.net/c9a698b71ed911364fc6f243006c241c.jpg\" style=\"\" class=\"fr-fin\"></p><p><img src=\"http://yanxuan.nosdn.127.net/e89db969711efaa441c43d6b90498a0c.jpg\" style=\"\" class=\"fr-fin\"></p><p><img src=\"http://yanxuan.nosdn.127.net/3803bb1a18229562f18943512b1d3524.jpg\" style=\"\" class=\"fr-fin\"></p><p><img src=\"http://yanxuan.nosdn.127.net/235cbb5be905ac2b87e7e8f7c8d90144.jpg\" style=\"\" class=\"fr-fin\"></p><p><img src=\"http://yanxuan.nosdn.127.net/3e38435b3fdbae4ee80b83995592901e.jpg\" style=\"\" class=\"fr-fin\"></p><p><img src=\"http://yanxuan.nosdn.127.net/8ceb7cd3231585da60a74dd2c1aa9015.jpg\" style=\"\" class=\"fr-fin\"></p><p><img src=\"http://yanxuan.nosdn.127.net/e151e225c2e30aab7ccf086094381577.jpg\" style=\"\" class=\"fr-fin\"></p><p><img src=\"http://yanxuan.nosdn.127.net/363c19306953daf10968f4aa86617997.jpg\" style=\"\" class=\"fr-fin\"></p><p><img src=\"http://yanxuan.nosdn.127.net/4237a392cf2e69b110ad4ecf35e44059.jpg\" style=\"\" class=\"fr-fin\"></p><p><img src=\"http://yanxuan.nosdn.127.net/da8ab35ada2dfe55006db01efa96e51a.jpg\" style=\"\" class=\"fr-fin\"></p><p><img src=\"http://yanxuan.nosdn.127.net/aa1d4fd00b7879db3f1051dc6d16aa87.jpg\" style=\"\" class=\"fr-fin\"></p><p><img src=\"http://yanxuan.nosdn.127.net/302a8f2d997ff22bedcd837672cdafc2.jpg\" style=\"\" class=\"fr-fin\"></p><p><img src=\"http://yanxuan.nosdn.127.net/a39ff68c00522aef0472402958a334d2.jpg\" style=\"\" class=\"fr-fin\"></p><p><img src=\"http://yanxuan.nosdn.127.net/86ccd0eb677c8b552398869d11a8917e.jpg\" style=\"\" class=\"fr-fin\"></p><p><img src=\"http://yanxuan.nosdn.127.net/a6d0ede352da947060d912d903646a5d.jpg\" style=\"\" class=\"fr-fin\"></p><p><img src=\"http://yanxuan.nosdn.127.net/e6a118bf95bdb61891409d25f193e9c4.jpg\" style=\"\" class=\"fr-fin\"></p><p><img src=\"http://yanxuan.nosdn.127.net/c214066e9bf65d60bcebd691b5b1cbc1.jpg\" style=\"\" class=\"fr-fin\"></p><p><img src=\"http://yanxuan.nosdn.127.net/c301559ba3ee280bcbf2fc4269bfa9ca.jpg\" style=\"\" class=\"fr-fin\"></p><p><img src=\"http://yanxuan.nosdn.127.net/573748f5c12ecb4515ba00a7b6e981dc.jpg\" style=\"\" class=\"fr-fin\"></p><p><img src=\"http://yanxuan.nosdn.127.net/27bcc8bf512a7e6f994a9683b3deea82.jpg\" style=\"\" class=\"fr-fin\"></p><p><img src=\"http://yanxuan.nosdn.127.net/e22a4507fd1e4b5ef859035e857ae419.jpg\" style=\"\" class=\"fr-fin\"></p><p><img src=\"http://yanxuan.nosdn.127.net/27b07b4ca709c33ad71b368f87781307.jpg\" style=\"\" class=\"fr-fin\"></p><p><img src=\"http://yanxuan.nosdn.127.net/ef31eb48bcb133728bffda7e1239b592.jpg\" style=\"\" class=\"fr-fin\"></p><p><img src=\"http://yanxuan.nosdn.127.net/5f49aaaca59c0733ec92f100d01bc0af.jpg\" style=\"\" class=\"fr-fin\"></p><p><img src=\"http://yanxuan.nosdn.127.net/818889261deb75044e1018ec53485d85.jpg\" style=\"\" class=\"fr-fin\"></p><p><img src=\"http://yanxuan.nosdn.127.net/200369f023243e2faeb18a2a0a352ef1.jpg\" style=\"\" class=\"fr-fin\"></p><p><br></p>', '1', '2017-08-30 11:40:11', '1', '0', '1036000', '0.00', '0.00', '1', '', 'https://mp123.oss-cn-shenzhen.aliyuncs.com/upload/20170908/092741972ad4b4.jpg', 'http://yanxuan.nosdn.127.net/1f67b1970ee20fd572b7202da0ff705d.png', '2598.00', '1533', '1194000', '0.00', '限时购', '', '0.00', '0', '0', '0', '2857.80', null, null, null, null);
  798. -- ----------------------------
  799. -- Table structure for `nideshop_goods_attribute`
  800. -- ----------------------------
  801. DROP TABLE IF EXISTS `nideshop_goods_attribute`;
  802. CREATE TABLE `nideshop_goods_attribute` (
  803. `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '主键',
  804. `goods_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '商品Id',
  805. `attribute_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '属性Id',
  806. `value` text NOT NULL COMMENT '属性值',
  807. PRIMARY KEY (`id`),
  808. KEY `goods_id` (`goods_id`),
  809. KEY `attr_id` (`attribute_id`)
  810. ) ENGINE=InnoDB AUTO_INCREMENT=872 DEFAULT CHARSET=utf8;
  811. -- ----------------------------
  812. -- Records of nideshop_goods_attribute
  813. -- ----------------------------
  814. INSERT INTO `nideshop_goods_attribute` VALUES ('1', '1006002', '1', '100%棉');
  815. INSERT INTO `nideshop_goods_attribute` VALUES ('2', '1006002', '2', '1.5米+1.8米通用');
  816. INSERT INTO `nideshop_goods_attribute` VALUES ('3', '1006002', '3', '4件');
  817. INSERT INTO `nideshop_goods_attribute` VALUES ('4', '1006002', '4', '刺绣');
  818. INSERT INTO `nideshop_goods_attribute` VALUES ('5', '1006002', '5', 'GB18401-2010 B类');
  819. INSERT INTO `nideshop_goods_attribute` VALUES ('6', '1006002', '6', '中国');
  820. INSERT INTO `nideshop_goods_attribute` VALUES ('7', '1006002', '7', '纺织品经历印染、织造等多道环节,产品初次拿到可能有些许味道,清水漂洗、晾干后味道即可散去。\n严选面料全部经过国标检测认证,选用环保活性染料,请放心使用。');
  821. INSERT INTO `nideshop_goods_attribute` VALUES ('8', '1006007', '8', '2000g/2300g');
  822. INSERT INTO `nideshop_goods_attribute` VALUES ('9', '1006007', '9', '200*230cm/220*240cm');
  823. INSERT INTO `nideshop_goods_attribute` VALUES ('10', '1006007', '10', '100%棉');
  824. INSERT INTO `nideshop_goods_attribute` VALUES ('11', '1006007', '11', '100%羊毛');
  825. INSERT INTO `nideshop_goods_attribute` VALUES ('12', '1006007', '7', '1.经过碳化、清洗、梳理的天然羊毛被带会有少量味道,通风晾晒2-3天即可散去 2.为减少羊毛漂白等化学用品的处理时间,部分羊毛可能未完全脱色,轻微泛黄属羊毛原色,为正常现象。');
  826. INSERT INTO `nideshop_goods_attribute` VALUES ('13', '1006010', '8', '2000g/2300g');
  827. INSERT INTO `nideshop_goods_attribute` VALUES ('14', '1006010', '9', '200*230cm/220*240cm');
  828. INSERT INTO `nideshop_goods_attribute` VALUES ('15', '1006010', '10', '100%棉');
  829. INSERT INTO `nideshop_goods_attribute` VALUES ('16', '1006010', '11', '超细羊毛');
  830. INSERT INTO `nideshop_goods_attribute` VALUES ('17', '1006010', '7', '1.经过碳化、清洗、梳理的天然羊毛被带会有少量味道,通风晾晒2-3天即可散去 2.为减少羊毛漂白等化学用品的处理时间,部分羊毛可能未完全脱色,轻微泛黄属羊毛原色,为正常现象。');
  831. INSERT INTO `nideshop_goods_attribute` VALUES ('18', '1006013', '9', '200*230cm/ 220*240cm');
  832. INSERT INTO `nideshop_goods_attribute` VALUES ('19', '1006013', '10', '100%棉');
  833. INSERT INTO `nideshop_goods_attribute` VALUES ('20', '1006013', '11', '100%双宫茧桑蚕丝');
  834. INSERT INTO `nideshop_goods_attribute` VALUES ('21', '1006013', '8', '0.5KG/1KG');
  835. INSERT INTO `nideshop_goods_attribute` VALUES ('22', '1006013', '7', '天然桑蚕丝具有正常蛋白味道,通风晾晒2-3天即可散去');
  836. INSERT INTO `nideshop_goods_attribute` VALUES ('23', '1006014', '9', '200*230cm/ 220*240cm');
  837. INSERT INTO `nideshop_goods_attribute` VALUES ('24', '1006014', '10', '100%棉');
  838. INSERT INTO `nideshop_goods_attribute` VALUES ('25', '1006014', '11', '100%双宫茧桑蚕丝');
  839. INSERT INTO `nideshop_goods_attribute` VALUES ('26', '1006014', '8', '0.5+1.5KG/1+2KG');
  840. INSERT INTO `nideshop_goods_attribute` VALUES ('27', '1006014', '7', '天然桑蚕丝具有正常蛋白味道,通风晾晒2-3天即可散去');
  841. INSERT INTO `nideshop_goods_attribute` VALUES ('28', '1009009', '9', '200*230cm/220*240cm');
  842. INSERT INTO `nideshop_goods_attribute` VALUES ('29', '1009009', '12', '白鹅绒');
  843. INSERT INTO `nideshop_goods_attribute` VALUES ('30', '1009009', '13', '60%棉 40%聚酯纤维');
  844. INSERT INTO `nideshop_goods_attribute` VALUES ('31', '1009009', '8', '1500g/1700g');
  845. INSERT INTO `nideshop_goods_attribute` VALUES ('32', '1009009', '14', '95%');
  846. INSERT INTO `nideshop_goods_attribute` VALUES ('33', '1009009', '4', '双层立衬');
  847. INSERT INTO `nideshop_goods_attribute` VALUES ('34', '1009012', '9', '48*74cm');
  848. INSERT INTO `nideshop_goods_attribute` VALUES ('35', '1009012', '13', '100%棉');
  849. INSERT INTO `nideshop_goods_attribute` VALUES ('36', '1009012', '12', '100%聚酯纤维');
  850. INSERT INTO `nideshop_goods_attribute` VALUES ('37', '1009012', '15', '1000g');
  851. INSERT INTO `nideshop_goods_attribute` VALUES ('38', '1009012', '6', '中国');
  852. INSERT INTO `nideshop_goods_attribute` VALUES ('39', '1009012', '7', '枕芯类商品受身高、体型、睡眠习惯不同,产生不同的使用体验,建议多试睡几款枕头,挑选最适合的进行使用。');
  853. INSERT INTO `nideshop_goods_attribute` VALUES ('40', '1009013', '9', '48*74cm');
  854. INSERT INTO `nideshop_goods_attribute` VALUES ('41', '1009013', '13', '70%高模量聚酯+30%聚酰胺');
  855. INSERT INTO `nideshop_goods_attribute` VALUES ('42', '1009013', '12', '100%聚酯纤维');
  856. INSERT INTO `nideshop_goods_attribute` VALUES ('43', '1009013', '15', '1000g');
  857. INSERT INTO `nideshop_goods_attribute` VALUES ('44', '1009013', '6', '中国');
  858. INSERT INTO `nideshop_goods_attribute` VALUES ('45', '1009013', '7', '枕芯类商品受身高、体型、睡眠习惯不同,产生不同的使用体验,建议多试睡几款枕头,挑选最适合的进行使用。');
  859. INSERT INTO `nideshop_goods_attribute` VALUES ('46', '1009024', '16', '65*65*43cm');
  860. INSERT INTO `nideshop_goods_attribute` VALUES ('47', '1009024', '17', '外套帆布:100%棉;外套弹力布:锦纶80%氨纶20%');
  861. INSERT INTO `nideshop_goods_attribute` VALUES ('48', '1009024', '18', '内胆面料:100%锦纶;填充物:聚苯乙烯(发泡粒子)');
  862. INSERT INTO `nideshop_goods_attribute` VALUES ('49', '1009024', '19', '本品为人工填充粒子,重量难免会有误差,敬请谅解。同时产品在运输过程中受挤压,也可能会造成凹陷。储存时请避免重物挤压以引起泡沫粒子塌陷。');
  863. INSERT INTO `nideshop_goods_attribute` VALUES ('50', '1010000', '1', '100%羊毛');
  864. INSERT INTO `nideshop_goods_attribute` VALUES ('51', '1010000', '9', '200*150cm');
  865. INSERT INTO `nideshop_goods_attribute` VALUES ('52', '1010000', '7', '1.羊毛毯采取传统机织工艺,纯天然织造的,直接接触皮肤会有轻微扎人。\n2.初次使用时会有少量浮毛,建议干洗处理。\n3.商品为纯羊毛织造而成,若有少量气味请通风2-3天去除。');
  866. INSERT INTO `nideshop_goods_attribute` VALUES ('53', '1010001', '1', '100%羊毛');
  867. INSERT INTO `nideshop_goods_attribute` VALUES ('54', '1010001', '16', '200*150cm');
  868. INSERT INTO `nideshop_goods_attribute` VALUES ('55', '1010001', '7', '1.羊毛毯采取传统机织工艺,纯天然织造的,直接接触皮肤会有轻微扎人。\n2.初次使用时会有少量浮毛,建议干洗处理。\n3.商品为纯羊毛织造而成,若有少量气味请通风2-3天去除。');
  869. INSERT INTO `nideshop_goods_attribute` VALUES ('56', '1011004', '13', '100% 棉');
  870. INSERT INTO `nideshop_goods_attribute` VALUES ('57', '1011004', '20', 'GB18401-2010 B类');
  871. INSERT INTO `nideshop_goods_attribute` VALUES ('58', '1011004', '16', '150×200cm');
  872. INSERT INTO `nideshop_goods_attribute` VALUES ('59', '1011004', '21', '一等品');
  873. INSERT INTO `nideshop_goods_attribute` VALUES ('60', '1011004', '6', '中国');
  874. INSERT INTO `nideshop_goods_attribute` VALUES ('61', '1011004', '15', '1800g');
  875. INSERT INTO `nideshop_goods_attribute` VALUES ('62', '1011004', '7', '1.深色纯棉毛巾被在织造染色过程中,巾面更易产生微细的纤维浮绒,使用前建议用清水漂洗1-2次,即可去掉产品上的浮绒。\n2.在洗涤时一定要注意不要与衣服混在一起机洗,强力的搓洗会引起掉毛或勾线现象。\n3.纺织品经历印染、织造等多道环节,产品初次拿到可能有些许味道,清水漂洗、晾干后味道即可散去。严选面料全部经过国标检测认证,选用环保活性染料,请放心使用。');
  876. INSERT INTO `nideshop_goods_attribute` VALUES ('63', '1015007', '9', '45cm*45cm');
  877. INSERT INTO `nideshop_goods_attribute` VALUES ('64', '1015007', '22', '100%全棉');
  878. INSERT INTO `nideshop_goods_attribute` VALUES ('65', '1015007', '23', '100%全棉');
  879. INSERT INTO `nideshop_goods_attribute` VALUES ('66', '1015007', '11', '100%聚酯纤维');
  880. INSERT INTO `nideshop_goods_attribute` VALUES ('67', '1015007', '15', '470g(内芯)');
  881. INSERT INTO `nideshop_goods_attribute` VALUES ('68', '1015007', '6', '中国');
  882. INSERT INTO `nideshop_goods_attribute` VALUES ('69', '1019000', '12', '聚醚型聚氨酯');
  883. INSERT INTO `nideshop_goods_attribute` VALUES ('70', '1019000', '13', '100%聚酯纤维');
  884. INSERT INTO `nideshop_goods_attribute` VALUES ('71', '1019000', '9', '50cm×30cm×9cm-7cm');
  885. INSERT INTO `nideshop_goods_attribute` VALUES ('72', '1019000', '24', '白色');
  886. INSERT INTO `nideshop_goods_attribute` VALUES ('73', '1019000', '25', '单人');
  887. INSERT INTO `nideshop_goods_attribute` VALUES ('74', '1019000', '7', '1.记忆绵产品为进口环保化学材质聚氨酯发泡而成,刚打开包装会有少量聚氨酯气体产生,拆除外套通风除味3-5天即可。 2.枕芯类商品受身高、体型、睡眠习惯不同,产生不同的使用体验,建议多试睡几款枕头,挑选最适合的进行使用。');
  888. INSERT INTO `nideshop_goods_attribute` VALUES ('75', '1019001', '12', '聚醚型聚氨酯');
  889. INSERT INTO `nideshop_goods_attribute` VALUES ('76', '1019001', '13', '100%聚酯纤维');
  890. INSERT INTO `nideshop_goods_attribute` VALUES ('77', '1019001', '9', '50cm×30cm×10cm-6cm');
  891. INSERT INTO `nideshop_goods_attribute` VALUES ('78', '1019001', '24', '白色');
  892. INSERT INTO `nideshop_goods_attribute` VALUES ('79', '1019001', '25', '单人');
  893. INSERT INTO `nideshop_goods_attribute` VALUES ('80', '1019001', '7', '1.记忆绵产品为进口环保化学材质聚氨酯发泡而成,刚打开包装会有少量聚氨酯气体产生,拆除外套通风除味3-5天即可。 2.枕芯类商品受身高、体型、睡眠习惯不同,产生不同的使用体验,建议多试睡几款枕头,挑选最适合的进行使用。');
  894. INSERT INTO `nideshop_goods_attribute` VALUES ('81', '1019002', '12', '聚醚型聚氨酯');
  895. INSERT INTO `nideshop_goods_attribute` VALUES ('82', '1019002', '13', '聚酯纤维');
  896. INSERT INTO `nideshop_goods_attribute` VALUES ('83', '1019002', '9', '135cm×36cm×10cm-7cm');
  897. INSERT INTO `nideshop_goods_attribute` VALUES ('84', '1019002', '24', '白色');
  898. INSERT INTO `nideshop_goods_attribute` VALUES ('85', '1019002', '25', '双人');
  899. INSERT INTO `nideshop_goods_attribute` VALUES ('86', '1019002', '7', '1.记忆绵产品为进口环保化学材质聚氨酯发泡而成,刚打开包装会有少量聚氨酯气体产生,拆除外套通风除味3-5天即可。 \n2.枕芯类商品受身高、体型、睡眠习惯不同,产生不同的使用体验,建议多试睡几款枕头,挑选最适合的进行使用。');
  900. INSERT INTO `nideshop_goods_attribute` VALUES ('87', '1019006', '13', '100%棉');
  901. INSERT INTO `nideshop_goods_attribute` VALUES ('88', '1019006', '12', '20% 夜交藤+80% 聚酯纤维');
  902. INSERT INTO `nideshop_goods_attribute` VALUES ('89', '1019006', '9', '48*74cm');
  903. INSERT INTO `nideshop_goods_attribute` VALUES ('90', '1019006', '24', '白色');
  904. INSERT INTO `nideshop_goods_attribute` VALUES ('91', '1019006', '25', '单人');
  905. INSERT INTO `nideshop_goods_attribute` VALUES ('92', '1019006', '7', '1.植物填充,遇梅雨季节需要通风、干燥保存。 \n2.枕芯类商品受身高、体型、睡眠习惯不同,产生不同的使用体验,建议多试睡几款枕头,挑选最适合的进行使用。');
  906. INSERT INTO `nideshop_goods_attribute` VALUES ('93', '1020000', '12', '聚氨酯');
  907. INSERT INTO `nideshop_goods_attribute` VALUES ('94', '1020000', '13', '100%棉');
  908. INSERT INTO `nideshop_goods_attribute` VALUES ('95', '1020000', '9', '33cm×31cm×10cm');
  909. INSERT INTO `nideshop_goods_attribute` VALUES ('96', '1020000', '24', '灰色条纹/粉色条纹');
  910. INSERT INTO `nideshop_goods_attribute` VALUES ('97', '1021004', '1', '100%羊毛');
  911. INSERT INTO `nideshop_goods_attribute` VALUES ('98', '1021004', '9', '150*200cm');
  912. INSERT INTO `nideshop_goods_attribute` VALUES ('99', '1021004', '21', '一等品');
  913. INSERT INTO `nideshop_goods_attribute` VALUES ('100', '1021004', '6', '中国');
  914. INSERT INTO `nideshop_goods_attribute` VALUES ('101', '1021004', '7', '1.羊毛毯采取传统机织工艺,纯天然织造的,直接接触皮肤会有轻微扎人。\n2.初次使用时会有少量浮毛,建议干洗处理。\n3.商品为纯羊毛织造而成,若有少量气味请通风2-3天去除。');
  915. INSERT INTO `nideshop_goods_attribute` VALUES ('102', '1021010', '1', '100%棉');
  916. INSERT INTO `nideshop_goods_attribute` VALUES ('103', '1021010', '26', 'GB18401-2010 B类');
  917. INSERT INTO `nideshop_goods_attribute` VALUES ('104', '1021010', '6', '江苏南通');
  918. INSERT INTO `nideshop_goods_attribute` VALUES ('105', '1021010', '27', '200根');
  919. INSERT INTO `nideshop_goods_attribute` VALUES ('106', '1021010', '9', '1.5米床品: 被套 200*230cm/ 枕套:48*74cm*2/ 床单:245*250cm\n1.8米床品:被套 220*240cm/ 枕套:48*74cm*2/ 床单:245*270cm');
  920. INSERT INTO `nideshop_goods_attribute` VALUES ('107', '1021010', '7', '纺织品经历印染、织造等多道环节,产品初次拿到可能有些许味道,清水漂洗、晾干后味道即可散去。\n严选面料全部经过国标检测认证,选用环保活性染料,请放心使用。');
  921. INSERT INTO `nideshop_goods_attribute` VALUES ('108', '1022000', '1', '100%棉');
  922. INSERT INTO `nideshop_goods_attribute` VALUES ('109', '1022000', '26', 'GB18401-2010 B类');
  923. INSERT INTO `nideshop_goods_attribute` VALUES ('110', '1022000', '6', '中国山东');
  924. INSERT INTO `nideshop_goods_attribute` VALUES ('111', '1022000', '27', '200根');
  925. INSERT INTO `nideshop_goods_attribute` VALUES ('112', '1022000', '9', '被套200*230cm;床单245*250cm;枕套48*74cm');
  926. INSERT INTO `nideshop_goods_attribute` VALUES ('113', '1022000', '7', '纺织品经历印染、织造等多道环节,产品初次拿到可能有些许味道,清水漂洗、晾干后味道即可散去。\n严选面料全部经过国标检测认证,选用环保活性染料,请放心使用。');
  927. INSERT INTO `nideshop_goods_attribute` VALUES ('114', '1022001', '1', '100%棉');
  928. INSERT INTO `nideshop_goods_attribute` VALUES ('115', '1022001', '26', 'GB18401-2010 B类');
  929. INSERT INTO `nideshop_goods_attribute` VALUES ('116', '1022001', '6', '中国山东');
  930. INSERT INTO `nideshop_goods_attribute` VALUES ('117', '1022001', '27', '200根');
  931. INSERT INTO `nideshop_goods_attribute` VALUES ('118', '1022001', '9', '被套200*230cm;床单245*250cm;枕套48*74cm');
  932. INSERT INTO `nideshop_goods_attribute` VALUES ('119', '1022001', '7', '纺织品经历印染、织造等多道环节,产品初次拿到可能有些许味道,清水漂洗、晾干后味道即可散去。\n严选面料全部经过国标检测认证,选用环保活性染料,请放心使用。');
  933. INSERT INTO `nideshop_goods_attribute` VALUES ('120', '1023012', '1', '100%棉');
  934. INSERT INTO `nideshop_goods_attribute` VALUES ('121', '1023012', '9', '180*220cm');
  935. INSERT INTO `nideshop_goods_attribute` VALUES ('122', '1023012', '28', 'GB18401-2010 B类');
  936. INSERT INTO `nideshop_goods_attribute` VALUES ('123', '1023012', '21', '一等品');
  937. INSERT INTO `nideshop_goods_attribute` VALUES ('124', '1023012', '15', '1480g');
  938. INSERT INTO `nideshop_goods_attribute` VALUES ('125', '1023012', '7', '1.深色纯棉毛巾被在织造染色过程中,巾面更易产生微细的纤维浮绒,使用前建议用清水漂洗1-2次,即可去掉产品上的浮绒。\n2.在洗涤时一定要注意不要与衣服混在一起机洗,强力的搓洗会引起掉毛或勾线现象。\n3.纺织品经历印染、织造等多道环节,产品初次拿到可能有些许味道,清水漂洗、晾干后味道即可散去。严选面料全部经过国标检测认证,选用环保活性染料,请放心使用。');
  939. INSERT INTO `nideshop_goods_attribute` VALUES ('126', '1023032', '1', '100%棉');
  940. INSERT INTO `nideshop_goods_attribute` VALUES ('127', '1023032', '26', 'GB18401-2010 B类');
  941. INSERT INTO `nideshop_goods_attribute` VALUES ('128', '1023032', '6', '中国山东');
  942. INSERT INTO `nideshop_goods_attribute` VALUES ('129', '1023032', '27', '200根');
  943. INSERT INTO `nideshop_goods_attribute` VALUES ('130', '1023032', '9', '1.5米床品: 被套 200*230cm/ 枕套:48*74cm*2/ 床单:245*250cm\n1.8米床品:被套 220*240cm/ 枕套:48*74cm*2/ 床单:245*270cm');
  944. INSERT INTO `nideshop_goods_attribute` VALUES ('131', '1023032', '4', '色织工艺');
  945. INSERT INTO `nideshop_goods_attribute` VALUES ('132', '1023032', '7', '纺织品经历印染、织造等多道环节,产品初次拿到可能有些许味道,清水漂洗、晾干后味道即可散去。\n严选面料全部经过国标检测认证,选用环保活性染料,请放心使用。');
  946. INSERT INTO `nideshop_goods_attribute` VALUES ('133', '1023034', '1', '正面:100%棉 背面:15%棉 85%涤 底衬:100%涤');
  947. INSERT INTO `nideshop_goods_attribute` VALUES ('134', '1023034', '11', '70% 白鸭绒 30%白鸭绒片');
  948. INSERT INTO `nideshop_goods_attribute` VALUES ('135', '1023034', '29', '250g');
  949. INSERT INTO `nideshop_goods_attribute` VALUES ('136', '1023034', '6', '中国');
  950. INSERT INTO `nideshop_goods_attribute` VALUES ('137', '1023034', '26', 'GB18401-2010 B类');
  951. INSERT INTO `nideshop_goods_attribute` VALUES ('138', '1023034', '24', '水银灰/ 水蓝/ 水粉');
  952. INSERT INTO `nideshop_goods_attribute` VALUES ('139', '1027004', '1', '100%棉');
  953. INSERT INTO `nideshop_goods_attribute` VALUES ('140', '1027004', '9', '150*200cm');
  954. INSERT INTO `nideshop_goods_attribute` VALUES ('141', '1027004', '21', '一等品');
  955. INSERT INTO `nideshop_goods_attribute` VALUES ('142', '1027004', '24', '灰白格/粉白格');
  956. INSERT INTO `nideshop_goods_attribute` VALUES ('143', '1027004', '15', '1136g');
  957. INSERT INTO `nideshop_goods_attribute` VALUES ('144', '1029005', '1', '65% 天丝 35% 亚麻');
  958. INSERT INTO `nideshop_goods_attribute` VALUES ('145', '1029005', '9', '1.5米床品: 被套 200*230cm/ 枕套:48*74cm*2/ 床单:245*250cm\n1.8米床品:被套 220*240cm/ 枕套:48*74cm*2/ 床单:245*270cm');
  959. INSERT INTO `nideshop_goods_attribute` VALUES ('146', '1029005', '6', '中国江苏');
  960. INSERT INTO `nideshop_goods_attribute` VALUES ('147', '1029005', '5', 'GB/T 22844-2009');
  961. INSERT INTO `nideshop_goods_attribute` VALUES ('148', '1029005', '24', '渐变紫 / 渐变绿');
  962. INSERT INTO `nideshop_goods_attribute` VALUES ('149', '1029005', '7', '纺织品经历印染、织造等多道环节,产品初次拿到可能有些许味道,清水漂洗、晾干后味道即可散去。\n严选面料全部经过国标检测认证,选用环保活性染料,请放心使用。');
  963. INSERT INTO `nideshop_goods_attribute` VALUES ('150', '1030001', '1', '面纱:100%羊毛 底纱:55.7%棉 27.1%聚酯纤维 4.7%羊毛 12.5%其他');
  964. INSERT INTO `nideshop_goods_attribute` VALUES ('151', '1030001', '6', '印度');
  965. INSERT INTO `nideshop_goods_attribute` VALUES ('152', '1030001', '5', 'QB/T 2756-2005');
  966. INSERT INTO `nideshop_goods_attribute` VALUES ('153', '1030001', '9', '160*230cm');
  967. INSERT INTO `nideshop_goods_attribute` VALUES ('154', '1030001', '4', '手工编织');
  968. INSERT INTO `nideshop_goods_attribute` VALUES ('155', '1030001', '7', '1:羊毛材质存在一点羊骚味实属正常情况,建议开窗通风,多散散味道即可。\n2:羊毛地毯刚刚开始使用的时候多多少少都会有一点掉毛的情况,建议开始使用的时候用吸尘器多吸几次,之后掉毛的情况就会有改善。 \n3:因为天然羊毛材质,所以脚感会有一点点刺,不属于产品质量问题。');
  969. INSERT INTO `nideshop_goods_attribute` VALUES ('156', '1030002', '1', '绒面:93%羊毛 7%腈纶 衬背:100%棉');
  970. INSERT INTO `nideshop_goods_attribute` VALUES ('157', '1030002', '6', '印度');
  971. INSERT INTO `nideshop_goods_attribute` VALUES ('158', '1030002', '5', 'GB/T 27729-2011');
  972. INSERT INTO `nideshop_goods_attribute` VALUES ('159', '1030002', '9', '160*230cm');
  973. INSERT INTO `nideshop_goods_attribute` VALUES ('160', '1030002', '4', '手工枪刺');
  974. INSERT INTO `nideshop_goods_attribute` VALUES ('161', '1030002', '7', '1:羊毛材质存在一点羊骚味实属正常情况,建议开窗通风,多散散味道即可。\n2:羊毛地毯刚刚开始使用的时候多多少少都会有一点掉毛的情况,建议开始使用的时候用吸尘器多吸几次,之后掉毛的情况就会有改善。 \n3:因为天然羊毛材质,所以脚感会有一点点刺,不属于产品质量问题。');
  975. INSERT INTO `nideshop_goods_attribute` VALUES ('162', '1030003', '1', '面纱: 100%羊毛 底纱: 88.3%棉 11.7%其他');
  976. INSERT INTO `nideshop_goods_attribute` VALUES ('163', '1030003', '6', '印度');
  977. INSERT INTO `nideshop_goods_attribute` VALUES ('164', '1030003', '5', 'QB/T 2756-2005');
  978. INSERT INTO `nideshop_goods_attribute` VALUES ('165', '1030003', '9', '160*230cm');
  979. INSERT INTO `nideshop_goods_attribute` VALUES ('166', '1030003', '4', '手工编织');
  980. INSERT INTO `nideshop_goods_attribute` VALUES ('167', '1030003', '7', '1:羊毛材质存在一点羊骚味实属正常情况,建议开窗通风,多散散味道即可。\n2:羊毛地毯刚刚开始使用的时候多多少少都会有一点掉毛的情况,建议开始使用的时候用吸尘器多吸几次,之后掉毛的情况就会有改善。 \n3:因为天然羊毛材质,所以脚感会有一点点刺,不属于产品质量问题。');
  981. INSERT INTO `nideshop_goods_attribute` VALUES ('168', '1030004', '1', '100%棉');
  982. INSERT INTO `nideshop_goods_attribute` VALUES ('169', '1030004', '5', 'GB/T 22844-2009');
  983. INSERT INTO `nideshop_goods_attribute` VALUES ('170', '1030004', '9', '1.5米床品: 被套 200*230cm/ 枕套:48*74cm*2/ 床单:245*250cm\n1.8米床品:被套 220*240cm/ 枕套:48*74cm*2/ 床单:245*270cm');
  984. INSERT INTO `nideshop_goods_attribute` VALUES ('171', '1030004', '6', '中国山东');
  985. INSERT INTO `nideshop_goods_attribute` VALUES ('172', '1030004', '24', '蓝色/ 灰色');
  986. INSERT INTO `nideshop_goods_attribute` VALUES ('173', '1030004', '7', '纺织品经历印染、织造等多道环节,产品初次拿到可能有些许味道,清水漂洗、晾干后味道即可散去。\n严选面料全部经过国标检测认证,选用环保活性染料,请放心使用。');
  987. INSERT INTO `nideshop_goods_attribute` VALUES ('174', '1030005', '1', '100%亚麻');
  988. INSERT INTO `nideshop_goods_attribute` VALUES ('175', '1030005', '5', 'GB/T 22844-2009');
  989. INSERT INTO `nideshop_goods_attribute` VALUES ('176', '1030005', '6', '中国山东');
  990. INSERT INTO `nideshop_goods_attribute` VALUES ('177', '1030005', '24', '橙色/ 灰色/ 黄色');
  991. INSERT INTO `nideshop_goods_attribute` VALUES ('178', '1030005', '4', '水洗工艺');
  992. INSERT INTO `nideshop_goods_attribute` VALUES ('179', '1030005', '7', '纺织品经历印染、织造等多道环节,产品初次拿到可能有些许味道,清水漂洗、晾干后味道即可散去。\n严选面料全部经过国标检测认证,选用环保活性染料,请放心使用。');
  993. INSERT INTO `nideshop_goods_attribute` VALUES ('180', '1030005', '9', '1.5米床品: 被套 200*230cm/ 枕套:48*74cm*2/ 床单:245*250cm\n1.8米床品:被套 220*240cm/ 枕套:48*74cm*2/ 床单:245*270cm');
  994. INSERT INTO `nideshop_goods_attribute` VALUES ('181', '1030006', '1', '100%棉');
  995. INSERT INTO `nideshop_goods_attribute` VALUES ('182', '1030006', '9', '1.5米床品: 被套 200*230cm/ 枕套:48*74cm*2/ 床单:245*250cm\n1.8米床品:被套 220*240cm/ 枕套:48*74cm*2/ 床单:245*270cm');
  996. INSERT INTO `nideshop_goods_attribute` VALUES ('183', '1030006', '6', '中国山东');
  997. INSERT INTO `nideshop_goods_attribute` VALUES ('184', '1030006', '5', 'GB18401-2010 B类');
  998. INSERT INTO `nideshop_goods_attribute` VALUES ('185', '1030006', '24', '红色/ 黄色/ 蓝色');
  999. INSERT INTO `nideshop_goods_attribute` VALUES ('186', '1030006', '7', '纺织品经历印染、织造等多道环节,产品初次拿到可能有些许味道,清水漂洗、晾干后味道即可散去。\n严选面料全部经过国标检测认证,选用环保活性染料,请放心使用。');
  1000. INSERT INTO `nideshop_goods_attribute` VALUES ('187', '1035006', '1', '100%棉');
  1001. INSERT INTO `nideshop_goods_attribute` VALUES ('188', '1035006', '6', '中国浙江');
  1002. INSERT INTO `nideshop_goods_attribute` VALUES ('189', '1035006', '9', '长61*宽43cm / 长86*宽53cm');
  1003. INSERT INTO `nideshop_goods_attribute` VALUES ('190', '1035006', '4', '手工制作');
  1004. INSERT INTO `nideshop_goods_attribute` VALUES ('191', '1035006', '5', 'GB/T 26850-2011');
  1005. INSERT INTO `nideshop_goods_attribute` VALUES ('192', '1035006', '7', '纯棉材质在织造染色过程中,表面不可避免会产生微细的纤维浮绒,使用前清水漂洗1-2次,即可去掉浮绒。不属于产品质量问题。');
  1006. INSERT INTO `nideshop_goods_attribute` VALUES ('193', '1036002', '13', '100% 棉');
  1007. INSERT INTO `nideshop_goods_attribute` VALUES ('194', '1036002', '11', '100% 高山苦荞麦壳');
  1008. INSERT INTO `nideshop_goods_attribute` VALUES ('195', '1036002', '16', '74×48cm±1cm');
  1009. INSERT INTO `nideshop_goods_attribute` VALUES ('196', '1036002', '8', '3KG');
  1010. INSERT INTO `nideshop_goods_attribute` VALUES ('197', '1036002', '7', '1.天然植物填充,遇梅雨季节需要干燥保存,如有少量飞虫产生,太阳下晒3小时即可去除。 \n2.枕芯类商品受身高、体型、睡眠习惯不同,产生不同的使用体验,建议多试睡几款枕头,挑选最适合的进行使用。');
  1011. INSERT INTO `nideshop_goods_attribute` VALUES ('198', '1036013', '1', '100%棉');
  1012. INSERT INTO `nideshop_goods_attribute` VALUES ('199', '1036013', '9', '150*200*25cm/ 180*200*25cm');
  1013. INSERT INTO `nideshop_goods_attribute` VALUES ('200', '1036013', '5', 'FZ/T 62028-2015');
  1014. INSERT INTO `nideshop_goods_attribute` VALUES ('201', '1036013', '4', '双捻工艺');
  1015. INSERT INTO `nideshop_goods_attribute` VALUES ('202', '1036013', '6', '浙江 江苏');
  1016. INSERT INTO `nideshop_goods_attribute` VALUES ('203', '1036013', '7', '1:针织棉面料因为工艺不可避免原因,使用一段时间后会出现起毛起球现象,使用去毛机修理一下即可。\n2:因为针织的编织工艺,成品在使用过程中会有轻微的变型,不影响使用。');
  1017. INSERT INTO `nideshop_goods_attribute` VALUES ('204', '1036016', '1', '100%棉');
  1018. INSERT INTO `nideshop_goods_attribute` VALUES ('205', '1036016', '9', '150*200cm/ 180*200cm');
  1019. INSERT INTO `nideshop_goods_attribute` VALUES ('206', '1036016', '5', 'GB/T 22797-2009');
  1020. INSERT INTO `nideshop_goods_attribute` VALUES ('207', '1036016', '4', '色织水洗工艺');
  1021. INSERT INTO `nideshop_goods_attribute` VALUES ('208', '1036016', '7', '纺织品经历印染、织造等多道环节,产品初次拿到可能有些许味道,清水漂洗、晾干后味道即可散去。\n严选面料全部经过国标检测认证,选用环保活性染料,请放心使用。');
  1022. INSERT INTO `nideshop_goods_attribute` VALUES ('209', '1037011', '16', '1.5/1.8m*2m*5cm');
  1023. INSERT INTO `nideshop_goods_attribute` VALUES ('210', '1037011', '30', '100%聚酯纤维');
  1024. INSERT INTO `nideshop_goods_attribute` VALUES ('211', '1037011', '31', '100%聚酯纤维');
  1025. INSERT INTO `nideshop_goods_attribute` VALUES ('212', '1037011', '32', '聚氨酯');
  1026. INSERT INTO `nideshop_goods_attribute` VALUES ('213', '1037011', '7', '1.记忆绵产品为进口环保化学材质聚氨酯发泡而成,刚打开包装会有少量聚氨酯气体产生,拆除外套通风除味3-5天即可。\n 2.床垫商品受身高、体型、睡眠习惯不同,产生不同的使用体验,建议多试睡几款床垫,挑选最舒适的进行使用。');
  1027. INSERT INTO `nideshop_goods_attribute` VALUES ('214', '1037012', '11', '100%高山苦荞');
  1028. INSERT INTO `nideshop_goods_attribute` VALUES ('215', '1037012', '9', '40*8cm');
  1029. INSERT INTO `nideshop_goods_attribute` VALUES ('216', '1037012', '33', '45%麻45%棉10%聚酯纤维');
  1030. INSERT INTO `nideshop_goods_attribute` VALUES ('217', '1037012', '7', '1.天然植物填充,遇梅雨季节需要干燥保存,如有少量飞虫产生,太阳下晒3小时即可去除。\n 2.枕芯类商品受身高、体型、睡眠习惯不同,产生不同的使用体验,建议多试睡几款枕头,挑选最适合的进行使用。\n3.建议每次使用时间控制在15分钟以内。');
  1031. INSERT INTO `nideshop_goods_attribute` VALUES ('218', '1037012', '34', '0.45kg+-0.05kg');
  1032. INSERT INTO `nideshop_goods_attribute` VALUES ('219', '1039051', '16', '33*24*14cm');
  1033. INSERT INTO `nideshop_goods_attribute` VALUES ('220', '1039051', '30', '100%棉');
  1034. INSERT INTO `nideshop_goods_attribute` VALUES ('221', '1039051', '31', '100%聚酯纤维');
  1035. INSERT INTO `nideshop_goods_attribute` VALUES ('222', '1039051', '32', '聚氨酯');
  1036. INSERT INTO `nideshop_goods_attribute` VALUES ('223', '1039051', '20', 'GB 18401-2010 B类');
  1037. INSERT INTO `nideshop_goods_attribute` VALUES ('224', '1039051', '19', '1,水洗时请将外套取下,用冷水洗涤后置于阴凉处阴干或烘干。不能同褪色衣物同洗,以防沾污、沾色。\n2,外套洗后稍有缩水是正常现象,因是弹性织物,仅需四周拉一下长度即可。\n3,记忆棉不可水洗,请经常保持产品干燥,定期通风(不可曝晒)。若不慎打湿,立即用干毛巾将水分吸干,置于通风处阴干或用冷吹风吹干即可。');
  1038. INSERT INTO `nideshop_goods_attribute` VALUES ('225', '1043005', '35', '100%聚酯纤维');
  1039. INSERT INTO `nideshop_goods_attribute` VALUES ('226', '1043005', '36', '聚氨酯');
  1040. INSERT INTO `nideshop_goods_attribute` VALUES ('227', '1043005', '5', 'GB/T22843-2009');
  1041. INSERT INTO `nideshop_goods_attribute` VALUES ('228', '1043005', '37', '36*36*3cm');
  1042. INSERT INTO `nideshop_goods_attribute` VALUES ('229', '1043005', '38', 'Φ34*3cm');
  1043. INSERT INTO `nideshop_goods_attribute` VALUES ('230', '1043005', '39', '100%棉');
  1044. INSERT INTO `nideshop_goods_attribute` VALUES ('231', '1043005', '19', '1,水洗时请将外套取下,用冷水洗涤后置于阴凉处阴干或烘干。不能同褪色衣物同洗,以防沾污、沾色。\n2,外套洗后稍有缩水是正常现象,因是弹性织物,仅需四周拉一下长度即可。\n3,记忆棉不可水洗,请经常保持产品干燥,每隔一段时间用吸尘器清理内芯落尘或用手轻轻拍打内芯,放在通风阴凉处适当晾晒即可。。若不慎打湿,立即用干毛巾将水分吸干,置于通风处阴干或用冷吹风吹干即可。');
  1045. INSERT INTO `nideshop_goods_attribute` VALUES ('232', '1044012', '9', '150*200cm');
  1046. INSERT INTO `nideshop_goods_attribute` VALUES ('233', '1044012', '1', '100%羊毛');
  1047. INSERT INTO `nideshop_goods_attribute` VALUES ('234', '1044012', '21', '一等品');
  1048. INSERT INTO `nideshop_goods_attribute` VALUES ('235', '1044012', '40', 'GB 18401-2010 B类');
  1049. INSERT INTO `nideshop_goods_attribute` VALUES ('236', '1044012', '7', '1.羊毛毯采取传统机织工艺,纯天然织造的,直接接触皮肤会有轻微扎人。\n2.初次使用时会有少量浮毛,建议干洗处理。\n3.商品为纯羊毛织造而成,若有少量气味请通风2-3天去除。');
  1050. INSERT INTO `nideshop_goods_attribute` VALUES ('237', '1046044', '1', '100%美利奴羊毛');
  1051. INSERT INTO `nideshop_goods_attribute` VALUES ('238', '1046044', '15', '1260g');
  1052. INSERT INTO `nideshop_goods_attribute` VALUES ('239', '1046044', '9', '150*200cm');
  1053. INSERT INTO `nideshop_goods_attribute` VALUES ('240', '1046044', '5', 'FZ/T 61001-2006');
  1054. INSERT INTO `nideshop_goods_attribute` VALUES ('241', '1046044', '21', '一等品');
  1055. INSERT INTO `nideshop_goods_attribute` VALUES ('242', '1048005', '10', '100% 棉');
  1056. INSERT INTO `nideshop_goods_attribute` VALUES ('243', '1048005', '9', '45*45cm');
  1057. INSERT INTO `nideshop_goods_attribute` VALUES ('244', '1048005', '6', '中国江苏');
  1058. INSERT INTO `nideshop_goods_attribute` VALUES ('245', '1048005', '24', '真朱红/ 薄缥蓝/ 枯野灰');
  1059. INSERT INTO `nideshop_goods_attribute` VALUES ('246', '1048005', '5', 'GB/T 22843-2009');
  1060. INSERT INTO `nideshop_goods_attribute` VALUES ('247', '1048005', '7', '纺织品经历印染、织造等多道环节,产品初次拿到可能有些许味道,清水漂洗、晾干后味道即可散去。\n严选面料全部经过国标检测认证,选用环保活性染料,请放心使用。');
  1061. INSERT INTO `nideshop_goods_attribute` VALUES ('248', '1055012', '1', '外壳:100% 纯棉 内充:100% 聚酯纤维');
  1062. INSERT INTO `nideshop_goods_attribute` VALUES ('249', '1055012', '29', '600G/ 1400G');
  1063. INSERT INTO `nideshop_goods_attribute` VALUES ('250', '1055012', '9', '45*45cm / 66*66cm');
  1064. INSERT INTO `nideshop_goods_attribute` VALUES ('251', '1055012', '6', '中国江苏');
  1065. INSERT INTO `nideshop_goods_attribute` VALUES ('252', '1055012', '5', 'GB/T 22843-2009');
  1066. INSERT INTO `nideshop_goods_attribute` VALUES ('253', '1055016', '24', '珍珠粉/ 宝石蓝');
  1067. INSERT INTO `nideshop_goods_attribute` VALUES ('254', '1055016', '9', '45*45cm');
  1068. INSERT INTO `nideshop_goods_attribute` VALUES ('255', '1055016', '1', '主面料:100% 棉\n填充:100% 聚酯纤维');
  1069. INSERT INTO `nideshop_goods_attribute` VALUES ('256', '1055016', '29', '600G');
  1070. INSERT INTO `nideshop_goods_attribute` VALUES ('257', '1055016', '5', 'GB/T 22843-2009');
  1071. INSERT INTO `nideshop_goods_attribute` VALUES ('258', '1055016', '7', '纺织品经历印染、织造等多道环节,产品初次拿到可能有些许味道,清水漂洗、晾干后味道即可散去。\n严选面料全部经过国标检测认证,选用环保活性染料,请放心使用。');
  1072. INSERT INTO `nideshop_goods_attribute` VALUES ('259', '1057036', '9', '45*45cm');
  1073. INSERT INTO `nideshop_goods_attribute` VALUES ('260', '1057036', '24', '灰紫/ 蓝色/ 灰色/ 咖色');
  1074. INSERT INTO `nideshop_goods_attribute` VALUES ('261', '1057036', '5', 'GB/T 22843-2009');
  1075. INSERT INTO `nideshop_goods_attribute` VALUES ('262', '1057036', '41', '600G');
  1076. INSERT INTO `nideshop_goods_attribute` VALUES ('263', '1057036', '6', '中国江苏');
  1077. INSERT INTO `nideshop_goods_attribute` VALUES ('264', '1057036', '1', '面料:100% 亚麻\n内芯面料:100%棉\n填充:100%聚酯纤维');
  1078. INSERT INTO `nideshop_goods_attribute` VALUES ('265', '1057036', '7', '纺织品经历印染、织造等多道环节,产品初次拿到可能有些许味道,清水漂洗、晾干后味道即可散去。\n严选面料全部经过国标检测认证,选用环保活性染料,请放心使用。');
  1079. INSERT INTO `nideshop_goods_attribute` VALUES ('266', '1064000', '9', '38*38*30cm/60*55*20cm');
  1080. INSERT INTO `nideshop_goods_attribute` VALUES ('267', '1064000', '42', 'FZ/T 62011.3-2008');
  1081. INSERT INTO `nideshop_goods_attribute` VALUES ('268', '1064000', '26', 'GB 18401-2010 B类');
  1082. INSERT INTO `nideshop_goods_attribute` VALUES ('269', '1064000', '24', '米色');
  1083. INSERT INTO `nideshop_goods_attribute` VALUES ('270', '1064002', '9', '40R/60R');
  1084. INSERT INTO `nideshop_goods_attribute` VALUES ('271', '1064002', '42', 'FZ/T 62011.3-2008');
  1085. INSERT INTO `nideshop_goods_attribute` VALUES ('272', '1064002', '26', 'GB 18401-2010 B类');
  1086. INSERT INTO `nideshop_goods_attribute` VALUES ('273', '1064002', '8', '110g');
  1087. INSERT INTO `nideshop_goods_attribute` VALUES ('274', '1064002', '24', '蓝白');
  1088. INSERT INTO `nideshop_goods_attribute` VALUES ('275', '1064003', '42', 'FZ/T 62011.3-2008');
  1089. INSERT INTO `nideshop_goods_attribute` VALUES ('276', '1064003', '26', 'GB 18401-2010 B类');
  1090. INSERT INTO `nideshop_goods_attribute` VALUES ('277', '1064003', '9', '29*19cm');
  1091. INSERT INTO `nideshop_goods_attribute` VALUES ('278', '1064003', '24', '藏青色');
  1092. INSERT INTO `nideshop_goods_attribute` VALUES ('279', '1064004', '42', 'FZ/T 62011.3-2008');
  1093. INSERT INTO `nideshop_goods_attribute` VALUES ('280', '1064004', '26', 'GB 18401-2010 B类');
  1094. INSERT INTO `nideshop_goods_attribute` VALUES ('281', '1064004', '16', '32*32*32cm');
  1095. INSERT INTO `nideshop_goods_attribute` VALUES ('282', '1064004', '24', '牛仔条纹');
  1096. INSERT INTO `nideshop_goods_attribute` VALUES ('283', '1064006', '9', '50x30x10-6cm');
  1097. INSERT INTO `nideshop_goods_attribute` VALUES ('284', '1064006', '15', '0.87kg');
  1098. INSERT INTO `nideshop_goods_attribute` VALUES ('285', '1064006', '30', '40%棉60%聚酯纤维(接触皮肤面全棉)');
  1099. INSERT INTO `nideshop_goods_attribute` VALUES ('286', '1064006', '31', '100%聚酯纤维');
  1100. INSERT INTO `nideshop_goods_attribute` VALUES ('287', '1064006', '32', '聚氨酯');
  1101. INSERT INTO `nideshop_goods_attribute` VALUES ('288', '1064007', '16', '135x36x10-7cm');
  1102. INSERT INTO `nideshop_goods_attribute` VALUES ('289', '1064007', '15', '2.3kg');
  1103. INSERT INTO `nideshop_goods_attribute` VALUES ('290', '1064007', '30', '40%棉60%聚酯纤维(接触皮肤面全棉)');
  1104. INSERT INTO `nideshop_goods_attribute` VALUES ('291', '1064007', '31', '100%聚酯纤维');
  1105. INSERT INTO `nideshop_goods_attribute` VALUES ('292', '1064007', '32', '聚氨酯');
  1106. INSERT INTO `nideshop_goods_attribute` VALUES ('293', '1064021', '24', '本白');
  1107. INSERT INTO `nideshop_goods_attribute` VALUES ('294', '1064021', '5', 'GB 7000.11-2008');
  1108. INSERT INTO `nideshop_goods_attribute` VALUES ('295', '1064021', '43', '220-240V');
  1109. INSERT INTO `nideshop_goods_attribute` VALUES ('296', '1064021', '44', 'T710');
  1110. INSERT INTO `nideshop_goods_attribute` VALUES ('297', '1064021', '7', '本产品不包含灯泡');
  1111. INSERT INTO `nideshop_goods_attribute` VALUES ('298', '1064021', '6', '中国中山');
  1112. INSERT INTO `nideshop_goods_attribute` VALUES ('299', '1064022', '24', '本白');
  1113. INSERT INTO `nideshop_goods_attribute` VALUES ('300', '1064022', '5', 'GB 7000.11-2008');
  1114. INSERT INTO `nideshop_goods_attribute` VALUES ('301', '1064022', '44', 'F710');
  1115. INSERT INTO `nideshop_goods_attribute` VALUES ('302', '1064022', '43', '220-240V');
  1116. INSERT INTO `nideshop_goods_attribute` VALUES ('303', '1064022', '7', '本产品不包含灯泡');
  1117. INSERT INTO `nideshop_goods_attribute` VALUES ('304', '1064022', '6', '中国中山');
  1118. INSERT INTO `nideshop_goods_attribute` VALUES ('305', '1065004', '9', '150*30cm');
  1119. INSERT INTO `nideshop_goods_attribute` VALUES ('306', '1065004', '24', '原木色/ 棕色');
  1120. INSERT INTO `nideshop_goods_attribute` VALUES ('307', '1065004', '5', 'GB/T 23148-2008');
  1121. INSERT INTO `nideshop_goods_attribute` VALUES ('308', '1065004', '6', '中国苏州');
  1122. INSERT INTO `nideshop_goods_attribute` VALUES ('309', '1065004', '7', '原木色为水曲柳贴皮,棕色为胡桃木贴皮。');
  1123. INSERT INTO `nideshop_goods_attribute` VALUES ('310', '1065005', '9', '150*28cm');
  1124. INSERT INTO `nideshop_goods_attribute` VALUES ('311', '1065005', '24', '棕色');
  1125. INSERT INTO `nideshop_goods_attribute` VALUES ('312', '1065005', '5', 'GB/T 23148-2008');
  1126. INSERT INTO `nideshop_goods_attribute` VALUES ('313', '1065005', '6', '中国江苏');
  1127. INSERT INTO `nideshop_goods_attribute` VALUES ('314', '1068010', '8', '1300g/1560g');
  1128. INSERT INTO `nideshop_goods_attribute` VALUES ('315', '1068010', '9', '1.5*2m/1.8*2m');
  1129. INSERT INTO `nideshop_goods_attribute` VALUES ('316', '1068010', '30', '100%棉');
  1130. INSERT INTO `nideshop_goods_attribute` VALUES ('317', '1068010', '11', '100%羊毛');
  1131. INSERT INTO `nideshop_goods_attribute` VALUES ('318', '1068010', '5', 'GB/T 22843-2009');
  1132. INSERT INTO `nideshop_goods_attribute` VALUES ('319', '1068010', '21', '合格品');
  1133. INSERT INTO `nideshop_goods_attribute` VALUES ('320', '1068010', '45', '3cm+-视商品干燥情况有少量浮动');
  1134. INSERT INTO `nideshop_goods_attribute` VALUES ('321', '1068011', '11', '60%、90%驼绒/40%、10%驼毛');
  1135. INSERT INTO `nideshop_goods_attribute` VALUES ('322', '1068011', '10', '100%棉');
  1136. INSERT INTO `nideshop_goods_attribute` VALUES ('323', '1068011', '9', '200*230cm');
  1137. INSERT INTO `nideshop_goods_attribute` VALUES ('324', '1068011', '8', '2000g');
  1138. INSERT INTO `nideshop_goods_attribute` VALUES ('325', '1068012', '9', '1.5米床品: 被套 200*230cm/ 枕套:48*74cm*2/ 床单:245*250cm\n1.8米床品:被套 220*240cm/ 枕套:48*74cm*2/ 床单:245*270cm');
  1139. INSERT INTO `nideshop_goods_attribute` VALUES ('326', '1068012', '24', '灰紫/ 浅咖色');
  1140. INSERT INTO `nideshop_goods_attribute` VALUES ('327', '1068012', '46', '色织工艺');
  1141. INSERT INTO `nideshop_goods_attribute` VALUES ('328', '1068012', '5', 'GB/T 22844-2009');
  1142. INSERT INTO `nideshop_goods_attribute` VALUES ('329', '1068012', '7', '纺织品经历印染、织造等多道环节,产品初次拿到可能有些许味道,清水漂洗、晾干后味道即可散去。 严选面料全部经过国标检测认证,选用环保活性染料,请放心使用。');
  1143. INSERT INTO `nideshop_goods_attribute` VALUES ('330', '1068012', '6', '中国山东');
  1144. INSERT INTO `nideshop_goods_attribute` VALUES ('331', '1068012', '1', '面料:100%棉 填充物:65% 棉/ 35%聚酯纤维');
  1145. INSERT INTO `nideshop_goods_attribute` VALUES ('332', '1071004', '9', '48*38*13cm');
  1146. INSERT INTO `nideshop_goods_attribute` VALUES ('333', '1071004', '47', '黑红/白姜黄');
  1147. INSERT INTO `nideshop_goods_attribute` VALUES ('334', '1071004', '1', '聚丙烯树脂');
  1148. INSERT INTO `nideshop_goods_attribute` VALUES ('335', '1071004', '5', 'GB 9688-1988');
  1149. INSERT INTO `nideshop_goods_attribute` VALUES ('336', '1071004', '21', '合格品');
  1150. INSERT INTO `nideshop_goods_attribute` VALUES ('337', '1071005', '9', '185*160*100MM');
  1151. INSERT INTO `nideshop_goods_attribute` VALUES ('338', '1071005', '48', '聚丙烯树脂');
  1152. INSERT INTO `nideshop_goods_attribute` VALUES ('339', '1071005', '5', 'GB 9688-1988');
  1153. INSERT INTO `nideshop_goods_attribute` VALUES ('340', '1071005', '21', '合格品');
  1154. INSERT INTO `nideshop_goods_attribute` VALUES ('341', '1071006', '16', '200*60mm');
  1155. INSERT INTO `nideshop_goods_attribute` VALUES ('342', '1071006', '48', '聚丙烯树脂');
  1156. INSERT INTO `nideshop_goods_attribute` VALUES ('343', '1071006', '5', 'GB 9688-1988');
  1157. INSERT INTO `nideshop_goods_attribute` VALUES ('344', '1072000', '24', '象牙白/ 芥子黄/ 银铅色');
  1158. INSERT INTO `nideshop_goods_attribute` VALUES ('345', '1072000', '9', '45*45cm/ 66*66cm');
  1159. INSERT INTO `nideshop_goods_attribute` VALUES ('346', '1072000', '5', 'GB/T 22843-2009');
  1160. INSERT INTO `nideshop_goods_attribute` VALUES ('347', '1072000', '4', '手工编织');
  1161. INSERT INTO `nideshop_goods_attribute` VALUES ('348', '1072000', '6', '中国山东');
  1162. INSERT INTO `nideshop_goods_attribute` VALUES ('349', '1072000', '7', '此产品不含抱枕芯');
  1163. INSERT INTO `nideshop_goods_attribute` VALUES ('350', '1072001', '24', '缥蓝色/ 薄灰色/ 象牙色/ 赤紫色');
  1164. INSERT INTO `nideshop_goods_attribute` VALUES ('351', '1072001', '9', '45*45cm');
  1165. INSERT INTO `nideshop_goods_attribute` VALUES ('352', '1072001', '5', 'GB/T 22843-2009');
  1166. INSERT INTO `nideshop_goods_attribute` VALUES ('353', '1072001', '4', '色织水洗');
  1167. INSERT INTO `nideshop_goods_attribute` VALUES ('354', '1072001', '6', '中国山东');
  1168. INSERT INTO `nideshop_goods_attribute` VALUES ('355', '1072001', '7', '此产品不含抱枕芯');
  1169. INSERT INTO `nideshop_goods_attribute` VALUES ('356', '1075023', '16', '48*74cm');
  1170. INSERT INTO `nideshop_goods_attribute` VALUES ('357', '1075023', '11', '20%白鸭绒+80%白鹅毛片');
  1171. INSERT INTO `nideshop_goods_attribute` VALUES ('358', '1075023', '8', '200g白鸭绒+800g白鹅毛片');
  1172. INSERT INTO `nideshop_goods_attribute` VALUES ('359', '1075023', '10', '100%棉');
  1173. INSERT INTO `nideshop_goods_attribute` VALUES ('360', '1075023', '5', 'QB/T 1194-2012');
  1174. INSERT INTO `nideshop_goods_attribute` VALUES ('361', '1075024', '12', '白鹅绒');
  1175. INSERT INTO `nideshop_goods_attribute` VALUES ('362', '1075024', '14', '95%');
  1176. INSERT INTO `nideshop_goods_attribute` VALUES ('363', '1075024', '10', '100%纯棉');
  1177. INSERT INTO `nideshop_goods_attribute` VALUES ('364', '1075024', '49', '120支 500根');
  1178. INSERT INTO `nideshop_goods_attribute` VALUES ('365', '1075024', '8', '1500g/1700g');
  1179. INSERT INTO `nideshop_goods_attribute` VALUES ('366', '1075024', '9', '200*230cm/220*240cm');
  1180. INSERT INTO `nideshop_goods_attribute` VALUES ('367', '1075024', '4', '双层立衬');
  1181. INSERT INTO `nideshop_goods_attribute` VALUES ('368', '1081000', '9', '35*45cm');
  1182. INSERT INTO `nideshop_goods_attribute` VALUES ('369', '1081000', '5', 'GB/T 22843-2009');
  1183. INSERT INTO `nideshop_goods_attribute` VALUES ('370', '1081000', '6', '浙江杭州');
  1184. INSERT INTO `nideshop_goods_attribute` VALUES ('371', '1081000', '1', '100% 聚酯纤维');
  1185. INSERT INTO `nideshop_goods_attribute` VALUES ('372', '1081002', '9', '45*45cm');
  1186. INSERT INTO `nideshop_goods_attribute` VALUES ('373', '1081002', '5', 'GB/T 22843-2009');
  1187. INSERT INTO `nideshop_goods_attribute` VALUES ('374', '1081002', '1', '100% 聚酯纤维');
  1188. INSERT INTO `nideshop_goods_attribute` VALUES ('375', '1081002', '6', '浙江杭州');
  1189. INSERT INTO `nideshop_goods_attribute` VALUES ('376', '1083009', '50', '厄瓜多尔玫瑰');
  1190. INSERT INTO `nideshop_goods_attribute` VALUES ('377', '1083009', '51', '1朵');
  1191. INSERT INTO `nideshop_goods_attribute` VALUES ('378', '1083009', '24', '妖姬蓝');
  1192. INSERT INTO `nideshop_goods_attribute` VALUES ('379', '1083009', '9', '17*17*12cm');
  1193. INSERT INTO `nideshop_goods_attribute` VALUES ('380', '1083009', '52', '厄瓜多尔');
  1194. INSERT INTO `nideshop_goods_attribute` VALUES ('381', '1083010', '53', '奥斯汀玫瑰、泉水玫瑰、绣球');
  1195. INSERT INTO `nideshop_goods_attribute` VALUES ('382', '1083010', '54', '棉毛苏叶、细爪草、褐色果、满天星');
  1196. INSERT INTO `nideshop_goods_attribute` VALUES ('383', '1083010', '24', '柔情粉');
  1197. INSERT INTO `nideshop_goods_attribute` VALUES ('384', '1083010', '9', '17*17*12cm');
  1198. INSERT INTO `nideshop_goods_attribute` VALUES ('385', '1083010', '52', '日本');
  1199. INSERT INTO `nideshop_goods_attribute` VALUES ('386', '1083010', '19', '由于花材的季节性供应特点,个别配材会有所调整,且因花材批次不同会有一定微小色差,不会影响整体花盒效果。');
  1200. INSERT INTO `nideshop_goods_attribute` VALUES ('387', '1084001', '1', '100%纯棉');
  1201. INSERT INTO `nideshop_goods_attribute` VALUES ('388', '1084001', '9', '150*200cm');
  1202. INSERT INTO `nideshop_goods_attribute` VALUES ('389', '1084001', '42', 'FZ/T 61001-2006');
  1203. INSERT INTO `nideshop_goods_attribute` VALUES ('390', '1084001', '20', 'GB18401-2010 B类');
  1204. INSERT INTO `nideshop_goods_attribute` VALUES ('391', '1084001', '7', '1.纯棉毯采取传统针织工艺,纯天然织造的,使用前建议清洗一遍去除少量浮尘。\n2.商品为纯棉织造而成,若有少量气味请通风2-3天去除。\n3.纯棉针织盖毯清洗数次之后,可能存在微量变形,建议干洗。');
  1205. INSERT INTO `nideshop_goods_attribute` VALUES ('392', '1084001', '15', '1280g');
  1206. INSERT INTO `nideshop_goods_attribute` VALUES ('393', '1084003', '1', '100%棉');
  1207. INSERT INTO `nideshop_goods_attribute` VALUES ('394', '1084003', '9', '150*200cm');
  1208. INSERT INTO `nideshop_goods_attribute` VALUES ('395', '1084003', '42', 'FZ/T 61001-2006');
  1209. INSERT INTO `nideshop_goods_attribute` VALUES ('396', '1084003', '20', 'GB18401-2010 B类');
  1210. INSERT INTO `nideshop_goods_attribute` VALUES ('397', '1084003', '7', '1.纯棉毯采取传统针织工艺,纯天然织造的,使用前建议清洗一遍去除少量浮尘。\n2.商品为纯棉织造而成,若有少量气味请通风2-3天去除。\n3.纯棉针织盖毯清洗数次之后,可能存在微量变形,建议干洗。');
  1211. INSERT INTO `nideshop_goods_attribute` VALUES ('398', '1084003', '15', '1115g');
  1212. INSERT INTO `nideshop_goods_attribute` VALUES ('399', '1086015', '24', '本白/ 哑黑/ 姜黄');
  1213. INSERT INTO `nideshop_goods_attribute` VALUES ('400', '1086015', '5', 'GB 7000.11-2008');
  1214. INSERT INTO `nideshop_goods_attribute` VALUES ('401', '1086015', '6', '中国广东');
  1215. INSERT INTO `nideshop_goods_attribute` VALUES ('402', '1086015', '44', 'MT20290-1-130');
  1216. INSERT INTO `nideshop_goods_attribute` VALUES ('403', '1086015', '7', '本产品不含灯泡');
  1217. INSERT INTO `nideshop_goods_attribute` VALUES ('404', '1086023', '1', '100%聚酯纤维');
  1218. INSERT INTO `nideshop_goods_attribute` VALUES ('405', '1086023', '55', '锌合金');
  1219. INSERT INTO `nideshop_goods_attribute` VALUES ('406', '1086023', '56', '120cm');
  1220. INSERT INTO `nideshop_goods_attribute` VALUES ('407', '1086023', '57', '30-45cm');
  1221. INSERT INTO `nideshop_goods_attribute` VALUES ('408', '1086024', '1', '100%锦纶');
  1222. INSERT INTO `nideshop_goods_attribute` VALUES ('409', '1086024', '55', '锌合金');
  1223. INSERT INTO `nideshop_goods_attribute` VALUES ('410', '1086024', '58', '30-45cm');
  1224. INSERT INTO `nideshop_goods_attribute` VALUES ('411', '1086024', '59', '120cm');
  1225. INSERT INTO `nideshop_goods_attribute` VALUES ('412', '1086025', '1', '100%锦纶');
  1226. INSERT INTO `nideshop_goods_attribute` VALUES ('413', '1086025', '55', '锌合金');
  1227. INSERT INTO `nideshop_goods_attribute` VALUES ('414', '1086025', '56', '120cm');
  1228. INSERT INTO `nideshop_goods_attribute` VALUES ('415', '1086025', '42', 'FZ/T 63005-2010');
  1229. INSERT INTO `nideshop_goods_attribute` VALUES ('416', '1086026', '1', '100%锦纶');
  1230. INSERT INTO `nideshop_goods_attribute` VALUES ('417', '1086026', '55', '锌合金');
  1231. INSERT INTO `nideshop_goods_attribute` VALUES ('418', '1086026', '60', '30-45cm');
  1232. INSERT INTO `nideshop_goods_attribute` VALUES ('419', '1086026', '61', '120cm');
  1233. INSERT INTO `nideshop_goods_attribute` VALUES ('420', '1090004', '9', '1.5米床品: 被套 200*230cm/ 枕套:48*74cm*2/ 床笠:150*200*25cm\n1.8米床品:被套 220*240cm/ 枕套:48*74cm*2/ 床笠:180*200*25cm');
  1234. INSERT INTO `nideshop_goods_attribute` VALUES ('421', '1090004', '24', '红色格子/ 蓝色格子/ 绿色格子/ 灰色格子');
  1235. INSERT INTO `nideshop_goods_attribute` VALUES ('422', '1090004', '5', 'GB/T 22844-2009');
  1236. INSERT INTO `nideshop_goods_attribute` VALUES ('423', '1090004', '4', '色织工艺');
  1237. INSERT INTO `nideshop_goods_attribute` VALUES ('424', '1090004', '7', '1:纺织品经历印染、织造等多道环节,产品初次拿到可能有些许味道,清水漂洗、晾干后味道即可散去。 严选面料全部经过国标检测认证,选用环保活性染料,请放心使用。\n2:不同批次面料和拉链稍有差异,请以实物为准。');
  1238. INSERT INTO `nideshop_goods_attribute` VALUES ('425', '1092024', '9', '200*230cm');
  1239. INSERT INTO `nideshop_goods_attribute` VALUES ('426', '1092024', '11', '100%桑蚕丝');
  1240. INSERT INTO `nideshop_goods_attribute` VALUES ('427', '1092024', '8', '1500g');
  1241. INSERT INTO `nideshop_goods_attribute` VALUES ('428', '1092024', '62', '100%纯棉纱布');
  1242. INSERT INTO `nideshop_goods_attribute` VALUES ('429', '1092024', '5', 'GB/T 24252-2009');
  1243. INSERT INTO `nideshop_goods_attribute` VALUES ('430', '1092024', '28', 'GB 18401-2010 B类');
  1244. INSERT INTO `nideshop_goods_attribute` VALUES ('431', '1092038', '9', '470*128*13mm');
  1245. INSERT INTO `nideshop_goods_attribute` VALUES ('432', '1092038', '1', '天然桐木');
  1246. INSERT INTO `nideshop_goods_attribute` VALUES ('433', '1092038', '15', '200g');
  1247. INSERT INTO `nideshop_goods_attribute` VALUES ('434', '1092038', '24', 'GB/T 28495-2012');
  1248. INSERT INTO `nideshop_goods_attribute` VALUES ('435', '1092039', '9', '385mmX385mmX135mm');
  1249. INSERT INTO `nideshop_goods_attribute` VALUES ('436', '1092039', '15', '950g');
  1250. INSERT INTO `nideshop_goods_attribute` VALUES ('437', '1092039', '1', '美卡瓦楞纸板');
  1251. INSERT INTO `nideshop_goods_attribute` VALUES ('438', '1092039', '24', '本色');
  1252. INSERT INTO `nideshop_goods_attribute` VALUES ('439', '1093000', '1', 'PU+PE(枝干)');
  1253. INSERT INTO `nideshop_goods_attribute` VALUES ('440', '1093000', '24', '白色');
  1254. INSERT INTO `nideshop_goods_attribute` VALUES ('441', '1093000', '63', '81cm');
  1255. INSERT INTO `nideshop_goods_attribute` VALUES ('442', '1093000', '64', '木棉花');
  1256. INSERT INTO `nideshop_goods_attribute` VALUES ('443', '1093001', '1', 'PU+PE(枝干)');
  1257. INSERT INTO `nideshop_goods_attribute` VALUES ('444', '1093001', '24', '白色');
  1258. INSERT INTO `nideshop_goods_attribute` VALUES ('445', '1093001', '63', '35cm');
  1259. INSERT INTO `nideshop_goods_attribute` VALUES ('446', '1093001', '64', '马蹄莲');
  1260. INSERT INTO `nideshop_goods_attribute` VALUES ('447', '1093001', '65', '一束(9朵)');
  1261. INSERT INTO `nideshop_goods_attribute` VALUES ('448', '1093002', '1', 'PU+玻璃');
  1262. INSERT INTO `nideshop_goods_attribute` VALUES ('449', '1093002', '24', '白色');
  1263. INSERT INTO `nideshop_goods_attribute` VALUES ('450', '1093002', '63', '33cm');
  1264. INSERT INTO `nideshop_goods_attribute` VALUES ('451', '1093002', '64', '木棉花');
  1265. INSERT INTO `nideshop_goods_attribute` VALUES ('452', '1097004', '1', '北美白橡木');
  1266. INSERT INTO `nideshop_goods_attribute` VALUES ('453', '1097004', '66', '环保涂漆');
  1267. INSERT INTO `nideshop_goods_attribute` VALUES ('454', '1097004', '67', '1400/1600*820*750mm');
  1268. INSERT INTO `nideshop_goods_attribute` VALUES ('455', '1097004', '68', '需要组装');
  1269. INSERT INTO `nideshop_goods_attribute` VALUES ('456', '1097005', '1', '北美白橡木');
  1270. INSERT INTO `nideshop_goods_attribute` VALUES ('457', '1097005', '66', '环保涂漆');
  1271. INSERT INTO `nideshop_goods_attribute` VALUES ('458', '1097005', '67', '430*520*870mm');
  1272. INSERT INTO `nideshop_goods_attribute` VALUES ('459', '1097005', '68', '无需组装');
  1273. INSERT INTO `nideshop_goods_attribute` VALUES ('460', '1097006', '1', '北美白橡木');
  1274. INSERT INTO `nideshop_goods_attribute` VALUES ('461', '1097006', '66', '环保涂漆');
  1275. INSERT INTO `nideshop_goods_attribute` VALUES ('462', '1097006', '67', '600*600*550mm');
  1276. INSERT INTO `nideshop_goods_attribute` VALUES ('463', '1097006', '68', '需要组装');
  1277. INSERT INTO `nideshop_goods_attribute` VALUES ('464', '1097007', '1', '北美白橡木');
  1278. INSERT INTO `nideshop_goods_attribute` VALUES ('465', '1097007', '66', '环保涂漆');
  1279. INSERT INTO `nideshop_goods_attribute` VALUES ('466', '1097007', '67', '600*600*530/650mm');
  1280. INSERT INTO `nideshop_goods_attribute` VALUES ('467', '1097007', '68', '需要组装');
  1281. INSERT INTO `nideshop_goods_attribute` VALUES ('468', '1097009', '1', '北美白橡木+抽屉背板桐木');
  1282. INSERT INTO `nideshop_goods_attribute` VALUES ('469', '1097009', '66', '环保涂漆');
  1283. INSERT INTO `nideshop_goods_attribute` VALUES ('470', '1097009', '67', '1000/1200*580*910mm');
  1284. INSERT INTO `nideshop_goods_attribute` VALUES ('471', '1097009', '68', '需要组装');
  1285. INSERT INTO `nideshop_goods_attribute` VALUES ('472', '1097011', '1', '北美白橡木+床铺板松木');
  1286. INSERT INTO `nideshop_goods_attribute` VALUES ('473', '1097011', '66', '环保涂漆');
  1287. INSERT INTO `nideshop_goods_attribute` VALUES ('474', '1097011', '67', '2065*2188*1088mm');
  1288. INSERT INTO `nideshop_goods_attribute` VALUES ('475', '1097011', '68', '需要组装');
  1289. INSERT INTO `nideshop_goods_attribute` VALUES ('476', '1097012', '1', '北美白橡木+抽屉背板桐木');
  1290. INSERT INTO `nideshop_goods_attribute` VALUES ('477', '1097012', '66', '环保涂漆');
  1291. INSERT INTO `nideshop_goods_attribute` VALUES ('478', '1097012', '67', '480*400*550mm');
  1292. INSERT INTO `nideshop_goods_attribute` VALUES ('479', '1097012', '68', '需要组装');
  1293. INSERT INTO `nideshop_goods_attribute` VALUES ('480', '1097013', '1', '北美白橡木+抽屉背板桐木');
  1294. INSERT INTO `nideshop_goods_attribute` VALUES ('481', '1097013', '66', '环保涂漆');
  1295. INSERT INTO `nideshop_goods_attribute` VALUES ('482', '1097013', '67', '800*430*1100mm');
  1296. INSERT INTO `nideshop_goods_attribute` VALUES ('483', '1097013', '68', '需要组装');
  1297. INSERT INTO `nideshop_goods_attribute` VALUES ('484', '1097014', '1', '北美白橡木+抽屉背板桐木');
  1298. INSERT INTO `nideshop_goods_attribute` VALUES ('485', '1097014', '66', '环保涂漆');
  1299. INSERT INTO `nideshop_goods_attribute` VALUES ('486', '1097014', '67', '860*400*1200mm');
  1300. INSERT INTO `nideshop_goods_attribute` VALUES ('487', '1097014', '68', '需要组装');
  1301. INSERT INTO `nideshop_goods_attribute` VALUES ('488', '1097016', '1', '北美白橡木+抽屉背板桐木');
  1302. INSERT INTO `nideshop_goods_attribute` VALUES ('489', '1097016', '66', '环保涂漆');
  1303. INSERT INTO `nideshop_goods_attribute` VALUES ('490', '1097016', '67', '1800*450*525mm');
  1304. INSERT INTO `nideshop_goods_attribute` VALUES ('491', '1097016', '68', '需要组装');
  1305. INSERT INTO `nideshop_goods_attribute` VALUES ('492', '1097017', '1', '北美白橡木+抽屉背板桐木');
  1306. INSERT INTO `nideshop_goods_attribute` VALUES ('493', '1097017', '66', '环保涂漆');
  1307. INSERT INTO `nideshop_goods_attribute` VALUES ('494', '1097017', '67', '1200*600*450mm');
  1308. INSERT INTO `nideshop_goods_attribute` VALUES ('495', '1097017', '68', '需要组装');
  1309. INSERT INTO `nideshop_goods_attribute` VALUES ('496', '1100000', '1', '100% 棉');
  1310. INSERT INTO `nideshop_goods_attribute` VALUES ('497', '1100000', '5', 'GB/T 22796-2009');
  1311. INSERT INTO `nideshop_goods_attribute` VALUES ('498', '1100000', '24', '石板灰/ 烟褐色');
  1312. INSERT INTO `nideshop_goods_attribute` VALUES ('499', '1100000', '9', '48*74cm');
  1313. INSERT INTO `nideshop_goods_attribute` VALUES ('500', '1100000', '4', '水洗工艺');
  1314. INSERT INTO `nideshop_goods_attribute` VALUES ('501', '1100000', '6', '中国江苏');
  1315. INSERT INTO `nideshop_goods_attribute` VALUES ('502', '1100000', '7', '纺织品经历印染、织造等多道环节,产品初次拿到可能有些许味道,清水漂洗、晾干后味道即可散去。\n严选面料全部经过国标检测认证,选用环保活性染料,请放心使用。');
  1316. INSERT INTO `nideshop_goods_attribute` VALUES ('503', '1100001', '1', '100% 棉');
  1317. INSERT INTO `nideshop_goods_attribute` VALUES ('504', '1100001', '5', 'GB/T 22797-2009');
  1318. INSERT INTO `nideshop_goods_attribute` VALUES ('505', '1100001', '24', '石板灰/ 烟褐色');
  1319. INSERT INTO `nideshop_goods_attribute` VALUES ('506', '1100001', '9', '245*250cm/ 245*270cm');
  1320. INSERT INTO `nideshop_goods_attribute` VALUES ('507', '1100001', '4', '水洗工艺');
  1321. INSERT INTO `nideshop_goods_attribute` VALUES ('508', '1100001', '6', '中国江苏');
  1322. INSERT INTO `nideshop_goods_attribute` VALUES ('509', '1100001', '7', '纺织品经历印染、织造等多道环节,产品初次拿到可能有些许味道,清水漂洗、晾干后味道即可散去。\n严选面料全部经过国标检测认证,选用环保活性染料,请放心使用。');
  1323. INSERT INTO `nideshop_goods_attribute` VALUES ('510', '1100002', '1', '100%棉');
  1324. INSERT INTO `nideshop_goods_attribute` VALUES ('511', '1100002', '5', 'GB/T 22797-2009');
  1325. INSERT INTO `nideshop_goods_attribute` VALUES ('512', '1100002', '9', '150*200*25cm/ 180*200*25cm');
  1326. INSERT INTO `nideshop_goods_attribute` VALUES ('513', '1100002', '24', '石板灰/ 烟褐色');
  1327. INSERT INTO `nideshop_goods_attribute` VALUES ('514', '1100002', '6', '中国江苏');
  1328. INSERT INTO `nideshop_goods_attribute` VALUES ('515', '1100002', '4', '水洗工艺');
  1329. INSERT INTO `nideshop_goods_attribute` VALUES ('516', '1100002', '7', '纺织品经历印染、织造等多道环节,产品初次拿到可能有些许味道,清水漂洗、晾干后味道即可散去。\n严选面料全部经过国标检测认证,选用环保活性染料,请放心使用。');
  1330. INSERT INTO `nideshop_goods_attribute` VALUES ('517', '1108029', '69', '290*260*380mm');
  1331. INSERT INTO `nideshop_goods_attribute` VALUES ('518', '1108029', '48', '美耐皿树脂\n硅胶\n201不锈钢(奥氏体型)');
  1332. INSERT INTO `nideshop_goods_attribute` VALUES ('519', '1108029', '5', 'GB 9684-2011');
  1333. INSERT INTO `nideshop_goods_attribute` VALUES ('520', '1108030', '9', '177*88*51mm');
  1334. INSERT INTO `nideshop_goods_attribute` VALUES ('521', '1108030', '48', '美耐皿树脂、聚碳酸酯(pc)');
  1335. INSERT INTO `nideshop_goods_attribute` VALUES ('522', '1108030', '5', 'QB 1999-1994');
  1336. INSERT INTO `nideshop_goods_attribute` VALUES ('523', '1108031', '69', 'S 145*133*75mm\nM 187.4*172.5*97.4mm\nL 232*213*122.2mm');
  1337. INSERT INTO `nideshop_goods_attribute` VALUES ('524', '1108031', '48', '美耐皿树脂、201不锈钢(奥氏体型)');
  1338. INSERT INTO `nideshop_goods_attribute` VALUES ('525', '1108031', '5', 'GB 9684-2011');
  1339. INSERT INTO `nideshop_goods_attribute` VALUES ('526', '1108032', '69', 'S 128*88*55mm\nM 150*100*72mm');
  1340. INSERT INTO `nideshop_goods_attribute` VALUES ('527', '1108032', '48', '硅胶');
  1341. INSERT INTO `nideshop_goods_attribute` VALUES ('528', '1108032', '5', 'GB 4806.1-1994');
  1342. INSERT INTO `nideshop_goods_attribute` VALUES ('529', '1109004', '9', '10寸/12寸');
  1343. INSERT INTO `nideshop_goods_attribute` VALUES ('530', '1109004', '70', '太阳机芯');
  1344. INSERT INTO `nideshop_goods_attribute` VALUES ('531', '1109004', '1', '水柳木/胡桃木');
  1345. INSERT INTO `nideshop_goods_attribute` VALUES ('532', '1109004', '71', '5号电池*1(本产品不含电池)');
  1346. INSERT INTO `nideshop_goods_attribute` VALUES ('533', '1109005', '1', '榉木');
  1347. INSERT INTO `nideshop_goods_attribute` VALUES ('534', '1109005', '9', '12*4.5*12cm');
  1348. INSERT INTO `nideshop_goods_attribute` VALUES ('535', '1109005', '72', '扫秒机芯');
  1349. INSERT INTO `nideshop_goods_attribute` VALUES ('536', '1109005', '24', '原木色');
  1350. INSERT INTO `nideshop_goods_attribute` VALUES ('537', '1109005', '71', '5号电池*1');
  1351. INSERT INTO `nideshop_goods_attribute` VALUES ('538', '1109008', '11', '颗粒海绵');
  1352. INSERT INTO `nideshop_goods_attribute` VALUES ('539', '1109008', '73', '国际标准钢管');
  1353. INSERT INTO `nideshop_goods_attribute` VALUES ('540', '1109008', '13', '15%亚麻+85%涤');
  1354. INSERT INTO `nideshop_goods_attribute` VALUES ('541', '1109008', '24', '米白色');
  1355. INSERT INTO `nideshop_goods_attribute` VALUES ('542', '1109008', '74', '组装【沙发脚】');
  1356. INSERT INTO `nideshop_goods_attribute` VALUES ('543', '1109008', '67', '2P:1300*930*930mm; 1P:680*930*930mm; 0.5P:670*450*380mm');
  1357. INSERT INTO `nideshop_goods_attribute` VALUES ('544', '1109034', '24', '象牙白');
  1358. INSERT INTO `nideshop_goods_attribute` VALUES ('545', '1109034', '5', 'GB/T22779-2008');
  1359. INSERT INTO `nideshop_goods_attribute` VALUES ('546', '1109034', '9', '9.8 x 3.05 x 5.8cm');
  1360. INSERT INTO `nideshop_goods_attribute` VALUES ('547', '1110002', '1', 'ABS树脂+PP树脂');
  1361. INSERT INTO `nideshop_goods_attribute` VALUES ('548', '1110002', '75', '约1m');
  1362. INSERT INTO `nideshop_goods_attribute` VALUES ('549', '1110002', '9', '102mm*130mm*85mm');
  1363. INSERT INTO `nideshop_goods_attribute` VALUES ('550', '1110002', '24', '本白/冷灰/樱花粉/静谧蓝');
  1364. INSERT INTO `nideshop_goods_attribute` VALUES ('551', '1110003', '1', '100% 棉');
  1365. INSERT INTO `nideshop_goods_attribute` VALUES ('552', '1110003', '9', '1.5米床品(床笠款): 被套 200*230cm/ 枕套:48*74cm*2/ 床笠:150*200*28cm\n1.8米床品(床笠款):被套 220*240cm/ 枕套:48*74cm*2/ 床笠:180*200*28cm\n1.5米床品(床单款): 被套 200*230cm/ 枕套:48*74cm*2/ 床单:245*250cm\n1.8米床品(床单款):被套 220*240cm/ 枕套:48*74cm*2/ 床单:245*270cm');
  1366. INSERT INTO `nideshop_goods_attribute` VALUES ('553', '1110003', '5', 'GB/T22844-2009');
  1367. INSERT INTO `nideshop_goods_attribute` VALUES ('554', '1110003', '24', '烟草绿/ 木兰黄/ 深茶褐/ 丁子灰');
  1368. INSERT INTO `nideshop_goods_attribute` VALUES ('555', '1110003', '6', '中国江苏');
  1369. INSERT INTO `nideshop_goods_attribute` VALUES ('556', '1110004', '1', '100%棉');
  1370. INSERT INTO `nideshop_goods_attribute` VALUES ('557', '1110004', '9', '1.5米床品(床笠款): 被套 200*230cm/ 枕套:48*74cm*2/ 床笠:150*200*28cm\n1.8米床品(床笠款):被套 220*240cm/ 枕套:48*74cm*2/ 床笠:180*200*28cm\n1.5米床品(床单款): 被套 200*230cm/ 枕套:48*74cm*2/ 床单:245*250cm\n1.8米床品(床单款):被套 220*240cm/ 枕套:48*74cm*2/ 床单:245*270cm');
  1371. INSERT INTO `nideshop_goods_attribute` VALUES ('558', '1110004', '5', 'GB/T22844-2009');
  1372. INSERT INTO `nideshop_goods_attribute` VALUES ('559', '1110004', '24', '烟草绿/ 深茶褐/ 丁子灰/ 木兰黄/ 茶香粉');
  1373. INSERT INTO `nideshop_goods_attribute` VALUES ('560', '1110004', '6', '中国江苏');
  1374. INSERT INTO `nideshop_goods_attribute` VALUES ('561', '1110007', '1', '100% 棉');
  1375. INSERT INTO `nideshop_goods_attribute` VALUES ('562', '1110007', '9', '1.5米床品: 被套 200*230cm/ 枕套:48*74cm*2/ 床笠:150*200*28cm\n1.8米床品:被套 220*240cm/ 枕套:48*74cm*2/ 床笠:180*200*28cm');
  1376. INSERT INTO `nideshop_goods_attribute` VALUES ('563', '1110007', '5', 'GB/T 22844-2009');
  1377. INSERT INTO `nideshop_goods_attribute` VALUES ('564', '1110007', '46', '色织工艺');
  1378. INSERT INTO `nideshop_goods_attribute` VALUES ('565', '1110007', '24', '松柏绿/ 枯茶褐/ 灰白/ 石竹咖');
  1379. INSERT INTO `nideshop_goods_attribute` VALUES ('566', '1110007', '6', '中国江苏');
  1380. INSERT INTO `nideshop_goods_attribute` VALUES ('567', '1110008', '1', '100% 棉');
  1381. INSERT INTO `nideshop_goods_attribute` VALUES ('568', '1110008', '9', '1.5M床:245*250cm\n1.8M床:245*270cm');
  1382. INSERT INTO `nideshop_goods_attribute` VALUES ('569', '1110008', '24', '天蓝色/ 烟草色/ 茶香粉/ 蜜橙/ 千岁绿/ 荧光绿/ 青蓝/ 伽罗色');
  1383. INSERT INTO `nideshop_goods_attribute` VALUES ('570', '1110008', '5', 'GB 18401-2009 B类');
  1384. INSERT INTO `nideshop_goods_attribute` VALUES ('571', '1110008', '6', '中国江苏');
  1385. INSERT INTO `nideshop_goods_attribute` VALUES ('572', '1110013', '16', 'S号 最长拉伸2.5m\nM号 最长拉伸4m');
  1386. INSERT INTO `nideshop_goods_attribute` VALUES ('573', '1110013', '76', 's 15公斤以下\nm 30公斤以下');
  1387. INSERT INTO `nideshop_goods_attribute` VALUES ('574', '1110013', '48', '塑胶(ABS TPR)\n耐拉反光涤纶带\n锌合金钩');
  1388. INSERT INTO `nideshop_goods_attribute` VALUES ('575', '1110013', '5', 'Q/PM002-2016');
  1389. INSERT INTO `nideshop_goods_attribute` VALUES ('576', '1110013', '26', '符合RoHs六项检测');
  1390. INSERT INTO `nideshop_goods_attribute` VALUES ('577', '1110014', '16', 'S号 最长拉绳2.5m\nM号 最长拉伸4m');
  1391. INSERT INTO `nideshop_goods_attribute` VALUES ('578', '1110014', '76', '15-30kg');
  1392. INSERT INTO `nideshop_goods_attribute` VALUES ('579', '1110014', '1', '塑胶(ABS TPR)\n耐拉反光涤纶带\n锌合金钩');
  1393. INSERT INTO `nideshop_goods_attribute` VALUES ('580', '1110014', '24', '日式木纹色');
  1394. INSERT INTO `nideshop_goods_attribute` VALUES ('581', '1110014', '5', 'Q/PM002-2016');
  1395. INSERT INTO `nideshop_goods_attribute` VALUES ('582', '1110014', '26', '符合RoHs六项检测');
  1396. INSERT INTO `nideshop_goods_attribute` VALUES ('583', '1110015', '16', 'S号 最长拉绳2.5M');
  1397. INSERT INTO `nideshop_goods_attribute` VALUES ('584', '1110015', '76', 'S 10-15kg\nM 15-30KG');
  1398. INSERT INTO `nideshop_goods_attribute` VALUES ('585', '1110015', '48', '塑胶(ABS TPR)\n高强耐拉反光涤纶带\n锌合金钩');
  1399. INSERT INTO `nideshop_goods_attribute` VALUES ('586', '1110015', '24', '迷彩');
  1400. INSERT INTO `nideshop_goods_attribute` VALUES ('587', '1110015', '5', 'Q/PM002-2016');
  1401. INSERT INTO `nideshop_goods_attribute` VALUES ('588', '1110015', '26', '符合RoHs六项检测');
  1402. INSERT INTO `nideshop_goods_attribute` VALUES ('589', '1110016', '9', '188*98*30MM');
  1403. INSERT INTO `nideshop_goods_attribute` VALUES ('590', '1110016', '48', '塑胶(ABS PVC)硅胶');
  1404. INSERT INTO `nideshop_goods_attribute` VALUES ('591', '1110016', '24', '蓝色/粉色');
  1405. INSERT INTO `nideshop_goods_attribute` VALUES ('592', '1110016', '5', 'Q/PM001-2016');
  1406. INSERT INTO `nideshop_goods_attribute` VALUES ('593', '1110016', '26', '符合RoHs六项检测');
  1407. INSERT INTO `nideshop_goods_attribute` VALUES ('594', '1110016', '21', '合格品');
  1408. INSERT INTO `nideshop_goods_attribute` VALUES ('595', '1110016', '7', '因宠物模特选择范围有限,故让小萨出镜,其实这款更适合猫咪和小狗用哦。');
  1409. INSERT INTO `nideshop_goods_attribute` VALUES ('596', '1110017', '16', '小剪刀*1+中号理毛梳*1+针梳*1');
  1410. INSERT INTO `nideshop_goods_attribute` VALUES ('597', '1110017', '48', '合金钢、不锈钢针、塑胶(PP TPR)');
  1411. INSERT INTO `nideshop_goods_attribute` VALUES ('598', '1110017', '24', '白黑');
  1412. INSERT INTO `nideshop_goods_attribute` VALUES ('599', '1110017', '5', 'Q/PM001-2016\nQ/PM003-2016');
  1413. INSERT INTO `nideshop_goods_attribute` VALUES ('600', '1110017', '26', '符合RoHs六项检测');
  1414. INSERT INTO `nideshop_goods_attribute` VALUES ('601', '1110018', '16', '大剪刀*1+大号钢针梳*1+双排针梳*1');
  1415. INSERT INTO `nideshop_goods_attribute` VALUES ('602', '1110018', '48', '合金钢、不锈钢针、塑胶(PP TPR)');
  1416. INSERT INTO `nideshop_goods_attribute` VALUES ('603', '1110018', '24', '白黑');
  1417. INSERT INTO `nideshop_goods_attribute` VALUES ('604', '1110018', '5', 'Q/PM001-2016\nQ/PM003-2016');
  1418. INSERT INTO `nideshop_goods_attribute` VALUES ('605', '1110018', '26', '符合RoHs六项检测');
  1419. INSERT INTO `nideshop_goods_attribute` VALUES ('606', '1110019', '16', '宠物安全指甲剪+指甲锉');
  1420. INSERT INTO `nideshop_goods_attribute` VALUES ('607', '1110019', '48', '合金钢 \n塑胶(TPR)');
  1421. INSERT INTO `nideshop_goods_attribute` VALUES ('608', '1110019', '5', 'Q/PM003-2016');
  1422. INSERT INTO `nideshop_goods_attribute` VALUES ('609', '1110019', '26', '符合RoHs六项检测');
  1423. INSERT INTO `nideshop_goods_attribute` VALUES ('610', '1115023', '9', '200*230cm');
  1424. INSERT INTO `nideshop_goods_attribute` VALUES ('611', '1115023', '8', '1500g');
  1425. INSERT INTO `nideshop_goods_attribute` VALUES ('612', '1115023', '5', 'GB/T 24252-2009');
  1426. INSERT INTO `nideshop_goods_attribute` VALUES ('613', '1115023', '11', '100%桑蚕丝');
  1427. INSERT INTO `nideshop_goods_attribute` VALUES ('614', '1115023', '62', '100%纯棉纱布');
  1428. INSERT INTO `nideshop_goods_attribute` VALUES ('615', '1115023', '28', 'GB 18401-2010 B类');
  1429. INSERT INTO `nideshop_goods_attribute` VALUES ('616', '1115028', '1', '100% 棉');
  1430. INSERT INTO `nideshop_goods_attribute` VALUES ('617', '1115028', '9', '1.5米床品: 被套 200*230cm/ 枕套:48*74cm*2/ 床笠:150*200*28cm\n1.8米床品:被套 220*240cm/ 枕套:48*74cm*2/ 床笠:180*200*28cm');
  1431. INSERT INTO `nideshop_goods_attribute` VALUES ('618', '1115028', '5', 'GB/T 22844-2009');
  1432. INSERT INTO `nideshop_goods_attribute` VALUES ('619', '1115028', '46', '色织工艺');
  1433. INSERT INTO `nideshop_goods_attribute` VALUES ('620', '1115028', '24', '黑茶条纹/ 若绿条纹/ 缥蓝条纹/ 素麻条纹');
  1434. INSERT INTO `nideshop_goods_attribute` VALUES ('621', '1115028', '6', '中国江苏');
  1435. INSERT INTO `nideshop_goods_attribute` VALUES ('622', '1115052', '9', '直径50cm*高5cm');
  1436. INSERT INTO `nideshop_goods_attribute` VALUES ('623', '1115052', '1', '席面:蔺草/ 包边:65%聚酯纤维 35%棉 / 内芯:EPE');
  1437. INSERT INTO `nideshop_goods_attribute` VALUES ('624', '1115052', '5', 'QB/T 2934-2008');
  1438. INSERT INTO `nideshop_goods_attribute` VALUES ('625', '1115052', '6', '中国浙江');
  1439. INSERT INTO `nideshop_goods_attribute` VALUES ('626', '1115053', '9', '1.5米草席: 草席:150*195cm/ 枕套:48*74cm*2\n1.8米草席:草席:180*200cm/ 枕套:枕套:48*74cm*2');
  1440. INSERT INTO `nideshop_goods_attribute` VALUES ('627', '1115053', '1', '席面:蔺草/ 枕套面:蔺草/ 包边:65% 聚酯纤维 35% 棉/ 枕套背面:100% 聚酯纤维');
  1441. INSERT INTO `nideshop_goods_attribute` VALUES ('628', '1115053', '5', 'QB/T 2934-2008');
  1442. INSERT INTO `nideshop_goods_attribute` VALUES ('629', '1115053', '6', '中国浙江');
  1443. INSERT INTO `nideshop_goods_attribute` VALUES ('630', '1116030', '77', '厄瓜多尔玫瑰');
  1444. INSERT INTO `nideshop_goods_attribute` VALUES ('631', '1116030', '78', '音乐盒');
  1445. INSERT INTO `nideshop_goods_attribute` VALUES ('632', '1116030', '67', '直径10.5cm*高17cm');
  1446. INSERT INTO `nideshop_goods_attribute` VALUES ('633', '1116030', '24', '黑色花朵+粉色底座');
  1447. INSERT INTO `nideshop_goods_attribute` VALUES ('634', '1116031', '77', '厄瓜多尔玫瑰');
  1448. INSERT INTO `nideshop_goods_attribute` VALUES ('635', '1116031', '78', '音乐盒');
  1449. INSERT INTO `nideshop_goods_attribute` VALUES ('636', '1116031', '67', '直径10.5cm*高17cm');
  1450. INSERT INTO `nideshop_goods_attribute` VALUES ('637', '1116031', '24', '渐变粉花朵+灰色底座');
  1451. INSERT INTO `nideshop_goods_attribute` VALUES ('638', '1116032', '79', '铝合金+布艺');
  1452. INSERT INTO `nideshop_goods_attribute` VALUES ('639', '1116032', '11', '高回弹海绵');
  1453. INSERT INTO `nideshop_goods_attribute` VALUES ('640', '1116032', '80', '840*1250*1090mm');
  1454. INSERT INTO `nideshop_goods_attribute` VALUES ('641', '1116032', '81', '550*445*450mm');
  1455. INSERT INTO `nideshop_goods_attribute` VALUES ('642', '1116032', '68', '自行组装');
  1456. INSERT INTO `nideshop_goods_attribute` VALUES ('643', '1116032', '82', '1.周六日暂无法发货,周末订单延至周一发货,请知悉!\n2.本产品配送范围:江浙沪、安徽、山东、福建、江西、湖北、河南、北京、天津、湖南、河北、山西、陕西、重庆、四川、海南、广西、贵州、云南、广东、辽宁、甘肃、宁夏、青海、内蒙古、吉林、黑龙江、新疆、西藏(航空件)\n3.本产品配送整件,不包安装,收到货物后,请自行按照产品说明书进行组装。如果组装时碰到无法解决的问题,可联系客服获取指导。');
  1457. INSERT INTO `nideshop_goods_attribute` VALUES ('644', '1116033', '83', '高弹力进口网布');
  1458. INSERT INTO `nideshop_goods_attribute` VALUES ('645', '1116033', '84', 'PU');
  1459. INSERT INTO `nideshop_goods_attribute` VALUES ('646', '1116033', '73', '烤漆钢+工程塑料');
  1460. INSERT INTO `nideshop_goods_attribute` VALUES ('647', '1116033', '85', 'PA万向椅轮');
  1461. INSERT INTO `nideshop_goods_attribute` VALUES ('648', '1116033', '86', '三弘气压杆');
  1462. INSERT INTO `nideshop_goods_attribute` VALUES ('649', '1116033', '67', '700*700*1160mm');
  1463. INSERT INTO `nideshop_goods_attribute` VALUES ('650', '1116033', '68', '自行组装');
  1464. INSERT INTO `nideshop_goods_attribute` VALUES ('651', '1116033', '82', '1.周六日暂无法发货,周末订单延至周一发货,请知悉!\n2.本产品配送范围:江浙沪、安徽、山东、福建、江西、湖北、河南、北京、天津、湖南、河北、山西、陕西、重庆、四川、海南、广西、贵州、云南、广东、辽宁、甘肃、宁夏、青海、内蒙古、吉林、黑龙江、新疆、西藏(航空件)\n3.本产品配送整件,不包安装,收到货物后,请自行按照产品说明书进行组装。如果组装时碰到无法解决的问题,可联系客服获取指导。');
  1465. INSERT INTO `nideshop_goods_attribute` VALUES ('652', '1125016', '1', '树脂');
  1466. INSERT INTO `nideshop_goods_attribute` VALUES ('653', '1125016', '24', '黄色/蓝色');
  1467. INSERT INTO `nideshop_goods_attribute` VALUES ('654', '1125016', '9', '129mm*96mm*302mm');
  1468. INSERT INTO `nideshop_goods_attribute` VALUES ('655', '1125016', '87', '收纳型桌面摆件');
  1469. INSERT INTO `nideshop_goods_attribute` VALUES ('656', '1125017', '1', '陶瓷');
  1470. INSERT INTO `nideshop_goods_attribute` VALUES ('657', '1125017', '24', '粉色/哑黑');
  1471. INSERT INTO `nideshop_goods_attribute` VALUES ('658', '1125017', '9', '160mm*145mm*135mm');
  1472. INSERT INTO `nideshop_goods_attribute` VALUES ('659', '1125017', '87', '桌面摆件');
  1473. INSERT INTO `nideshop_goods_attribute` VALUES ('660', '1127003', '5', 'QB/T 1952.2-2011');
  1474. INSERT INTO `nideshop_goods_attribute` VALUES ('661', '1127003', '88', '独立袋装弹簧');
  1475. INSERT INTO `nideshop_goods_attribute` VALUES ('662', '1127003', '89', '卧室、榻榻米');
  1476. INSERT INTO `nideshop_goods_attribute` VALUES ('663', '1127003', '90', '进口乳胶');
  1477. INSERT INTO `nideshop_goods_attribute` VALUES ('664', '1127003', '91', '软硬质海绵');
  1478. INSERT INTO `nideshop_goods_attribute` VALUES ('665', '1127003', '92', '25cm');
  1479. INSERT INTO `nideshop_goods_attribute` VALUES ('666', '1127003', '93', '以客服回复可配送范围为准');
  1480. INSERT INTO `nideshop_goods_attribute` VALUES ('667', '1127003', '15', '150*200cm 54+-3kg\n180*200cm 62+-3kg');
  1481. INSERT INTO `nideshop_goods_attribute` VALUES ('668', '1127038', '1', '100% 棉');
  1482. INSERT INTO `nideshop_goods_attribute` VALUES ('669', '1127038', '9', '1.5米床品: 被套 200*230cm/ 枕套:48*74cm*2/ 床单:245*250cm\n1.8米床品:被套 220*240cm/ 枕套:48*74cm*2/ 床单:245*270cm');
  1483. INSERT INTO `nideshop_goods_attribute` VALUES ('670', '1127038', '24', '星空蓝');
  1484. INSERT INTO `nideshop_goods_attribute` VALUES ('671', '1127038', '5', 'GB/T 22844-2009');
  1485. INSERT INTO `nideshop_goods_attribute` VALUES ('672', '1127038', '6', '中国山东');
  1486. INSERT INTO `nideshop_goods_attribute` VALUES ('673', '1127039', '1', '100% 棉');
  1487. INSERT INTO `nideshop_goods_attribute` VALUES ('674', '1127039', '9', '1.5米床品: 被套 200*230cm/ 枕套:48*74cm*2/ 床单:245*250cm\n1.8米床品:被套 220*240cm/ 枕套:48*74cm*2/ 床单:245*270cm');
  1488. INSERT INTO `nideshop_goods_attribute` VALUES ('675', '1127039', '24', '青粉拼接');
  1489. INSERT INTO `nideshop_goods_attribute` VALUES ('676', '1127039', '5', 'GB/T 22844-2009');
  1490. INSERT INTO `nideshop_goods_attribute` VALUES ('677', '1127039', '6', '中国山东');
  1491. INSERT INTO `nideshop_goods_attribute` VALUES ('678', '1127052', '10', '100%棉');
  1492. INSERT INTO `nideshop_goods_attribute` VALUES ('679', '1127052', '11', '100%棉');
  1493. INSERT INTO `nideshop_goods_attribute` VALUES ('680', '1127052', '5', 'GB/T22796-2009');
  1494. INSERT INTO `nideshop_goods_attribute` VALUES ('681', '1127052', '28', 'GB18401-2010 A类');
  1495. INSERT INTO `nideshop_goods_attribute` VALUES ('682', '1127052', '16', '150*200cm/180*200cm');
  1496. INSERT INTO `nideshop_goods_attribute` VALUES ('683', '1128002', '9', '160*230cm');
  1497. INSERT INTO `nideshop_goods_attribute` VALUES ('684', '1128002', '24', '青粉拼接');
  1498. INSERT INTO `nideshop_goods_attribute` VALUES ('685', '1128002', '6', '中国北京');
  1499. INSERT INTO `nideshop_goods_attribute` VALUES ('686', '1128002', '1', '绒面:100% 聚酯纤维 背面:52% 聚酯纤维/ 48% 棉');
  1500. INSERT INTO `nideshop_goods_attribute` VALUES ('687', '1130037', '16', '40*40*7cm');
  1501. INSERT INTO `nideshop_goods_attribute` VALUES ('688', '1130037', '11', '100%聚酯纤维');
  1502. INSERT INTO `nideshop_goods_attribute` VALUES ('689', '1130037', '94', '330g');
  1503. INSERT INTO `nideshop_goods_attribute` VALUES ('690', '1130037', '10', '100%棉');
  1504. INSERT INTO `nideshop_goods_attribute` VALUES ('691', '1130037', '24', '米白/深褐');
  1505. INSERT INTO `nideshop_goods_attribute` VALUES ('692', '1130037', '5', 'GB/T 22843-2009');
  1506. INSERT INTO `nideshop_goods_attribute` VALUES ('693', '1130037', '28', 'GB 18401-2010 B类');
  1507. INSERT INTO `nideshop_goods_attribute` VALUES ('694', '1130038', '11', '100%聚酯纤维');
  1508. INSERT INTO `nideshop_goods_attribute` VALUES ('695', '1130038', '8', '340g/725g');
  1509. INSERT INTO `nideshop_goods_attribute` VALUES ('696', '1130038', '10', '100%聚酯纤维');
  1510. INSERT INTO `nideshop_goods_attribute` VALUES ('697', '1130038', '5', 'FZ/T 62011.3-2008');
  1511. INSERT INTO `nideshop_goods_attribute` VALUES ('698', '1130038', '26', 'GB 18401-2010 B类');
  1512. INSERT INTO `nideshop_goods_attribute` VALUES ('699', '1130038', '21', '合格品');
  1513. INSERT INTO `nideshop_goods_attribute` VALUES ('700', '1130039', '11', '100%聚酯纤维');
  1514. INSERT INTO `nideshop_goods_attribute` VALUES ('701', '1130039', '10', '100%聚酯纤维');
  1515. INSERT INTO `nideshop_goods_attribute` VALUES ('702', '1130039', '8', '170g/250g');
  1516. INSERT INTO `nideshop_goods_attribute` VALUES ('703', '1130039', '5', 'FZ/T 62011.3-2008');
  1517. INSERT INTO `nideshop_goods_attribute` VALUES ('704', '1130041', '16', '45*45cm');
  1518. INSERT INTO `nideshop_goods_attribute` VALUES ('705', '1130041', '15', '0.4-0.6kg');
  1519. INSERT INTO `nideshop_goods_attribute` VALUES ('706', '1130041', '48', '面100%羊毛皮\n衬100%聚酯纤维');
  1520. INSERT INTO `nideshop_goods_attribute` VALUES ('707', '1130041', '5', 'QB/T2972-2008');
  1521. INSERT INTO `nideshop_goods_attribute` VALUES ('708', '1130042', '16', '小号:90*50cm+-2\n双拼:180*55cm+-2');
  1522. INSERT INTO `nideshop_goods_attribute` VALUES ('709', '1130042', '15', '小号:0.6-0.9kg\n双拼:1.2-2kg');
  1523. INSERT INTO `nideshop_goods_attribute` VALUES ('710', '1130042', '48', '100%羊毛皮');
  1524. INSERT INTO `nideshop_goods_attribute` VALUES ('711', '1130042', '5', 'QB/T 2972-2008');
  1525. INSERT INTO `nideshop_goods_attribute` VALUES ('712', '1130042', '21', '一等品');
  1526. INSERT INTO `nideshop_goods_attribute` VALUES ('713', '1130042', '95', '黑色商品接触液体会有少量掉色');
  1527. INSERT INTO `nideshop_goods_attribute` VALUES ('714', '1130049', '10', '65%莱赛尔(天丝)35%亚麻');
  1528. INSERT INTO `nideshop_goods_attribute` VALUES ('715', '1130049', '11', '100%桑蚕丝');
  1529. INSERT INTO `nideshop_goods_attribute` VALUES ('716', '1130049', '5', 'GB/T 24252-2009');
  1530. INSERT INTO `nideshop_goods_attribute` VALUES ('717', '1130049', '26', 'GB 18401-2010 B类');
  1531. INSERT INTO `nideshop_goods_attribute` VALUES ('718', '1130049', '21', '合格品');
  1532. INSERT INTO `nideshop_goods_attribute` VALUES ('719', '1130049', '94', '360g(小)/470g(大)');
  1533. INSERT INTO `nideshop_goods_attribute` VALUES ('720', '1130056', '1', '席面:头层牛皮革/ 枕套面:头层牛皮革/ 枕套背面:100%聚酯纤维');
  1534. INSERT INTO `nideshop_goods_attribute` VALUES ('721', '1130056', '9', '1.5米床:牛皮席:150x200cm/ 枕套:74x48cmx2\n1.8米床:牛皮席:180x200cm/ 枕套:74x48cmx2');
  1535. INSERT INTO `nideshop_goods_attribute` VALUES ('722', '1130056', '96', '铬植结合鞣');
  1536. INSERT INTO `nideshop_goods_attribute` VALUES ('723', '1130056', '24', '苋红色/ 象牙黄/ 橄榄棕/ 亮银灰');
  1537. INSERT INTO `nideshop_goods_attribute` VALUES ('724', '1130056', '5', 'QB/T 4204-2011');
  1538. INSERT INTO `nideshop_goods_attribute` VALUES ('725', '1130056', '6', '中国重庆');
  1539. INSERT INTO `nideshop_goods_attribute` VALUES ('726', '1131017', '1', '席面:毛竹\n包边:100%棉\n背面:100%棉');
  1540. INSERT INTO `nideshop_goods_attribute` VALUES ('727', '1131017', '9', '150x195cm/ 180x200cm');
  1541. INSERT INTO `nideshop_goods_attribute` VALUES ('728', '1131017', '24', '抹茶色');
  1542. INSERT INTO `nideshop_goods_attribute` VALUES ('729', '1131017', '5', 'LY/T 1843-2009');
  1543. INSERT INTO `nideshop_goods_attribute` VALUES ('730', '1131017', '6', '中国浙江');
  1544. INSERT INTO `nideshop_goods_attribute` VALUES ('731', '1134022', '1', '绒面:100% 聚酯纤维\n背面:TPR');
  1545. INSERT INTO `nideshop_goods_attribute` VALUES ('732', '1134022', '24', '多色条纹');
  1546. INSERT INTO `nideshop_goods_attribute` VALUES ('733', '1134022', '9', '86*61cm');
  1547. INSERT INTO `nideshop_goods_attribute` VALUES ('734', '1134022', '6', '中国浙江');
  1548. INSERT INTO `nideshop_goods_attribute` VALUES ('735', '1134022', '5', 'QB/T 3000-2008');
  1549. INSERT INTO `nideshop_goods_attribute` VALUES ('736', '1134030', '69', '方形38*38*3cm\n圆形 φ38*3cm');
  1550. INSERT INTO `nideshop_goods_attribute` VALUES ('737', '1134030', '8', '方形:185g\n圆形155g');
  1551. INSERT INTO `nideshop_goods_attribute` VALUES ('738', '1134030', '10', '100%聚酯纤维');
  1552. INSERT INTO `nideshop_goods_attribute` VALUES ('739', '1134030', '5', 'GB/T 22843-2009');
  1553. INSERT INTO `nideshop_goods_attribute` VALUES ('740', '1134030', '26', 'GB18401-2010 B类');
  1554. INSERT INTO `nideshop_goods_attribute` VALUES ('741', '1134030', '21', '合格品');
  1555. INSERT INTO `nideshop_goods_attribute` VALUES ('742', '1134032', '69', '方形:380*380*30mm\n圆形:φ380*30mm');
  1556. INSERT INTO `nideshop_goods_attribute` VALUES ('743', '1134032', '11', '聚氨酯');
  1557. INSERT INTO `nideshop_goods_attribute` VALUES ('744', '1134032', '8', '方形:185g\n圆形:155g');
  1558. INSERT INTO `nideshop_goods_attribute` VALUES ('745', '1134032', '10', '100%聚酯纤维');
  1559. INSERT INTO `nideshop_goods_attribute` VALUES ('746', '1134032', '5', 'GB/T 22843-2009');
  1560. INSERT INTO `nideshop_goods_attribute` VALUES ('747', '1134032', '28', 'GB18401-2010 B类');
  1561. INSERT INTO `nideshop_goods_attribute` VALUES ('748', '1134056', '1', '70%棉,30%莫代尔');
  1562. INSERT INTO `nideshop_goods_attribute` VALUES ('749', '1134056', '9', '1.5米床品: 被套 200*230cm/ 枕套:48*74cm*2/ 床单:245*250cm\n1.8米床品:被套 220*240cm/ 枕套:48*74cm*2/ 床单:245*270cm');
  1563. INSERT INTO `nideshop_goods_attribute` VALUES ('750', '1134056', '24', '砖釉红/菡萏粉/浅豆绿/青丝灰');
  1564. INSERT INTO `nideshop_goods_attribute` VALUES ('751', '1134056', '5', 'GB/T 22844-2009');
  1565. INSERT INTO `nideshop_goods_attribute` VALUES ('752', '1134056', '6', '中国江苏');
  1566. INSERT INTO `nideshop_goods_attribute` VALUES ('753', '1135000', '1', '100%棉');
  1567. INSERT INTO `nideshop_goods_attribute` VALUES ('754', '1135000', '9', '1.5米床品: 被套 200*230cm/ 枕套:48*74cm*2/ 床单:245*250cm\n1.8米床品:被套 220*240cm/ 枕套:48*74cm*2/ 床单:245*270cm');
  1568. INSERT INTO `nideshop_goods_attribute` VALUES ('755', '1135000', '24', '蒂芙尼蓝/ 墨黑/ 亮橙/ 浅灰');
  1569. INSERT INTO `nideshop_goods_attribute` VALUES ('756', '1135000', '5', 'GB/T 22844-2009');
  1570. INSERT INTO `nideshop_goods_attribute` VALUES ('757', '1135000', '6', '中国江苏');
  1571. INSERT INTO `nideshop_goods_attribute` VALUES ('758', '1135001', '1', '100%棉');
  1572. INSERT INTO `nideshop_goods_attribute` VALUES ('759', '1135001', '9', '1.5米床品: 被套 200*230cm/ 枕套:48*74cm*2/ 床单:245*250cm\n1.8米床品:被套 220*240cm/ 枕套:48*74cm*2/ 床单:245*270cm');
  1573. INSERT INTO `nideshop_goods_attribute` VALUES ('760', '1135001', '24', '草绿色');
  1574. INSERT INTO `nideshop_goods_attribute` VALUES ('761', '1135001', '5', 'GB/T 22844-2009');
  1575. INSERT INTO `nideshop_goods_attribute` VALUES ('762', '1135001', '6', '中国江苏');
  1576. INSERT INTO `nideshop_goods_attribute` VALUES ('763', '1135002', '1', '100% 桑蚕丝');
  1577. INSERT INTO `nideshop_goods_attribute` VALUES ('764', '1135002', '9', '1.5米床品: 被套 200*230cm/ 枕套:48*74cm*2/ 床单:245*250cm\n1.8米床品:被套 220*240cm/ 枕套:48*74cm*2/ 床单:245*270cm');
  1578. INSERT INTO `nideshop_goods_attribute` VALUES ('765', '1135002', '24', '浅杏粉/ 玛瑙红/ 烟白灰');
  1579. INSERT INTO `nideshop_goods_attribute` VALUES ('766', '1135002', '6', '中国四川');
  1580. INSERT INTO `nideshop_goods_attribute` VALUES ('767', '1135002', '5', 'GB/T22796-2009');
  1581. INSERT INTO `nideshop_goods_attribute` VALUES ('768', '1135050', '97', 'PP塑料');
  1582. INSERT INTO `nideshop_goods_attribute` VALUES ('769', '1135050', '67', '52*42*40cm');
  1583. INSERT INTO `nideshop_goods_attribute` VALUES ('770', '1135050', '98', '2.105kg');
  1584. INSERT INTO `nideshop_goods_attribute` VALUES ('771', '1135050', '99', '3.215kg');
  1585. INSERT INTO `nideshop_goods_attribute` VALUES ('772', '1135050', '5', 'GB 9688-1988');
  1586. INSERT INTO `nideshop_goods_attribute` VALUES ('773', '1135050', '93', '请咨询客服');
  1587. INSERT INTO `nideshop_goods_attribute` VALUES ('774', '1135051', '1', '100% 聚酯纤维');
  1588. INSERT INTO `nideshop_goods_attribute` VALUES ('775', '1135051', '9', '1.4 x 2.6M:适用于1.4M宽以下的窗户。\n1.75 x 2.6M:适用于1.4M-1.75M宽的窗户。\n2.25 x 2.6M:适用于1.75M-2.25M宽的窗户。\n2.8 x 2.6M:适用于2.25M-2.8M宽的窗户。\n3.5 x 2.6M:适用于2.8M-3.5M宽的窗户。\n4.5 x 2.6M:适用于3.5M-4.5M宽的窗户。');
  1589. INSERT INTO `nideshop_goods_attribute` VALUES ('776', '1135051', '5', 'GB/T 19817-2005');
  1590. INSERT INTO `nideshop_goods_attribute` VALUES ('777', '1135051', '24', '米色/ 蓝灰/ 烟灰/ 咖色');
  1591. INSERT INTO `nideshop_goods_attribute` VALUES ('778', '1135051', '6', '中国浙江');
  1592. INSERT INTO `nideshop_goods_attribute` VALUES ('779', '1135051', '100', '80%左右');
  1593. INSERT INTO `nideshop_goods_attribute` VALUES ('780', '1135052', '1', '36%黏胶纤维/ 10%亚麻/ 54%聚酯纤维');
  1594. INSERT INTO `nideshop_goods_attribute` VALUES ('781', '1135052', '24', '深卡其/ 米灰/ 灰蓝/ 粉橙');
  1595. INSERT INTO `nideshop_goods_attribute` VALUES ('782', '1135052', '6', '中国浙江');
  1596. INSERT INTO `nideshop_goods_attribute` VALUES ('783', '1135052', '5', 'GB/T 19817-2005');
  1597. INSERT INTO `nideshop_goods_attribute` VALUES ('784', '1135052', '9', '1.4 x 2.6M:适用于1.4M宽以下的窗户。\n1.75 x 2.6M:适用于1.4M-1.75M宽的窗户。\n2.25 x 2.6M:适用于1.75M-2.25M宽的窗户。\n2.8 x 2.6M:适用于2.25M-2.8M宽的窗户。\n3.5 x 2.6M:适用于2.8M-3.5M宽的窗户。\n4.5 x 2.6M:适用于3.5M-4.5M宽的窗户。');
  1598. INSERT INTO `nideshop_goods_attribute` VALUES ('785', '1135052', '100', '60%-70%左右');
  1599. INSERT INTO `nideshop_goods_attribute` VALUES ('786', '1135053', '1', '47%黏胶纤维/ 53%聚酯纤维');
  1600. INSERT INTO `nideshop_goods_attribute` VALUES ('787', '1135053', '9', '1.4 x 2.6M:适用于1.4M宽以下的窗户。\n1.75 x 2.6M:适用于1.4M-1.75M宽的窗户。\n2.25 x 2.6M:适用于1.75M-2.25M宽的窗户。\n2.8 x 2.6M:适用于2.25M-2.8M宽的窗户。\n3.5 x 2.6M:适用于2.8M-3.5M宽的窗户。\n4.5 x 2.6M:适用于3.5M-4.5M宽的窗户。');
  1601. INSERT INTO `nideshop_goods_attribute` VALUES ('788', '1135053', '24', '山岩灰');
  1602. INSERT INTO `nideshop_goods_attribute` VALUES ('789', '1135053', '5', 'GB/T 19817-2005');
  1603. INSERT INTO `nideshop_goods_attribute` VALUES ('790', '1135053', '6', '中国浙江');
  1604. INSERT INTO `nideshop_goods_attribute` VALUES ('791', '1135053', '100', '70-80%左右');
  1605. INSERT INTO `nideshop_goods_attribute` VALUES ('792', '1135054', '1', '36% 聚酯纤维 74% 粘胶纤维');
  1606. INSERT INTO `nideshop_goods_attribute` VALUES ('793', '1135054', '9', '1.4 x 2.6M:适用于1.4M宽以下的窗户。\n1.75 x 2.6M:适用于1.4M-1.75M宽的窗户。\n2.25 x 2.6M:适用于1.75M-2.25M宽的窗户。\n2.8 x 2.6M:适用于2.25M-2.8M宽的窗户。\n3.5 x 2.6M:适用于2.8M-3.5M宽的窗户。\n4.5 x 2.6M:适用于3.5M-4.5M宽的窗户。');
  1607. INSERT INTO `nideshop_goods_attribute` VALUES ('794', '1135054', '24', '蓝色/ 绿色/ 黄色/ 红色');
  1608. INSERT INTO `nideshop_goods_attribute` VALUES ('795', '1135054', '5', 'GB/T 19817-2005');
  1609. INSERT INTO `nideshop_goods_attribute` VALUES ('796', '1135054', '6', '中国浙江');
  1610. INSERT INTO `nideshop_goods_attribute` VALUES ('797', '1135054', '101', '80%左右');
  1611. INSERT INTO `nideshop_goods_attribute` VALUES ('798', '1135055', '1', '52% 黏胶纤维 48%聚酯纤维');
  1612. INSERT INTO `nideshop_goods_attribute` VALUES ('799', '1135055', '9', '1.4 x 2.6M:适用于1.4M宽以下的窗户。\n1.75 x 2.6M:适用于1.4M-1.75M宽的窗户。\n2.25 x 2.6M:适用于1.75M-2.25M宽的窗户。\n2.8 x 2.6M:适用于2.25M-2.8M宽的窗户。\n3.5 x 2.6M:适用于2.8M-3.5M宽的窗户。\n4.5 x 2.6M:适用于3.5M-4.5M宽的窗户。');
  1613. INSERT INTO `nideshop_goods_attribute` VALUES ('800', '1135055', '24', '米灰几何纹/ 橙灰几何纹/ 蓝灰几何纹');
  1614. INSERT INTO `nideshop_goods_attribute` VALUES ('801', '1135055', '5', 'GB/T 19817-2005');
  1615. INSERT INTO `nideshop_goods_attribute` VALUES ('802', '1135055', '6', '中国浙江');
  1616. INSERT INTO `nideshop_goods_attribute` VALUES ('803', '1135055', '100', '70%-80%左右');
  1617. INSERT INTO `nideshop_goods_attribute` VALUES ('804', '1135056', '1', '54% 黏胶纤维/ 46%聚酯纤维');
  1618. INSERT INTO `nideshop_goods_attribute` VALUES ('805', '1135056', '9', '1.4 x 2.6M:适用于1.4M宽以下的窗户。\n1.75 x 2.6M:适用于1.4M-1.75M宽的窗户。\n2.25 x 2.6M:适用于1.75M-2.25M宽的窗户。\n2.8 x 2.6M:适用于2.25M-2.8M宽的窗户。\n3.5 x 2.6M:适用于2.8M-3.5M宽的窗户。\n4.5 x 2.6M:适用于3.5M-4.5M宽的窗户。');
  1619. INSERT INTO `nideshop_goods_attribute` VALUES ('806', '1135056', '5', 'GB/T 19817-2005');
  1620. INSERT INTO `nideshop_goods_attribute` VALUES ('807', '1135056', '24', '蓝条纹/ 粉条纹');
  1621. INSERT INTO `nideshop_goods_attribute` VALUES ('808', '1135056', '6', '中国浙江');
  1622. INSERT INTO `nideshop_goods_attribute` VALUES ('809', '1135056', '100', '60%-70%左右');
  1623. INSERT INTO `nideshop_goods_attribute` VALUES ('810', '1135057', '1', '100% 聚酯纤维');
  1624. INSERT INTO `nideshop_goods_attribute` VALUES ('811', '1135057', '9', '1.4 x 2.6M:适用于1.4M宽以下的窗户。\n1.75 x 2.6M:适用于1.4M-1.75M宽的窗户。\n2.25 x 2.6M:适用于1.75M-2.25M宽的窗户。\n2.8 x 2.6M:适用于2.25M-2.8M宽的窗户。\n3.5 x 2.6M:适用于2.8M-3.5M宽的窗户。\n4.5 x 2.6M:适用于3.5M-4.5M宽的窗户。');
  1625. INSERT INTO `nideshop_goods_attribute` VALUES ('812', '1135057', '5', 'GB/T 19817-2005');
  1626. INSERT INTO `nideshop_goods_attribute` VALUES ('813', '1135057', '24', '莹白');
  1627. INSERT INTO `nideshop_goods_attribute` VALUES ('814', '1135057', '6', '中国浙江');
  1628. INSERT INTO `nideshop_goods_attribute` VALUES ('815', '1135058', '16', '35*45cm');
  1629. INSERT INTO `nideshop_goods_attribute` VALUES ('816', '1135058', '11', '聚苯乙烯泡沫粒子');
  1630. INSERT INTO `nideshop_goods_attribute` VALUES ('817', '1135058', '8', '260g');
  1631. INSERT INTO `nideshop_goods_attribute` VALUES ('818', '1135058', '10', '100%棉');
  1632. INSERT INTO `nideshop_goods_attribute` VALUES ('819', '1135058', '5', 'GB/T 22843-2009');
  1633. INSERT INTO `nideshop_goods_attribute` VALUES ('820', '1135058', '28', 'GB 8401-2010 B类');
  1634. INSERT INTO `nideshop_goods_attribute` VALUES ('821', '1138000', '1', '面料: 96% 涤纶 4%氨纶\n填充物:100%聚酯纤维');
  1635. INSERT INTO `nideshop_goods_attribute` VALUES ('822', '1138000', '9', '直径40cm/ 直径55cm');
  1636. INSERT INTO `nideshop_goods_attribute` VALUES ('823', '1138000', '5', 'GB/T 22843-2009');
  1637. INSERT INTO `nideshop_goods_attribute` VALUES ('824', '1138000', '6', '中国浙江');
  1638. INSERT INTO `nideshop_goods_attribute` VALUES ('825', '1138000', '24', '天青色/ 松叶绿/ 珊瑚红/ 姜黄色/ 香芋粉/ 卡其色/ 深咖色/ 海军蓝');
  1639. INSERT INTO `nideshop_goods_attribute` VALUES ('826', '1138001', '1', '抱枕套:100%棉\n抱枕芯外壳:100%棉\n绣线:100%聚酯纤维\n填充:100%聚酯纤维');
  1640. INSERT INTO `nideshop_goods_attribute` VALUES ('827', '1138001', '24', '静谧蓝/ 古典金/ 动感绿/ 浪漫粉');
  1641. INSERT INTO `nideshop_goods_attribute` VALUES ('828', '1138001', '9', '45 x 45cm');
  1642. INSERT INTO `nideshop_goods_attribute` VALUES ('829', '1138001', '5', 'GB/T 22843-2009');
  1643. INSERT INTO `nideshop_goods_attribute` VALUES ('830', '1138001', '6', '中国山东');
  1644. INSERT INTO `nideshop_goods_attribute` VALUES ('831', '1143015', '1', '席面:蔺草/ 包边:100% 棉');
  1645. INSERT INTO `nideshop_goods_attribute` VALUES ('832', '1143015', '5', 'QB/T 2934-2008');
  1646. INSERT INTO `nideshop_goods_attribute` VALUES ('833', '1143015', '6', '中国浙江');
  1647. INSERT INTO `nideshop_goods_attribute` VALUES ('834', '1143015', '24', '抹茶色');
  1648. INSERT INTO `nideshop_goods_attribute` VALUES ('835', '1147045', '24', '灰黄条纹');
  1649. INSERT INTO `nideshop_goods_attribute` VALUES ('836', '1147045', '9', '160*230cm');
  1650. INSERT INTO `nideshop_goods_attribute` VALUES ('837', '1147045', '1', '绒面:100% 聚酯纤维 背面:52% 聚酯纤维/ 48% 棉');
  1651. INSERT INTO `nideshop_goods_attribute` VALUES ('838', '1147045', '6', '中国北京');
  1652. INSERT INTO `nideshop_goods_attribute` VALUES ('839', '1147046', '24', '条纹粉间');
  1653. INSERT INTO `nideshop_goods_attribute` VALUES ('840', '1147046', '9', '160*230cm');
  1654. INSERT INTO `nideshop_goods_attribute` VALUES ('841', '1147046', '1', '绒面:100% 聚酯纤维 背面:52% 聚酯纤维/ 48% 棉');
  1655. INSERT INTO `nideshop_goods_attribute` VALUES ('842', '1147046', '6', '中国北京');
  1656. INSERT INTO `nideshop_goods_attribute` VALUES ('843', '1147047', '9', '160*230cm');
  1657. INSERT INTO `nideshop_goods_attribute` VALUES ('844', '1147047', '1', '绒面:100% 聚酯纤维 背面:52% 聚酯纤维/ 48% 棉');
  1658. INSERT INTO `nideshop_goods_attribute` VALUES ('845', '1147047', '24', '蓝粉拼接');
  1659. INSERT INTO `nideshop_goods_attribute` VALUES ('846', '1147047', '6', '中国北京');
  1660. INSERT INTO `nideshop_goods_attribute` VALUES ('847', '1147048', '9', '160*230cm');
  1661. INSERT INTO `nideshop_goods_attribute` VALUES ('848', '1147048', '24', '蓝灰格');
  1662. INSERT INTO `nideshop_goods_attribute` VALUES ('849', '1147048', '1', '绒面:100% 聚酯纤维 背面:52% 聚酯纤维/ 48% 棉');
  1663. INSERT INTO `nideshop_goods_attribute` VALUES ('850', '1147048', '6', '中国北京');
  1664. INSERT INTO `nideshop_goods_attribute` VALUES ('851', '1151012', '1', '100% 棉');
  1665. INSERT INTO `nideshop_goods_attribute` VALUES ('852', '1151012', '9', '1.5米床品: 被套 200*230cm/ 枕套:48*74cm*2/ 床单:245*250cm\n1.8米床品:被套 220*240cm/ 枕套:48*74cm*2/ 床单:245*270cm');
  1666. INSERT INTO `nideshop_goods_attribute` VALUES ('853', '1151012', '24', '素雅灰');
  1667. INSERT INTO `nideshop_goods_attribute` VALUES ('854', '1151012', '5', 'GB/T 22844-2009');
  1668. INSERT INTO `nideshop_goods_attribute` VALUES ('855', '1151012', '6', '中国山东');
  1669. INSERT INTO `nideshop_goods_attribute` VALUES ('856', '1151013', '1', '100% 棉');
  1670. INSERT INTO `nideshop_goods_attribute` VALUES ('857', '1151013', '9', '1.5米床品: 被套 200*230cm/ 枕套:48*74cm*2/ 床单:245*250cm\n1.8米床品:被套 220*240cm/ 枕套:48*74cm*2/ 床单:245*270cm');
  1671. INSERT INTO `nideshop_goods_attribute` VALUES ('858', '1151013', '24', '胭脂粉');
  1672. INSERT INTO `nideshop_goods_attribute` VALUES ('859', '1151013', '5', 'GB/T 22844-2009');
  1673. INSERT INTO `nideshop_goods_attribute` VALUES ('860', '1151013', '6', '中国山东');
  1674. INSERT INTO `nideshop_goods_attribute` VALUES ('861', '1152161', '1', '12%长麻/ 12%竹浆纤维/ 76%莱赛尔');
  1675. INSERT INTO `nideshop_goods_attribute` VALUES ('862', '1152161', '9', '1.5米床品: 被套 200*230cm/ 枕套:48*74cm*2/ 床单:245*250cm\n1.8米床品:被套 220*240cm/ 枕套:48*74cm*2/ 床单:245*270cm');
  1676. INSERT INTO `nideshop_goods_attribute` VALUES ('863', '1152161', '6', '中国江苏');
  1677. INSERT INTO `nideshop_goods_attribute` VALUES ('864', '1152161', '5', 'GB/T 22844-2009');
  1678. INSERT INTO `nideshop_goods_attribute` VALUES ('865', '1155000', '1', '100% 棉');
  1679. INSERT INTO `nideshop_goods_attribute` VALUES ('866', '1155000', '9', '1.5米床品: 被套 200*230cm/ 枕套:48*74cm*2/ 床单:245*250cm\n1.8米床品:被套 220*240cm/ 枕套:48*74cm*2/ 床单:245*270cm');
  1680. INSERT INTO `nideshop_goods_attribute` VALUES ('867', '1155000', '24', '条纹绿格');
  1681. INSERT INTO `nideshop_goods_attribute` VALUES ('868', '1155000', '5', 'GB/T 22844-2009');
  1682. INSERT INTO `nideshop_goods_attribute` VALUES ('869', '1155000', '6', '中国山东');
  1683. INSERT INTO `nideshop_goods_attribute` VALUES ('870', '1181000', '16', '组合一:AB面独立弹簧床垫 进口乳胶150*200cm*1+可水洗抗菌防螨丝羽绒枕*2。\n组合二:AB面独立弹簧床垫 进口乳胶180*200cm*1+可水洗抗菌防螨丝羽绒枕*2');
  1684. INSERT INTO `nideshop_goods_attribute` VALUES ('871', '1181000', '102', '活动时间:5月8日0点-5月14日24点。\n请在以上时间段内购买,其余时间均不可享受组合装优惠。');
  1685. -- ----------------------------
  1686. -- Table structure for `nideshop_goods_gallery`
  1687. -- ----------------------------
  1688. DROP TABLE IF EXISTS `nideshop_goods_gallery`;
  1689. CREATE TABLE `nideshop_goods_gallery` (
  1690. `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '主键',
  1691. `goods_id` int(11) DEFAULT '0' COMMENT '商品id',
  1692. `img_url` longblob COMMENT '图片',
  1693. `img_desc` varchar(255) COLLATE utf8_unicode_ci DEFAULT '' COMMENT '描述',
  1694. `sort_order` int(11) DEFAULT '5' COMMENT '排序',
  1695. PRIMARY KEY (`id`),
  1696. KEY `goods_id` (`goods_id`)
  1697. ) ENGINE=InnoDB AUTO_INCREMENT=681 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
  1698. -- ----------------------------
  1699. -- Records of nideshop_goods_gallery
  1700. -- ----------------------------
  1701. INSERT INTO `nideshop_goods_gallery` VALUES ('1', '1006002', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F34656230396530386163396465353433643232393164323761366265306235342E6A7067, '', '5');
  1702. INSERT INTO `nideshop_goods_gallery` VALUES ('2', '1006002', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F30633965623831633735393464626534323830326666316562626563653531612E6A7067, '', '5');
  1703. INSERT INTO `nideshop_goods_gallery` VALUES ('3', '1006002', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F38636663376236626664323836383761623333393964613038653562613631622E6A7067, '', '5');
  1704. INSERT INTO `nideshop_goods_gallery` VALUES ('4', '1006002', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F62393863666437663139376236326162643136373933323165616532353361362E6A7067, '', '5');
  1705. INSERT INTO `nideshop_goods_gallery` VALUES ('5', '1006007', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F62376533343338633437336132393661376539666565636264343133396166352E6A7067, '', '5');
  1706. INSERT INTO `nideshop_goods_gallery` VALUES ('6', '1006007', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F37303432323031316535613938353561303732336339633038643063626262302E6A7067, '', '5');
  1707. INSERT INTO `nideshop_goods_gallery` VALUES ('7', '1006007', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F66363564626230306166663862343362653032663263383130343230383837372E6A7067, '', '5');
  1708. INSERT INTO `nideshop_goods_gallery` VALUES ('8', '1006007', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F38356538353735633865343733613266373130353465396533366231323131632E6A7067, '', '5');
  1709. INSERT INTO `nideshop_goods_gallery` VALUES ('9', '1006010', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F39623430626133303038353161663162383463613037343962616537303731382E6A7067, '', '5');
  1710. INSERT INTO `nideshop_goods_gallery` VALUES ('10', '1006010', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F66643734363562613332653233666431303731363133303664366235383063632E6A7067, '', '5');
  1711. INSERT INTO `nideshop_goods_gallery` VALUES ('11', '1006010', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F32383864633366653332333839363235313966336162643532303165343131652E6A7067, '', '5');
  1712. INSERT INTO `nideshop_goods_gallery` VALUES ('12', '1006010', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F30366362376163303939316362346561323336633832366538653666306139632E6A7067, '', '5');
  1713. INSERT INTO `nideshop_goods_gallery` VALUES ('13', '1006013', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F64383363626439656331373732373662613235383265653339336566663364622E6A7067, '', '5');
  1714. INSERT INTO `nideshop_goods_gallery` VALUES ('14', '1006013', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F62373338353263663232393339633439393561356263383939366134616664642E6A7067, '', '5');
  1715. INSERT INTO `nideshop_goods_gallery` VALUES ('15', '1006013', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F64326665313664323539653031383764366235336565663032386538343364312E6A7067, '', '5');
  1716. INSERT INTO `nideshop_goods_gallery` VALUES ('16', '1006013', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F34653866356330396165396464303362356165356231323837623539386363352E6A7067, '', '5');
  1717. INSERT INTO `nideshop_goods_gallery` VALUES ('17', '1006014', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F32323533356431373962363739366662643435613833643665636561336235302E6A7067, '', '5');
  1718. INSERT INTO `nideshop_goods_gallery` VALUES ('18', '1006014', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F36653933643764383638643931386265663031333837343866666264393435382E6A7067, '', '5');
  1719. INSERT INTO `nideshop_goods_gallery` VALUES ('19', '1006014', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F63636332316232393535373932396563393930363761343435666337346561332E6A7067, '', '5');
  1720. INSERT INTO `nideshop_goods_gallery` VALUES ('20', '1006014', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F31343739626563393362353738353538383964393361396634656566306237322E6A7067, '', '5');
  1721. INSERT INTO `nideshop_goods_gallery` VALUES ('21', '1009009', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F33336130343731346263313561343364306365383764373164316439363934612E6A7067, '', '5');
  1722. INSERT INTO `nideshop_goods_gallery` VALUES ('22', '1009009', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F65303939396532363936326236653838623035666466653962613866663634342E6A7067, '', '5');
  1723. INSERT INTO `nideshop_goods_gallery` VALUES ('23', '1009009', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F64643261666637663465646232366635653066363931653934613531633636612E6A7067, '', '5');
  1724. INSERT INTO `nideshop_goods_gallery` VALUES ('24', '1009009', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F37383035396664373862363439643339356638653537343062613865623939652E6A7067, '', '5');
  1725. INSERT INTO `nideshop_goods_gallery` VALUES ('25', '1009012', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F63326638386261666636643364396339353462663433373634396432363935342E6A7067, '', '5');
  1726. INSERT INTO `nideshop_goods_gallery` VALUES ('26', '1009012', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F33363137366562353333376335303438636634343033623134356634336263342E6A7067, '', '5');
  1727. INSERT INTO `nideshop_goods_gallery` VALUES ('27', '1009012', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F31336161653066363164383731393838363763303838616135306330303034332E6A7067, '', '5');
  1728. INSERT INTO `nideshop_goods_gallery` VALUES ('28', '1009012', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F34306538383130383765616533656635343161613133663662346539643335362E6A7067, '', '5');
  1729. INSERT INTO `nideshop_goods_gallery` VALUES ('29', '1009013', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F33346262326666303335383433326333663135653661666130643564323130342E6A7067, '', '5');
  1730. INSERT INTO `nideshop_goods_gallery` VALUES ('30', '1009013', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F35313134656233393133393730333365636133303530353565323164396362332E6A7067, '', '5');
  1731. INSERT INTO `nideshop_goods_gallery` VALUES ('31', '1009013', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F37336138363662353332313833646563373432333262306363316233363432382E6A7067, '', '5');
  1732. INSERT INTO `nideshop_goods_gallery` VALUES ('32', '1009013', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F33333161323935346638316430636665373634636264663265356236623332382E6A7067, '', '5');
  1733. INSERT INTO `nideshop_goods_gallery` VALUES ('33', '1009024', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F39343630663662333036363135343863346138363436303762666364663463612E6A7067, '', '5');
  1734. INSERT INTO `nideshop_goods_gallery` VALUES ('34', '1009024', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F61636264623438306263616431393366616437376566366334663532313932652E6A7067, '', '5');
  1735. INSERT INTO `nideshop_goods_gallery` VALUES ('35', '1009024', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F65366665623566346130393839643231326263653036386434393037363537642E6A7067, '', '5');
  1736. INSERT INTO `nideshop_goods_gallery` VALUES ('36', '1009024', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F36303539616236653130366439376332396435373233633164366631613131662E6A7067, '', '5');
  1737. INSERT INTO `nideshop_goods_gallery` VALUES ('37', '1010000', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F35373737396462636439636262393532343131323364373938663436393363322E6A7067, '', '5');
  1738. INSERT INTO `nideshop_goods_gallery` VALUES ('38', '1010000', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F36346335323131336530633563613432636433363364353835343238303131392E6A7067, '', '5');
  1739. INSERT INTO `nideshop_goods_gallery` VALUES ('39', '1010000', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F62353738353339646136663065333965623734393931653961306237346139302E6A7067, '', '5');
  1740. INSERT INTO `nideshop_goods_gallery` VALUES ('40', '1010000', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F62353434646565323430316330326539356330613762633730393630656164662E6A7067, '', '5');
  1741. INSERT INTO `nideshop_goods_gallery` VALUES ('41', '1010001', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F35616263353635643562303165386465313566613136616366353865643430652E6A7067, '', '5');
  1742. INSERT INTO `nideshop_goods_gallery` VALUES ('42', '1010001', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F33366362353738336131303263333062383138616462376266356466646535622E6A7067, '', '5');
  1743. INSERT INTO `nideshop_goods_gallery` VALUES ('43', '1010001', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F30353762656532656334633838333037376634646337313063343037363336392E6A7067, '', '5');
  1744. INSERT INTO `nideshop_goods_gallery` VALUES ('44', '1010001', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F30316132383434623438306432343536643265373634633065613266383230312E6A7067, '', '5');
  1745. INSERT INTO `nideshop_goods_gallery` VALUES ('45', '1011004', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F66376537373333313232393039383036306262616366326663366331373038622E6A7067, '', '5');
  1746. INSERT INTO `nideshop_goods_gallery` VALUES ('46', '1011004', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F32373230333833656131363838373261636338643439326465393537336363362E6A7067, '', '5');
  1747. INSERT INTO `nideshop_goods_gallery` VALUES ('47', '1011004', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F34356534633134303239363236313738343139633832663238333766353163612E6A7067, '', '5');
  1748. INSERT INTO `nideshop_goods_gallery` VALUES ('48', '1011004', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F62623663323864353032373034643563313634356430363666373962663631642E6A7067, '', '5');
  1749. INSERT INTO `nideshop_goods_gallery` VALUES ('49', '1015007', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F30313336353761356135666166386139613765336633396235626261346561632E6A7067, '', '5');
  1750. INSERT INTO `nideshop_goods_gallery` VALUES ('50', '1015007', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F64343662613939376531363334333065343337333565346164316361656666302E6A7067, '', '5');
  1751. INSERT INTO `nideshop_goods_gallery` VALUES ('51', '1015007', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F61393065353435323935643232646530333162313061656536333165343866652E6A7067, '', '5');
  1752. INSERT INTO `nideshop_goods_gallery` VALUES ('52', '1015007', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F66373138386563383731643166373231663634636265303438363061346665322E6A7067, '', '5');
  1753. INSERT INTO `nideshop_goods_gallery` VALUES ('53', '1019000', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F31323963663463383336323738323864386336383133346565643037616362612E6A7067, '', '5');
  1754. INSERT INTO `nideshop_goods_gallery` VALUES ('54', '1019000', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F31353563643136656639323161313038343965623666333533613831373131642E6A7067, '', '5');
  1755. INSERT INTO `nideshop_goods_gallery` VALUES ('55', '1019000', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F35306334346336356463383931336662633837646134643239653465313661312E6A7067, '', '5');
  1756. INSERT INTO `nideshop_goods_gallery` VALUES ('56', '1019000', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F30303766323161303432653962633434616334663434646231316535343238622E6A7067, '', '5');
  1757. INSERT INTO `nideshop_goods_gallery` VALUES ('57', '1019001', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F33353633346338353738366262353633313464663131633064626561316235372E6A7067, '', '5');
  1758. INSERT INTO `nideshop_goods_gallery` VALUES ('58', '1019001', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F63646364656533306330643839666434646566623537353339646661623436382E6A7067, '', '5');
  1759. INSERT INTO `nideshop_goods_gallery` VALUES ('59', '1019001', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F39626266626565616432653062303338663665653030326132663535363238312E6A7067, '', '5');
  1760. INSERT INTO `nideshop_goods_gallery` VALUES ('60', '1019001', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F65383665333463323664326236643663616130326364366366343033396366352E6A7067, '', '5');
  1761. INSERT INTO `nideshop_goods_gallery` VALUES ('61', '1019002', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F63353162616563623566316233616531303665646361363932316637346261382E6A7067, '', '5');
  1762. INSERT INTO `nideshop_goods_gallery` VALUES ('62', '1019002', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F32366138303433343435303230343232343264663663336433386363643364342E6A7067, '', '5');
  1763. INSERT INTO `nideshop_goods_gallery` VALUES ('63', '1019002', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F61336331316261333165373737333032626535353639623866373665616463312E6A7067, '', '5');
  1764. INSERT INTO `nideshop_goods_gallery` VALUES ('64', '1019002', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F64626232306264363830336538336230326634383830653161346632326164322E6A7067, '', '5');
  1765. INSERT INTO `nideshop_goods_gallery` VALUES ('65', '1019006', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F37643562303662663234636633343361633933396233386662386331613163372E6A7067, '', '5');
  1766. INSERT INTO `nideshop_goods_gallery` VALUES ('66', '1019006', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F33343364353532393234313765646435633339353966336666356332383032302E6A7067, '', '5');
  1767. INSERT INTO `nideshop_goods_gallery` VALUES ('67', '1019006', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F33653264363737373236613332343433636662346538326231353832396666332E6A7067, '', '5');
  1768. INSERT INTO `nideshop_goods_gallery` VALUES ('68', '1019006', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F66666638643738616531326466653534373765313636363936363462613466352E6A7067, '', '5');
  1769. INSERT INTO `nideshop_goods_gallery` VALUES ('69', '1020000', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F65313633623432353934623538393336656538353030616262386234313132632E6A7067, '', '5');
  1770. INSERT INTO `nideshop_goods_gallery` VALUES ('70', '1020000', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F31663666343161386335636461666533373535343864373765396630366437382E6A7067, '', '5');
  1771. INSERT INTO `nideshop_goods_gallery` VALUES ('71', '1020000', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F62363966643931656363316339623961613433316238646634323938613661312E6A7067, '', '5');
  1772. INSERT INTO `nideshop_goods_gallery` VALUES ('72', '1020000', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F61363231633730306434393335376134616234366336633761393766613833632E6A7067, '', '5');
  1773. INSERT INTO `nideshop_goods_gallery` VALUES ('73', '1021004', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F37303430636237653639383263336530303835373561346566323863396361322E6A7067, '', '5');
  1774. INSERT INTO `nideshop_goods_gallery` VALUES ('74', '1021004', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F32386637356466393964613639656630336431613965623538313537313433382E6A7067, '', '5');
  1775. INSERT INTO `nideshop_goods_gallery` VALUES ('75', '1021004', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F32316264666262343936626133393132323362316561333563656366363161352E6A7067, '', '5');
  1776. INSERT INTO `nideshop_goods_gallery` VALUES ('76', '1021004', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F36623030653764613233633764366462323665366437623661373631356464322E6A7067, '', '5');
  1777. INSERT INTO `nideshop_goods_gallery` VALUES ('77', '1021010', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F34623065333566393734353637653435633330373065383565323238666165302E6A7067, '', '5');
  1778. INSERT INTO `nideshop_goods_gallery` VALUES ('78', '1021010', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F62376466636364386264633937643838323361633065376566373838666662332E6A7067, '', '5');
  1779. INSERT INTO `nideshop_goods_gallery` VALUES ('79', '1021010', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F37613462356666623038616334383736343763323938386563306438313836642E6A7067, '', '5');
  1780. INSERT INTO `nideshop_goods_gallery` VALUES ('80', '1021010', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F31336632663835396434336166663366363762346438316637346238346363332E6A7067, '', '5');
  1781. INSERT INTO `nideshop_goods_gallery` VALUES ('81', '1022000', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F36316134346537343236666263333264623837616664343864383566326539392E6A7067, '', '5');
  1782. INSERT INTO `nideshop_goods_gallery` VALUES ('82', '1022000', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F61633634396139666338333332616165316336306538613130666235613737352E6A7067, '', '5');
  1783. INSERT INTO `nideshop_goods_gallery` VALUES ('83', '1022000', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F33363634653162313636623864643534643035656464363331653639363666392E6A7067, '', '5');
  1784. INSERT INTO `nideshop_goods_gallery` VALUES ('84', '1022000', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F39383964306438346435356534613737613163366461666130613362633230372E6A7067, '', '5');
  1785. INSERT INTO `nideshop_goods_gallery` VALUES ('85', '1022001', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F37633738323138376332303962656430343537656431313435363963646564662E6A7067, '', '5');
  1786. INSERT INTO `nideshop_goods_gallery` VALUES ('86', '1022001', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F30343566356632383136356533663131343466653836646462626162326261332E6A7067, '', '5');
  1787. INSERT INTO `nideshop_goods_gallery` VALUES ('87', '1022001', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F61666461373437666162313239396265343539346630306233653465333164322E6A7067, '', '5');
  1788. INSERT INTO `nideshop_goods_gallery` VALUES ('88', '1022001', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F32383630343930653033343930313663666334613661316434663537633535642E6A7067, '', '5');
  1789. INSERT INTO `nideshop_goods_gallery` VALUES ('89', '1023012', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F31383463376564386163326163346638613762333365653964343166646537372E6A7067, '', '5');
  1790. INSERT INTO `nideshop_goods_gallery` VALUES ('90', '1023012', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F34366634326466313037653265333338353033666431336334633862653132382E6A7067, '', '5');
  1791. INSERT INTO `nideshop_goods_gallery` VALUES ('91', '1023012', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F61353834663366373333646130303464363032623362653964303763333437332E6A7067, '', '5');
  1792. INSERT INTO `nideshop_goods_gallery` VALUES ('92', '1023012', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F37333334333062653134303263356536343562623430663036383262386165352E6A7067, '', '5');
  1793. INSERT INTO `nideshop_goods_gallery` VALUES ('93', '1023032', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F62626439626634306333373165356265623062333830663366343331303832662E6A7067, '', '5');
  1794. INSERT INTO `nideshop_goods_gallery` VALUES ('94', '1023032', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F32623738366661353537353632393261363434646366376236663835623164382E6A7067, '', '5');
  1795. INSERT INTO `nideshop_goods_gallery` VALUES ('95', '1023032', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F36316139323633313133363237326266313263626135336134663237656466652E6A7067, '', '5');
  1796. INSERT INTO `nideshop_goods_gallery` VALUES ('96', '1023032', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F34633336626663656139636136386531323066336161646430373262666431652E6A7067, '', '5');
  1797. INSERT INTO `nideshop_goods_gallery` VALUES ('97', '1023034', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F38633234346130303266353964663230363337663335363262373638363231652E6A7067, '', '5');
  1798. INSERT INTO `nideshop_goods_gallery` VALUES ('98', '1023034', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F63633665666432396662363366663832393936663734383737306566623364652E6A7067, '', '5');
  1799. INSERT INTO `nideshop_goods_gallery` VALUES ('99', '1023034', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F36363130346438346438303661303166663162393765666237333065613537372E6A7067, '', '5');
  1800. INSERT INTO `nideshop_goods_gallery` VALUES ('100', '1023034', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F61313662326436646330323465323463663134373263336630663738393430612E706E67, '', '5');
  1801. INSERT INTO `nideshop_goods_gallery` VALUES ('101', '1027004', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F64326539386238363435653037646234323066313934333330373963363930622E6A7067, '', '5');
  1802. INSERT INTO `nideshop_goods_gallery` VALUES ('102', '1027004', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F61333261653065373833633837646235303836383962343261636166343564352E6A7067, '', '5');
  1803. INSERT INTO `nideshop_goods_gallery` VALUES ('103', '1027004', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F30656166373337313534333566643138353733623532336365623134313235632E6A7067, '', '5');
  1804. INSERT INTO `nideshop_goods_gallery` VALUES ('104', '1027004', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F35356566386638323537383266656632336438383437396365633736393164392E6A7067, '', '5');
  1805. INSERT INTO `nideshop_goods_gallery` VALUES ('105', '1029005', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F37656630386330396337333232643963623234353238616563383830323135352E6A7067, '', '5');
  1806. INSERT INTO `nideshop_goods_gallery` VALUES ('106', '1029005', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F35383037333137633339313866316163326366303630636635393434363032662E6A7067, '', '5');
  1807. INSERT INTO `nideshop_goods_gallery` VALUES ('107', '1029005', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F38333834353339303666646263643530303931383633353665333536656536322E6A7067, '', '5');
  1808. INSERT INTO `nideshop_goods_gallery` VALUES ('108', '1029005', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F64313331656534333037373536626363373230353466396138643963396234332E6A7067, '', '5');
  1809. INSERT INTO `nideshop_goods_gallery` VALUES ('109', '1030001', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F62353765393731616230646539366531353963326538646531336466323562642E6A7067, '', '5');
  1810. INSERT INTO `nideshop_goods_gallery` VALUES ('110', '1030001', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F31653036636435633631303765333732313465613963663133656630383637362E6A7067, '', '5');
  1811. INSERT INTO `nideshop_goods_gallery` VALUES ('111', '1030001', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F61373335313336386232653164353739353863363661373232353233306232342E6A7067, '', '5');
  1812. INSERT INTO `nideshop_goods_gallery` VALUES ('112', '1030001', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F33623964373236343531636265336332643434333236313364343862633665392E6A7067, '', '5');
  1813. INSERT INTO `nideshop_goods_gallery` VALUES ('113', '1030002', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F36333039366566626436323731613432643364383330653739626639363335662E6A7067, '', '5');
  1814. INSERT INTO `nideshop_goods_gallery` VALUES ('114', '1030002', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F35303634336562626366386132343363613630393437376634333166653735612E6A7067, '', '5');
  1815. INSERT INTO `nideshop_goods_gallery` VALUES ('115', '1030002', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F62666339656137376661313137656161366265313963613733323964346339352E6A7067, '', '5');
  1816. INSERT INTO `nideshop_goods_gallery` VALUES ('116', '1030002', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F61383534303836356334386662323937663737643330636466336662343838342E6A7067, '', '5');
  1817. INSERT INTO `nideshop_goods_gallery` VALUES ('117', '1030003', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F31653061333434326562613135626366663739313132623634363261386530382E6A7067, '', '5');
  1818. INSERT INTO `nideshop_goods_gallery` VALUES ('118', '1030003', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F39373530656430663936386434633837396333373339366635333366303264632E6A7067, '', '5');
  1819. INSERT INTO `nideshop_goods_gallery` VALUES ('119', '1030003', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F37323562663661663163313439303130363833373061613035316163656365612E6A7067, '', '5');
  1820. INSERT INTO `nideshop_goods_gallery` VALUES ('120', '1030003', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F61666634313161393435363236393463626462613561343135666635646461322E6A7067, '', '5');
  1821. INSERT INTO `nideshop_goods_gallery` VALUES ('121', '1030004', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F66663731643732656137376632336336656263376637376464383861623934372E6A7067, '', '5');
  1822. INSERT INTO `nideshop_goods_gallery` VALUES ('122', '1030004', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F61383436383139623230636465373637303063336536633931373966666630332E6A7067, '', '5');
  1823. INSERT INTO `nideshop_goods_gallery` VALUES ('123', '1030004', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F38383632643730346635353930646334326335333861383531323065313532352E6A7067, '', '5');
  1824. INSERT INTO `nideshop_goods_gallery` VALUES ('124', '1030004', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F63633138326430316438336133616561326632393238313930636535323362362E6A7067, '', '5');
  1825. INSERT INTO `nideshop_goods_gallery` VALUES ('125', '1030005', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F64303165323435656165656666333630303362303833663965343834323161302E6A7067, '', '5');
  1826. INSERT INTO `nideshop_goods_gallery` VALUES ('126', '1030005', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F37316662623436353364376465333366353366386432373265656265396338652E6A7067, '', '5');
  1827. INSERT INTO `nideshop_goods_gallery` VALUES ('127', '1030005', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F36366137353063323230356234656431353938313863666566633936316433322E6A7067, '', '5');
  1828. INSERT INTO `nideshop_goods_gallery` VALUES ('128', '1030005', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F35396236656562373061333139393262316561396235666233633738316332372E6A7067, '', '5');
  1829. INSERT INTO `nideshop_goods_gallery` VALUES ('129', '1030006', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F65663232326239303132393332666137623139626566363930363931353665642E6A7067, '', '5');
  1830. INSERT INTO `nideshop_goods_gallery` VALUES ('130', '1030006', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F65333637636334386465356333666435663532626266373663623635656535612E6A7067, '', '5');
  1831. INSERT INTO `nideshop_goods_gallery` VALUES ('131', '1030006', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F33626636663664346433373363353732643734343461393335613365316533622E6A7067, '', '5');
  1832. INSERT INTO `nideshop_goods_gallery` VALUES ('132', '1030006', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F32323661396364336265643633303532653430643264653266643363376236662E6A7067, '', '5');
  1833. INSERT INTO `nideshop_goods_gallery` VALUES ('133', '1035006', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F64613236336631373136623134316466303333396561366238313736636536662E6A7067, '', '5');
  1834. INSERT INTO `nideshop_goods_gallery` VALUES ('134', '1035006', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F38373366363163393038353233626334323537613462353131653965343232662E6A7067, '', '5');
  1835. INSERT INTO `nideshop_goods_gallery` VALUES ('135', '1035006', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F65636339356366313866393964656535626665363566303136666138353335662E6A7067, '', '5');
  1836. INSERT INTO `nideshop_goods_gallery` VALUES ('136', '1035006', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F38306566313231666166303139323935633135643733656538636633353432352E6A7067, '', '5');
  1837. INSERT INTO `nideshop_goods_gallery` VALUES ('137', '1036002', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F31633361636266616136376131613230333463353364366131326238376235622E6A7067, '', '5');
  1838. INSERT INTO `nideshop_goods_gallery` VALUES ('138', '1036002', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F34393336366361633237316335363134353031363630636366326338383661362E6A7067, '', '5');
  1839. INSERT INTO `nideshop_goods_gallery` VALUES ('139', '1036002', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F36646566336535643066323264343663323066383833303466326464316632332E6A7067, '', '5');
  1840. INSERT INTO `nideshop_goods_gallery` VALUES ('140', '1036002', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F34393834346230643339306332613163663631343765383064653863326535312E6A7067, '', '5');
  1841. INSERT INTO `nideshop_goods_gallery` VALUES ('141', '1036013', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F65373864303863316333346161633633663362373366323032396361346537372E6A7067, '', '5');
  1842. INSERT INTO `nideshop_goods_gallery` VALUES ('142', '1036013', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F32396631383565313233633965316634633037356666303134646234343332342E6A7067, '', '5');
  1843. INSERT INTO `nideshop_goods_gallery` VALUES ('143', '1036013', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F62326634643065666334646331626166393461616133363731323638316461352E6A7067, '', '5');
  1844. INSERT INTO `nideshop_goods_gallery` VALUES ('144', '1036013', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F62333432313636663765346335656234613433306435323466323438656630372E6A7067, '', '5');
  1845. INSERT INTO `nideshop_goods_gallery` VALUES ('145', '1036016', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F65346364323439393131303762663566303230383737616533353664356539312E6A7067, '', '5');
  1846. INSERT INTO `nideshop_goods_gallery` VALUES ('146', '1036016', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F61393866333632366564646562353834306331616433663732623562613336382E6A7067, '', '5');
  1847. INSERT INTO `nideshop_goods_gallery` VALUES ('147', '1036016', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F32373636623039376531623962333939336366313163363863353538313633312E6A7067, '', '5');
  1848. INSERT INTO `nideshop_goods_gallery` VALUES ('148', '1036016', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F31666530373031396231613338616131666635653464613963333031363432652E6A7067, '', '5');
  1849. INSERT INTO `nideshop_goods_gallery` VALUES ('149', '1037011', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F35326531323330333431626465303131323836343563363536353066363031632E6A7067, '', '5');
  1850. INSERT INTO `nideshop_goods_gallery` VALUES ('150', '1037011', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F34396233613039366164616434626134323238643564346663303065623835662E6A7067, '', '5');
  1851. INSERT INTO `nideshop_goods_gallery` VALUES ('151', '1037011', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F30313436306139393633626465636561643739636538366337646631653930612E6A7067, '', '5');
  1852. INSERT INTO `nideshop_goods_gallery` VALUES ('152', '1037011', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F65643132613066633637656561326665633861383164643034346166323864322E6A7067, '', '5');
  1853. INSERT INTO `nideshop_goods_gallery` VALUES ('153', '1037012', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F64333765396432623662663731643461666139323932383331336162623639612E6A7067, '', '5');
  1854. INSERT INTO `nideshop_goods_gallery` VALUES ('154', '1037012', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F38616237343739306261613733356431616662613136616165353436343138302E6A7067, '', '5');
  1855. INSERT INTO `nideshop_goods_gallery` VALUES ('155', '1037012', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F32653163623465363038393962383833646431383234616439616438663664332E6A7067, '', '5');
  1856. INSERT INTO `nideshop_goods_gallery` VALUES ('156', '1037012', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F63616339316135643739353231313063646138623835376337623932373033632E6A7067, '', '5');
  1857. INSERT INTO `nideshop_goods_gallery` VALUES ('157', '1039051', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F30623839323433636139666266626332323436396135393730636231653632362E6A7067, '', '5');
  1858. INSERT INTO `nideshop_goods_gallery` VALUES ('158', '1039051', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F37336338366438336338623639313630396461646637333862316335666330342E6A7067, '', '5');
  1859. INSERT INTO `nideshop_goods_gallery` VALUES ('159', '1039051', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F63653839346638363762316533646237626137383037323634303663383666302E6A7067, '', '5');
  1860. INSERT INTO `nideshop_goods_gallery` VALUES ('160', '1039051', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F63303331313431363537656434353263386566326162373261616534363138652E6A7067, '', '5');
  1861. INSERT INTO `nideshop_goods_gallery` VALUES ('161', '1043005', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F65343864326562383439633434323638393466616433343765396238363931612E6A7067, '', '5');
  1862. INSERT INTO `nideshop_goods_gallery` VALUES ('162', '1043005', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F62313938363664636338373437346661656439653164626334366636356263632E6A7067, '', '5');
  1863. INSERT INTO `nideshop_goods_gallery` VALUES ('163', '1043005', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F31613633643166333738353037316564636334306539383434303935306637632E6A7067, '', '5');
  1864. INSERT INTO `nideshop_goods_gallery` VALUES ('164', '1043005', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F62613538393065643534656133336333383765393737336162336635353233632E6A7067, '', '5');
  1865. INSERT INTO `nideshop_goods_gallery` VALUES ('165', '1044012', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F30316366623337326261666135396466303439333363643865656162613139372E6A7067, '', '5');
  1866. INSERT INTO `nideshop_goods_gallery` VALUES ('166', '1044012', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F31393339363963663534346163363530333235653336363732653231393133372E6A7067, '', '5');
  1867. INSERT INTO `nideshop_goods_gallery` VALUES ('167', '1044012', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F65303831303066653339363964656635303332313337336263666232623061382E6A7067, '', '5');
  1868. INSERT INTO `nideshop_goods_gallery` VALUES ('168', '1044012', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F37326138626237303465393438356335313266646334383331323037656563302E6A7067, '', '5');
  1869. INSERT INTO `nideshop_goods_gallery` VALUES ('169', '1046044', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F32303238393735333336303639346332373837623364363563653933373761632E6A7067, '', '5');
  1870. INSERT INTO `nideshop_goods_gallery` VALUES ('170', '1046044', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F31376233623433653433376366653163373634373130666635643138333461352E6A7067, '', '5');
  1871. INSERT INTO `nideshop_goods_gallery` VALUES ('171', '1046044', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F31313333303836633565653539393435343566663638353837646564346362352E6A7067, '', '5');
  1872. INSERT INTO `nideshop_goods_gallery` VALUES ('172', '1046044', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F37323137373638396432346433363834643334316262333862393434363866612E6A7067, '', '5');
  1873. INSERT INTO `nideshop_goods_gallery` VALUES ('173', '1048005', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F31313264666232623064393735633864353235323330653931643062386164642E6A7067, '', '5');
  1874. INSERT INTO `nideshop_goods_gallery` VALUES ('174', '1048005', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F37666532363161383634343137633062373862636131326232303736373862352E6A7067, '', '5');
  1875. INSERT INTO `nideshop_goods_gallery` VALUES ('175', '1048005', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F64333439316632303733643331643638616631646435653035306535346566622E6A7067, '', '5');
  1876. INSERT INTO `nideshop_goods_gallery` VALUES ('176', '1048005', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F36333732316536303633613562613765323138343431656664303131303636652E6A7067, '', '5');
  1877. INSERT INTO `nideshop_goods_gallery` VALUES ('177', '1055012', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F35356432643939306637316636313831343632333866356262663336643635302E6A7067, '', '5');
  1878. INSERT INTO `nideshop_goods_gallery` VALUES ('178', '1055012', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F34363633666163616464366335306637666631316364393262336364386537612E6A7067, '', '5');
  1879. INSERT INTO `nideshop_goods_gallery` VALUES ('179', '1055012', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F31633831323366623539343733313036656238323962363030316335393730312E6A7067, '', '5');
  1880. INSERT INTO `nideshop_goods_gallery` VALUES ('180', '1055012', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F30656562343666343132333232666535393166636631333462383737633734662E6A7067, '', '5');
  1881. INSERT INTO `nideshop_goods_gallery` VALUES ('181', '1055016', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F31366665363731353235383566333036646637646531343561663731333135642E6A7067, '', '5');
  1882. INSERT INTO `nideshop_goods_gallery` VALUES ('182', '1055016', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F31616465313636313964323435623165646364323137393332316536333837622E6A7067, '', '5');
  1883. INSERT INTO `nideshop_goods_gallery` VALUES ('183', '1055016', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F36383861316633343461306438393864346566396338333466323336616464632E6A7067, '', '5');
  1884. INSERT INTO `nideshop_goods_gallery` VALUES ('184', '1055016', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F37643838303162303162316335336362646663303736373830393965626538302E6A7067, '', '5');
  1885. INSERT INTO `nideshop_goods_gallery` VALUES ('185', '1057036', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F62656331303762663063633836646366393066613038343538346436386337362E6A7067, '', '5');
  1886. INSERT INTO `nideshop_goods_gallery` VALUES ('186', '1057036', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F64356461316439303763653365356463633863663732653932356439343934622E6A7067, '', '5');
  1887. INSERT INTO `nideshop_goods_gallery` VALUES ('187', '1057036', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F32663832363631383932616662306664356566613866663334336639393431652E6A7067, '', '5');
  1888. INSERT INTO `nideshop_goods_gallery` VALUES ('188', '1057036', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F66643164396564633236316662363838343463306662363566306331613461342E6A7067, '', '5');
  1889. INSERT INTO `nideshop_goods_gallery` VALUES ('189', '1064000', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F64333739313861613731393361633662353933663331326235323134363866302E6A7067, '', '5');
  1890. INSERT INTO `nideshop_goods_gallery` VALUES ('190', '1064000', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F33316230333332306438613264393862613131386166346262396439356332372E6A7067, '', '5');
  1891. INSERT INTO `nideshop_goods_gallery` VALUES ('191', '1064000', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F63646634393239386439343263303332366235343462623463626536386665662E6A7067, '', '5');
  1892. INSERT INTO `nideshop_goods_gallery` VALUES ('192', '1064000', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F34613333343736626364343639643465393464326434303063373338646530342E6A7067, '', '5');
  1893. INSERT INTO `nideshop_goods_gallery` VALUES ('193', '1064002', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F38373461336632323664363335343663613238663737346364393234323235312E6A7067, '', '5');
  1894. INSERT INTO `nideshop_goods_gallery` VALUES ('194', '1064002', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F35653732386234303561663964333231313431363238303066666136376438622E6A7067, '', '5');
  1895. INSERT INTO `nideshop_goods_gallery` VALUES ('195', '1064002', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F65623833643439306635363466643334623138623635353833643036353864312E6A7067, '', '5');
  1896. INSERT INTO `nideshop_goods_gallery` VALUES ('196', '1064002', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F61663433343766326332333333646662663635346436623565353439663965382E6A7067, '', '5');
  1897. INSERT INTO `nideshop_goods_gallery` VALUES ('197', '1064003', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F62326465326562636565303930323133383631363132393039333734663966382E6A7067, '', '5');
  1898. INSERT INTO `nideshop_goods_gallery` VALUES ('198', '1064003', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F33623930356464363366633831623033353961323731366665326134386236352E6A7067, '', '5');
  1899. INSERT INTO `nideshop_goods_gallery` VALUES ('199', '1064003', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F64626231316639613032373762393537656537666131633832663737643062642E6A7067, '', '5');
  1900. INSERT INTO `nideshop_goods_gallery` VALUES ('200', '1064003', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F39653266366564623865646665646230336132653365366364666533376235312E6A7067, '', '5');
  1901. INSERT INTO `nideshop_goods_gallery` VALUES ('201', '1064004', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F30636536643033336133353530643239333733373030376130383830323665312E6A7067, '', '5');
  1902. INSERT INTO `nideshop_goods_gallery` VALUES ('202', '1064004', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F35313062343731313637326466326439623264383365313530356364633461332E6A7067, '', '5');
  1903. INSERT INTO `nideshop_goods_gallery` VALUES ('203', '1064004', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F64376534663037333239663966663136336165306533373531326666353664332E6A7067, '', '5');
  1904. INSERT INTO `nideshop_goods_gallery` VALUES ('204', '1064004', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F62356366623234393234336432653064373730346334623834643731653463312E6A7067, '', '5');
  1905. INSERT INTO `nideshop_goods_gallery` VALUES ('205', '1064006', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F64313239663731326338616163383833353639356636313938306336323163302E6A7067, '', '5');
  1906. INSERT INTO `nideshop_goods_gallery` VALUES ('206', '1064006', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F62346236363431323532623738646263663135373261383939356639363636642E6A7067, '', '5');
  1907. INSERT INTO `nideshop_goods_gallery` VALUES ('207', '1064006', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F31316434363661636438363832373161366236633034616138303031333233322E6A7067, '', '5');
  1908. INSERT INTO `nideshop_goods_gallery` VALUES ('208', '1064006', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F61343064303261303831623537356438643031383038616162336562323732302E6A7067, '', '5');
  1909. INSERT INTO `nideshop_goods_gallery` VALUES ('209', '1064007', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F30386433313962646438363332343230343331666633356632336233353738632E6A7067, '', '5');
  1910. INSERT INTO `nideshop_goods_gallery` VALUES ('210', '1064007', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F36376464386632333865623435396137343530393463326436636261303439392E6A7067, '', '5');
  1911. INSERT INTO `nideshop_goods_gallery` VALUES ('211', '1064007', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F62343632326233313939303833316631626663393131366365643866346535632E6A7067, '', '5');
  1912. INSERT INTO `nideshop_goods_gallery` VALUES ('212', '1064007', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F39393331343332613765303838613963643965363238333966346138633363642E6A7067, '', '5');
  1913. INSERT INTO `nideshop_goods_gallery` VALUES ('213', '1064021', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F66626531353238316638393333343033326162363965346536373531646136342E6A7067, '', '5');
  1914. INSERT INTO `nideshop_goods_gallery` VALUES ('214', '1064021', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F39393762336365656262363037646465343261313765333230613833303439352E6A7067, '', '5');
  1915. INSERT INTO `nideshop_goods_gallery` VALUES ('215', '1064021', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F34623864393737303334303863616334343165306530663437663834393464612E6A7067, '', '5');
  1916. INSERT INTO `nideshop_goods_gallery` VALUES ('216', '1064021', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F62383237643164333565363966366539366538623939383839643332326635372E6A7067, '', '5');
  1917. INSERT INTO `nideshop_goods_gallery` VALUES ('217', '1064022', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F34326232613432316464383362636632363136326230343466663336333736392E6A7067, '', '5');
  1918. INSERT INTO `nideshop_goods_gallery` VALUES ('218', '1064022', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F30653338653063316234386433363836356438333033393838363331636239632E6A7067, '', '5');
  1919. INSERT INTO `nideshop_goods_gallery` VALUES ('219', '1064022', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F34646466666364336134333464396131316336343939646438386637353837652E6A7067, '', '5');
  1920. INSERT INTO `nideshop_goods_gallery` VALUES ('220', '1064022', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F64396563346432623233313232653263323334626665633961383634636236372E6A7067, '', '5');
  1921. INSERT INTO `nideshop_goods_gallery` VALUES ('221', '1065004', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F33636132636637666366623262663262396562613232313537613633363334342E6A7067, '', '5');
  1922. INSERT INTO `nideshop_goods_gallery` VALUES ('222', '1065004', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F39356431393064316636393138376630323338356562633439333334326362382E6A7067, '', '5');
  1923. INSERT INTO `nideshop_goods_gallery` VALUES ('223', '1065004', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F39353462383463383162313337633463663135633933643231643465343934352E6A7067, '', '5');
  1924. INSERT INTO `nideshop_goods_gallery` VALUES ('224', '1065004', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F33386433653733336466396133633764633262343766343839356665333663622E6A7067, '', '5');
  1925. INSERT INTO `nideshop_goods_gallery` VALUES ('225', '1065005', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F36393038363438663065353136383336396431336538663337366237656432322E6A7067, '', '5');
  1926. INSERT INTO `nideshop_goods_gallery` VALUES ('226', '1065005', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F37626637386534623662666164383062326436346237663433653935323936322E6A7067, '', '5');
  1927. INSERT INTO `nideshop_goods_gallery` VALUES ('227', '1065005', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F33353737376431346435353561386635303235383765386438656438333330652E6A7067, '', '5');
  1928. INSERT INTO `nideshop_goods_gallery` VALUES ('228', '1065005', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F38636630333337323839313339303266363866306230383161623131386235662E6A7067, '', '5');
  1929. INSERT INTO `nideshop_goods_gallery` VALUES ('229', '1068010', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F38346436386430333064333739373132353434633164663266653564643735612E6A7067, '', '5');
  1930. INSERT INTO `nideshop_goods_gallery` VALUES ('230', '1068010', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F39373764316331366134393032643530373132613030613062323431356435352E6A7067, '', '5');
  1931. INSERT INTO `nideshop_goods_gallery` VALUES ('231', '1068010', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F34373934646561366364346266333936323662303033333563303062323235372E6A7067, '', '5');
  1932. INSERT INTO `nideshop_goods_gallery` VALUES ('232', '1068010', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F38653363353261383634356162366338336365666633373766333361353530302E6A7067, '', '5');
  1933. INSERT INTO `nideshop_goods_gallery` VALUES ('233', '1068011', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F63636436643034333536623462386661303036353962376332383761373432662E6A7067, '', '5');
  1934. INSERT INTO `nideshop_goods_gallery` VALUES ('234', '1068011', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F61336664646435626132643032396338616463323266343334366431356265322E6A7067, '', '5');
  1935. INSERT INTO `nideshop_goods_gallery` VALUES ('235', '1068011', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F61666534336563623038333964306631643931353531613335376462363561392E6A7067, '', '5');
  1936. INSERT INTO `nideshop_goods_gallery` VALUES ('236', '1068011', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F38356463623061343932656566623861363463393633343030666163343861382E6A7067, '', '5');
  1937. INSERT INTO `nideshop_goods_gallery` VALUES ('237', '1068012', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F62393964613165316632316230666539373763313730616239633036643433622E6A7067, '', '5');
  1938. INSERT INTO `nideshop_goods_gallery` VALUES ('238', '1068012', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F62626164383264363462366537613032643062316439383138396564346661322E6A7067, '', '5');
  1939. INSERT INTO `nideshop_goods_gallery` VALUES ('239', '1068012', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F65353066386533393263353064396330353338636366643435323834396536612E6A7067, '', '5');
  1940. INSERT INTO `nideshop_goods_gallery` VALUES ('240', '1068012', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F39386436616336383633633131653031366162363230646335643739633133632E6A7067, '', '5');
  1941. INSERT INTO `nideshop_goods_gallery` VALUES ('241', '1071004', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F33386263303830666161376663373166303635396438663031633237333263622E706E67, '', '5');
  1942. INSERT INTO `nideshop_goods_gallery` VALUES ('242', '1071004', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F32666235623664383137633861626539323834393962333865383566393137352E6A7067, '', '5');
  1943. INSERT INTO `nideshop_goods_gallery` VALUES ('243', '1071004', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F61376231346634313361373838306165616233336435343237336237356136312E706E67, '', '5');
  1944. INSERT INTO `nideshop_goods_gallery` VALUES ('244', '1071004', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F38366137356162333463646336646261356638363931376462666335633537332E6A7067, '', '5');
  1945. INSERT INTO `nideshop_goods_gallery` VALUES ('245', '1071005', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F38323166336539653038313136303630666566323866323466373837643035632E6A7067, '', '5');
  1946. INSERT INTO `nideshop_goods_gallery` VALUES ('246', '1071005', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F35303864386637373638653533666432653836363661313038383261653039612E6A7067, '', '5');
  1947. INSERT INTO `nideshop_goods_gallery` VALUES ('247', '1071005', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F31646636373435373630663563333530383965353432383335653665306339662E6A7067, '', '5');
  1948. INSERT INTO `nideshop_goods_gallery` VALUES ('248', '1071005', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F31303064306331383063323536396362326534623232313632306139643763612E6A7067, '', '5');
  1949. INSERT INTO `nideshop_goods_gallery` VALUES ('249', '1071006', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F31616262313239636437636162316636343639616466366263646535396133642E6A7067, '', '5');
  1950. INSERT INTO `nideshop_goods_gallery` VALUES ('250', '1071006', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F31623562323935653364666337343563303735396530656262663638336264662E6A7067, '', '5');
  1951. INSERT INTO `nideshop_goods_gallery` VALUES ('251', '1071006', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F30376238653662353565626362623535353463393966386434613433643961612E6A7067, '', '5');
  1952. INSERT INTO `nideshop_goods_gallery` VALUES ('252', '1071006', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F30376662396261643432626332336532343830333966646436316162666233312E6A7067, '', '5');
  1953. INSERT INTO `nideshop_goods_gallery` VALUES ('253', '1072000', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F37383134643830383562323235386639313661333639376263613661656138332E6A7067, '', '5');
  1954. INSERT INTO `nideshop_goods_gallery` VALUES ('254', '1072000', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F63656638396461333432393963643763656264376137336630616533633034612E6A7067, '', '5');
  1955. INSERT INTO `nideshop_goods_gallery` VALUES ('255', '1072000', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F65343634396336366464353534313837386434666635356562333939316263642E6A7067, '', '5');
  1956. INSERT INTO `nideshop_goods_gallery` VALUES ('256', '1072000', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F30653336623965333531373630373036653663313564386538326436373162622E6A7067, '', '5');
  1957. INSERT INTO `nideshop_goods_gallery` VALUES ('257', '1072001', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F63666465353330316261333933343231646332653361653731386631653164662E6A7067, '', '5');
  1958. INSERT INTO `nideshop_goods_gallery` VALUES ('258', '1072001', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F30396662316437353636663565616634613138383865393836653232643638302E6A7067, '', '5');
  1959. INSERT INTO `nideshop_goods_gallery` VALUES ('259', '1072001', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F66396365666330616532313235303533656461313133653966666334363632352E6A7067, '', '5');
  1960. INSERT INTO `nideshop_goods_gallery` VALUES ('260', '1072001', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F61303636353762323034656565633435636334303133373731316338616238372E6A7067, '', '5');
  1961. INSERT INTO `nideshop_goods_gallery` VALUES ('261', '1075023', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F64623839663837343265336264613362616530356561353663326434643662332E6A7067, '', '5');
  1962. INSERT INTO `nideshop_goods_gallery` VALUES ('262', '1075023', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F34393433646332663631393237343266323562336435336134646162396463662E6A7067, '', '5');
  1963. INSERT INTO `nideshop_goods_gallery` VALUES ('263', '1075023', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F61643032653734613035663032643164333437613334363132663637333738332E6A7067, '', '5');
  1964. INSERT INTO `nideshop_goods_gallery` VALUES ('264', '1075023', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F63663262333237373036356664386366303237666164333163633163323239302E6A7067, '', '5');
  1965. INSERT INTO `nideshop_goods_gallery` VALUES ('265', '1075024', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F32306238303939653062373333646437373265646463383637323836653465662E6A7067, '', '5');
  1966. INSERT INTO `nideshop_goods_gallery` VALUES ('266', '1075024', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F32346435376663316161656537656633346435616437343264626537316337352E6A7067, '', '5');
  1967. INSERT INTO `nideshop_goods_gallery` VALUES ('267', '1075024', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F32653963663239333032616530643134656238363736356434663034623238302E6A7067, '', '5');
  1968. INSERT INTO `nideshop_goods_gallery` VALUES ('268', '1075024', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F33326665343264623034306365626539386364616331636230336663626531302E6A7067, '', '5');
  1969. INSERT INTO `nideshop_goods_gallery` VALUES ('269', '1081000', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F61346664613937323166646134636236343466376561663865303761323666302E6A7067, '', '5');
  1970. INSERT INTO `nideshop_goods_gallery` VALUES ('270', '1081000', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F30383630313064636363393231643737663231633637643135623366343233332E6A7067, '', '5');
  1971. INSERT INTO `nideshop_goods_gallery` VALUES ('271', '1081000', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F66363532353035373336636430333461373463326463383936333764636434652E6A7067, '', '5');
  1972. INSERT INTO `nideshop_goods_gallery` VALUES ('272', '1081000', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F62623033623938666238346661396364626333656134363136633764623931352E6A7067, '', '5');
  1973. INSERT INTO `nideshop_goods_gallery` VALUES ('273', '1081002', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F37336338663866646262626166633133386564326331396637613765353138662E6A7067, '', '5');
  1974. INSERT INTO `nideshop_goods_gallery` VALUES ('274', '1081002', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F61623039326630363036313933313139386564636634373332383665666430652E6A7067, '', '5');
  1975. INSERT INTO `nideshop_goods_gallery` VALUES ('275', '1081002', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F34383831653162303736323732363661326336376432663236646231636266652E6A7067, '', '5');
  1976. INSERT INTO `nideshop_goods_gallery` VALUES ('276', '1081002', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F64303861613438343162333765663366373865663663323765303933383537612E6A7067, '', '5');
  1977. INSERT INTO `nideshop_goods_gallery` VALUES ('277', '1083009', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F31353762653836373833613063616237326163356264373364396465373961612E6A7067, '', '5');
  1978. INSERT INTO `nideshop_goods_gallery` VALUES ('278', '1083009', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F32333864333963396634396332616231383662653263646265323165626164342E6A7067, '', '5');
  1979. INSERT INTO `nideshop_goods_gallery` VALUES ('279', '1083009', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F64333631613063373266346333643862363164313530326434373837386439372E6A7067, '', '5');
  1980. INSERT INTO `nideshop_goods_gallery` VALUES ('280', '1083009', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F37663161623432386662656131356561396330326166326234346234353265312E6A7067, '', '5');
  1981. INSERT INTO `nideshop_goods_gallery` VALUES ('281', '1083010', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F64323263346434386138353234343466383266343131616238353237653139372E6A7067, '', '5');
  1982. INSERT INTO `nideshop_goods_gallery` VALUES ('282', '1083010', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F33313632373032313537333833313735336664383633356137336232313836632E6A7067, '', '5');
  1983. INSERT INTO `nideshop_goods_gallery` VALUES ('283', '1083010', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F31373264326266623261643064636364373963326533636436343535376361632E6A7067, '', '5');
  1984. INSERT INTO `nideshop_goods_gallery` VALUES ('284', '1083010', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F31366533383238643330633266636465323163353033383439636434666232372E6A7067, '', '5');
  1985. INSERT INTO `nideshop_goods_gallery` VALUES ('285', '1084001', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F38653331363039306464323632636130613466653866333762646331663161612E6A7067, '', '5');
  1986. INSERT INTO `nideshop_goods_gallery` VALUES ('286', '1084001', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F33656235373265656630663437633132356362653939353134653032316438662E6A7067, '', '5');
  1987. INSERT INTO `nideshop_goods_gallery` VALUES ('287', '1084001', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F63663837636133363761373933653235306632376138333164613765313432652E6A7067, '', '5');
  1988. INSERT INTO `nideshop_goods_gallery` VALUES ('288', '1084001', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F30653634333165383834633761666265346336343866303331376133363865622E6A7067, '', '5');
  1989. INSERT INTO `nideshop_goods_gallery` VALUES ('289', '1084003', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F34303064353735393339346564633738646238303036626264343539653931312E6A7067, '', '5');
  1990. INSERT INTO `nideshop_goods_gallery` VALUES ('290', '1084003', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F66363361633833363138633362666230306236643237333336626530343835632E6A7067, '', '5');
  1991. INSERT INTO `nideshop_goods_gallery` VALUES ('291', '1084003', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F66353536366536613262376533653930343732626564613865303537643738612E6A7067, '', '5');
  1992. INSERT INTO `nideshop_goods_gallery` VALUES ('292', '1084003', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F37343831376538363765353639646264303631333362336565616434363762342E6A7067, '', '5');
  1993. INSERT INTO `nideshop_goods_gallery` VALUES ('293', '1086015', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F39333331313538613130633739613036363365353338363563643136383965632E6A7067, '', '5');
  1994. INSERT INTO `nideshop_goods_gallery` VALUES ('294', '1086015', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F62343730363334336233383137653639306437373865356638613638613864652E6A7067, '', '5');
  1995. INSERT INTO `nideshop_goods_gallery` VALUES ('295', '1086015', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F37613834393963326465643737393061646466666239643837666334353332622E6A7067, '', '5');
  1996. INSERT INTO `nideshop_goods_gallery` VALUES ('296', '1086015', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F32383331643032626233346661626263616636303266646637613963633430392E6A7067, '', '5');
  1997. INSERT INTO `nideshop_goods_gallery` VALUES ('297', '1086023', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F35613136636538633335316565366430646338663237626564316532396531352E6A7067, '', '5');
  1998. INSERT INTO `nideshop_goods_gallery` VALUES ('298', '1086023', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F65646462353837656234623530326534616262313836656163306138313962622E6A7067, '', '5');
  1999. INSERT INTO `nideshop_goods_gallery` VALUES ('299', '1086023', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F32383834346134306663376137616437313463373936373639666135346466322E6A7067, '', '5');
  2000. INSERT INTO `nideshop_goods_gallery` VALUES ('300', '1086023', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F66363138353139386137376364366339383735386234373537663137633730332E6A7067, '', '5');
  2001. INSERT INTO `nideshop_goods_gallery` VALUES ('301', '1086024', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F34333162393532303338373833623231366238613735653133323032356561322E6A7067, '', '5');
  2002. INSERT INTO `nideshop_goods_gallery` VALUES ('302', '1086024', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F33323730346434303632613461313232346365313837323135313964363430652E6A7067, '', '5');
  2003. INSERT INTO `nideshop_goods_gallery` VALUES ('303', '1086024', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F65636337343535306166626630306133643733663462373130393330346634342E6A7067, '', '5');
  2004. INSERT INTO `nideshop_goods_gallery` VALUES ('304', '1086024', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F39623031633661306161343764653633613235353538613063323666386666322E6A7067, '', '5');
  2005. INSERT INTO `nideshop_goods_gallery` VALUES ('305', '1086025', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F37303733383434633635313361386231316136373737666463633039643161362E6A7067, '', '5');
  2006. INSERT INTO `nideshop_goods_gallery` VALUES ('306', '1086025', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F61353338313532366638353738393130383034613537343565376531663233612E6A7067, '', '5');
  2007. INSERT INTO `nideshop_goods_gallery` VALUES ('307', '1086025', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F39313066653631393430383262636638313366613634343232363133393862372E6A7067, '', '5');
  2008. INSERT INTO `nideshop_goods_gallery` VALUES ('308', '1086025', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F66663232643239386366363833353430373931336632353766333962663164352E6A7067, '', '5');
  2009. INSERT INTO `nideshop_goods_gallery` VALUES ('309', '1086026', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F37356231303336383961393537363561646130363339666335623464656531322E6A7067, '', '5');
  2010. INSERT INTO `nideshop_goods_gallery` VALUES ('310', '1086026', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F66323534643762363935616336636239613862343539333137346135653062302E6A7067, '', '5');
  2011. INSERT INTO `nideshop_goods_gallery` VALUES ('311', '1086026', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F39636639326165393035376130333438326232373433373537386334383463352E6A7067, '', '5');
  2012. INSERT INTO `nideshop_goods_gallery` VALUES ('312', '1086026', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F37373737316663323230323835356332366266353837383838333765383039372E6A7067, '', '5');
  2013. INSERT INTO `nideshop_goods_gallery` VALUES ('313', '1090004', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F66643438353232383934366566633364336235346634626636626639646439652E6A7067, '', '5');
  2014. INSERT INTO `nideshop_goods_gallery` VALUES ('314', '1090004', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F31383465633630623132633931383238326366633963386233643666646666342E6A7067, '', '5');
  2015. INSERT INTO `nideshop_goods_gallery` VALUES ('315', '1090004', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F36333935323032346166303337396135336165383835313362383761366134372E6A7067, '', '5');
  2016. INSERT INTO `nideshop_goods_gallery` VALUES ('316', '1090004', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F31313830663666643433333539663231366339623961663633333966313766322E6A7067, '', '5');
  2017. INSERT INTO `nideshop_goods_gallery` VALUES ('317', '1092024', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F39633432613662616334333830643739643464636362363861633262346263632E6A7067, '', '5');
  2018. INSERT INTO `nideshop_goods_gallery` VALUES ('318', '1092024', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F31386638363431396431663236353937303837613939396233653533396235302E6A7067, '', '5');
  2019. INSERT INTO `nideshop_goods_gallery` VALUES ('319', '1092024', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F32636361383131313064356139616534613031326162363962383661323234362E6A7067, '', '5');
  2020. INSERT INTO `nideshop_goods_gallery` VALUES ('320', '1092024', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F63303066636432306534313437653366356233326462343731363165616538312E6A7067, '', '5');
  2021. INSERT INTO `nideshop_goods_gallery` VALUES ('321', '1092038', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F63363637353464373634336632613234333661656531313935616430313235312E6A7067, '', '5');
  2022. INSERT INTO `nideshop_goods_gallery` VALUES ('322', '1092038', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F38306662623635643135353230393230333236653966636438383163393732352E6A7067, '', '5');
  2023. INSERT INTO `nideshop_goods_gallery` VALUES ('323', '1092038', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F66663265653536633165626462323238353931393530333634663230396662312E6A7067, '', '5');
  2024. INSERT INTO `nideshop_goods_gallery` VALUES ('324', '1092038', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F64613534316434393634633634613430363563653136663038646131363263312E6A7067, '', '5');
  2025. INSERT INTO `nideshop_goods_gallery` VALUES ('325', '1092039', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F62353061396132356134626365356535656435333364666262373961323239312E6A7067, '', '5');
  2026. INSERT INTO `nideshop_goods_gallery` VALUES ('326', '1092039', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F63666237346162386330393465663764366561383136393163636263643732622E6A7067, '', '5');
  2027. INSERT INTO `nideshop_goods_gallery` VALUES ('327', '1092039', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F64353565633131666239663366643864373432376465316534653539376362652E6A7067, '', '5');
  2028. INSERT INTO `nideshop_goods_gallery` VALUES ('328', '1092039', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F39653138323164303739333463373137633366663861303331653537656534382E6A7067, '', '5');
  2029. INSERT INTO `nideshop_goods_gallery` VALUES ('329', '1093000', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F65353134333031346163616631383331303037633361393065623466326564382E6A7067, '', '5');
  2030. INSERT INTO `nideshop_goods_gallery` VALUES ('330', '1093000', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F37306466666539623166353635653537383636633864326362616166333566632E6A7067, '', '5');
  2031. INSERT INTO `nideshop_goods_gallery` VALUES ('331', '1093000', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F38643431313235396537616639623337663835393835386235636439303237612E6A7067, '', '5');
  2032. INSERT INTO `nideshop_goods_gallery` VALUES ('332', '1093000', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F35643436376133346539373866393961643561333662356366663764653764392E6A7067, '', '5');
  2033. INSERT INTO `nideshop_goods_gallery` VALUES ('333', '1093001', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F31626662613939333834333537333932663930636430366136336431663135322E6A7067, '', '5');
  2034. INSERT INTO `nideshop_goods_gallery` VALUES ('334', '1093001', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F39643962313463383965646438656266656238383662376165643830653739632E6A7067, '', '5');
  2035. INSERT INTO `nideshop_goods_gallery` VALUES ('335', '1093001', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F33616666396138386236373030336530386562653266373563336537316165642E6A7067, '', '5');
  2036. INSERT INTO `nideshop_goods_gallery` VALUES ('336', '1093001', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F65656534636366626137356239393164366663346233613235656532353362642E6A7067, '', '5');
  2037. INSERT INTO `nideshop_goods_gallery` VALUES ('337', '1093002', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F33323737363265653435353966623738636139396264666563346261323934312E6A7067, '', '5');
  2038. INSERT INTO `nideshop_goods_gallery` VALUES ('338', '1093002', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F36333031346661303564313862336238643331326333373634366163373863352E6A7067, '', '5');
  2039. INSERT INTO `nideshop_goods_gallery` VALUES ('339', '1093002', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F30633635353466613739373761623561666239343035303533663034383835632E6A7067, '', '5');
  2040. INSERT INTO `nideshop_goods_gallery` VALUES ('340', '1093002', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F37633933343061383839353031393037653533313561353732656230626339662E6A7067, '', '5');
  2041. INSERT INTO `nideshop_goods_gallery` VALUES ('341', '1097004', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F64656139306537633330386262316264396539323663666265343933663234332E6A7067, '', '5');
  2042. INSERT INTO `nideshop_goods_gallery` VALUES ('342', '1097004', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F33303866616238383362623261373261646163306537323461336439616162642E6A7067, '', '5');
  2043. INSERT INTO `nideshop_goods_gallery` VALUES ('343', '1097004', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F33643133626133383966336265323630633933306635383235343562396435642E6A7067, '', '5');
  2044. INSERT INTO `nideshop_goods_gallery` VALUES ('344', '1097004', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F35323431373561623664353031343434616330336362306338393936336361302E6A7067, '', '5');
  2045. INSERT INTO `nideshop_goods_gallery` VALUES ('345', '1097005', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F33646364373463383939393937336131616363393561646262333665303363362E6A7067, '', '5');
  2046. INSERT INTO `nideshop_goods_gallery` VALUES ('346', '1097005', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F38306464613465363566316439373733323631313333646366303339663761662E6A7067, '', '5');
  2047. INSERT INTO `nideshop_goods_gallery` VALUES ('347', '1097005', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F39396536303131636434613630353338653139356630303663356161613134392E6A7067, '', '5');
  2048. INSERT INTO `nideshop_goods_gallery` VALUES ('348', '1097005', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F30313632666265353931663232393937626166323732333762396433663263352E6A7067, '', '5');
  2049. INSERT INTO `nideshop_goods_gallery` VALUES ('349', '1097006', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F61643261303466646237373461623437643062356233646565393633643732332E6A7067, '', '5');
  2050. INSERT INTO `nideshop_goods_gallery` VALUES ('350', '1097006', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F62616261623835373262376338386164373734616237306266616434613834612E6A7067, '', '5');
  2051. INSERT INTO `nideshop_goods_gallery` VALUES ('351', '1097006', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F36353238343139656661636461653130626339653434613763373363363438392E6A7067, '', '5');
  2052. INSERT INTO `nideshop_goods_gallery` VALUES ('352', '1097006', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F33383937386131313635646465366238356435623938393130336139356232362E6A7067, '', '5');
  2053. INSERT INTO `nideshop_goods_gallery` VALUES ('353', '1097007', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F39326264313235306338613337353435313464376432343133623134306536662E6A7067, '', '5');
  2054. INSERT INTO `nideshop_goods_gallery` VALUES ('354', '1097007', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F61333830373761386237663266393733653036393066346136346138346465612E6A7067, '', '5');
  2055. INSERT INTO `nideshop_goods_gallery` VALUES ('355', '1097007', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F32363064616432376530313766623264393966633431343636656434333037392E6A7067, '', '5');
  2056. INSERT INTO `nideshop_goods_gallery` VALUES ('356', '1097007', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F63316237343833316466396266373865623836366663363936363964636638302E6A7067, '', '5');
  2057. INSERT INTO `nideshop_goods_gallery` VALUES ('357', '1097009', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F61666465313037323166613564363030346639386131653361346639316462382E6A7067, '', '5');
  2058. INSERT INTO `nideshop_goods_gallery` VALUES ('358', '1097009', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F66313036363931363762366162363032303634303435653063343133346166642E6A7067, '', '5');
  2059. INSERT INTO `nideshop_goods_gallery` VALUES ('359', '1097009', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F35653061623333663638343963383930666363653263336536316661336663322E6A7067, '', '5');
  2060. INSERT INTO `nideshop_goods_gallery` VALUES ('360', '1097009', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F61353134343633653839303864663839636232353731396164376561613037372E6A7067, '', '5');
  2061. INSERT INTO `nideshop_goods_gallery` VALUES ('361', '1097011', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F31383138393765393934326362353333313434326535663662396465653836332E6A7067, '', '5');
  2062. INSERT INTO `nideshop_goods_gallery` VALUES ('362', '1097011', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F33303364656163636432623436376162306163373936333438646132663663322E6A7067, '', '5');
  2063. INSERT INTO `nideshop_goods_gallery` VALUES ('363', '1097011', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F38366266393136646437366535613835356662633861613439643435353762322E6A7067, '', '5');
  2064. INSERT INTO `nideshop_goods_gallery` VALUES ('364', '1097011', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F31613733343835326562636361306130613332386638326231356265326364382E6A7067, '', '5');
  2065. INSERT INTO `nideshop_goods_gallery` VALUES ('365', '1097012', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F30316235623434343631356233343263353534643232633538643034346533352E6A7067, '', '5');
  2066. INSERT INTO `nideshop_goods_gallery` VALUES ('366', '1097012', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F39306562343335663563306534663938393737613463316665613362643533372E6A7067, '', '5');
  2067. INSERT INTO `nideshop_goods_gallery` VALUES ('367', '1097012', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F38643939323263316632613363656139316630623565383038636139323435642E6A7067, '', '5');
  2068. INSERT INTO `nideshop_goods_gallery` VALUES ('368', '1097012', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F38396565313064303637383963646132396136393734343663303134656637302E6A7067, '', '5');
  2069. INSERT INTO `nideshop_goods_gallery` VALUES ('369', '1097013', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F33393764666231323833333663393035343735333137396130346263666239642E6A7067, '', '5');
  2070. INSERT INTO `nideshop_goods_gallery` VALUES ('370', '1097013', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F61363638656135313430383962363832353734333434343133326537633061622E6A7067, '', '5');
  2071. INSERT INTO `nideshop_goods_gallery` VALUES ('371', '1097013', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F63646363653866346132386664623636663133316639363030353566666661342E6A7067, '', '5');
  2072. INSERT INTO `nideshop_goods_gallery` VALUES ('372', '1097013', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F63663335626462343133353464613632343366303864306538383665623739362E6A7067, '', '5');
  2073. INSERT INTO `nideshop_goods_gallery` VALUES ('373', '1097014', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F37353662396164383136386236663035666165643930663031306364646331332E6A7067, '', '5');
  2074. INSERT INTO `nideshop_goods_gallery` VALUES ('374', '1097014', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F33623936336632643561643963636266313737353363636164643164343662372E6A7067, '', '5');
  2075. INSERT INTO `nideshop_goods_gallery` VALUES ('375', '1097014', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F65666431636366646434366132663430663965383235613664343334383235322E6A7067, '', '5');
  2076. INSERT INTO `nideshop_goods_gallery` VALUES ('376', '1097014', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F37666135646337633038643761316236646133663137303239613933623933642E6A7067, '', '5');
  2077. INSERT INTO `nideshop_goods_gallery` VALUES ('377', '1097016', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F33663865616561303864653432363031633466626262663434663537613531662E6A7067, '', '5');
  2078. INSERT INTO `nideshop_goods_gallery` VALUES ('378', '1097016', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F62613039386632336562376532316563663532346237663838333364313137662E6A7067, '', '5');
  2079. INSERT INTO `nideshop_goods_gallery` VALUES ('379', '1097016', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F63353639626337303238323436326361653863663934383631323432396233332E6A7067, '', '5');
  2080. INSERT INTO `nideshop_goods_gallery` VALUES ('380', '1097016', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F61356133653463303832353735313937373930303833386162613735646639302E6A7067, '', '5');
  2081. INSERT INTO `nideshop_goods_gallery` VALUES ('381', '1097017', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F34393733656135613130663263353263613265326434313666316537383938642E6A7067, '', '5');
  2082. INSERT INTO `nideshop_goods_gallery` VALUES ('382', '1097017', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F35363939336534373634636534636462363436396264346439363339323961612E6A7067, '', '5');
  2083. INSERT INTO `nideshop_goods_gallery` VALUES ('383', '1097017', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F32323830376335613235653064386434396664343664613134336331623233662E6A7067, '', '5');
  2084. INSERT INTO `nideshop_goods_gallery` VALUES ('384', '1097017', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F32623162386365353165316634316430373361356566393830656635383837632E6A7067, '', '5');
  2085. INSERT INTO `nideshop_goods_gallery` VALUES ('385', '1100000', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F36366264323366326435323031393563343837636636616662653165316638322E6A7067, '', '5');
  2086. INSERT INTO `nideshop_goods_gallery` VALUES ('386', '1100000', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F31656533353461376533636635386136333137666365643431303763643661312E6A7067, '', '5');
  2087. INSERT INTO `nideshop_goods_gallery` VALUES ('387', '1100000', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F37343139623062663535353463336631376665356439393964373739353535652E6A7067, '', '5');
  2088. INSERT INTO `nideshop_goods_gallery` VALUES ('388', '1100000', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F64386637346137633938333630323436313861333232623164613966343130662E6A7067, '', '5');
  2089. INSERT INTO `nideshop_goods_gallery` VALUES ('389', '1100001', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F32323934383430376237396266396366363763333966313131666239303234622E6A7067, '', '5');
  2090. INSERT INTO `nideshop_goods_gallery` VALUES ('390', '1100001', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F31346439656661316266626539643037343765393530626237346661303765372E6A7067, '', '5');
  2091. INSERT INTO `nideshop_goods_gallery` VALUES ('391', '1100001', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F34366266333039653565626333336633386431393935376639663236363466332E6A7067, '', '5');
  2092. INSERT INTO `nideshop_goods_gallery` VALUES ('392', '1100001', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F64653530393362353335333235393630346236383431386665353863366365612E6A7067, '', '5');
  2093. INSERT INTO `nideshop_goods_gallery` VALUES ('393', '1100002', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F62326635666435353737643037613639653466346638393139313332393031642E6A7067, '', '5');
  2094. INSERT INTO `nideshop_goods_gallery` VALUES ('394', '1100002', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F66623762383036343365306263333061373836383861393634633361656535372E6A7067, '', '5');
  2095. INSERT INTO `nideshop_goods_gallery` VALUES ('395', '1100002', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F33393365383438663164613035323738346566653737663536356238366462622E6A7067, '', '5');
  2096. INSERT INTO `nideshop_goods_gallery` VALUES ('396', '1100002', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F38663465643838623735353035383664653635396137363762623430393739392E6A7067, '', '5');
  2097. INSERT INTO `nideshop_goods_gallery` VALUES ('397', '1108029', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F30633864663937313734386339653834373539646261636166386236643162392E6A7067, '', '5');
  2098. INSERT INTO `nideshop_goods_gallery` VALUES ('398', '1108029', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F38373034383164323632393235363231346434303463623432616630306362632E6A7067, '', '5');
  2099. INSERT INTO `nideshop_goods_gallery` VALUES ('399', '1108029', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F34336639346134663738633737303738313934663838323533346337336464312E6A7067, '', '5');
  2100. INSERT INTO `nideshop_goods_gallery` VALUES ('400', '1108029', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F62386630306266393239343061306636356432353164663931616662353836622E6A7067, '', '5');
  2101. INSERT INTO `nideshop_goods_gallery` VALUES ('401', '1108030', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F31333962376265383361303634656161356639396665656561343437323966642E6A7067, '', '5');
  2102. INSERT INTO `nideshop_goods_gallery` VALUES ('402', '1108030', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F61643637353735333537383362626262613232333235393433636161643836322E6A7067, '', '5');
  2103. INSERT INTO `nideshop_goods_gallery` VALUES ('403', '1108030', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F33353238623065633430323635373539333731343035343135623734633733342E6A7067, '', '5');
  2104. INSERT INTO `nideshop_goods_gallery` VALUES ('404', '1108030', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F36316439393536303430333964663830323666656534623363313565383639322E6A7067, '', '5');
  2105. INSERT INTO `nideshop_goods_gallery` VALUES ('405', '1108031', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F66326335643566306531363238636431653833346237623032323163663531332E6A7067, '', '5');
  2106. INSERT INTO `nideshop_goods_gallery` VALUES ('406', '1108031', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F34396330306337636666636263356663363433386264616335306637373265302E6A7067, '', '5');
  2107. INSERT INTO `nideshop_goods_gallery` VALUES ('407', '1108031', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F37616536353931656361386365646562393432373064306337336561656264372E6A7067, '', '5');
  2108. INSERT INTO `nideshop_goods_gallery` VALUES ('408', '1108031', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F32643065373132383831323464356361346261343466383236623533633738622E6A7067, '', '5');
  2109. INSERT INTO `nideshop_goods_gallery` VALUES ('409', '1108032', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F39373162613339313636343339373035643761323534643564373336613735332E6A7067, '', '5');
  2110. INSERT INTO `nideshop_goods_gallery` VALUES ('410', '1108032', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F31366331316631316330336230663065353936663663396364383531373062632E6A7067, '', '5');
  2111. INSERT INTO `nideshop_goods_gallery` VALUES ('411', '1108032', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F33313436396630303831323765613266316337666665643137353566666634322E6A7067, '', '5');
  2112. INSERT INTO `nideshop_goods_gallery` VALUES ('412', '1108032', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F33313337366632386133643030636665373637373133623933643361383462652E6A7067, '', '5');
  2113. INSERT INTO `nideshop_goods_gallery` VALUES ('413', '1109004', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F65643530636266376661623130623335663637366532343531653131323133302E6A7067, '', '5');
  2114. INSERT INTO `nideshop_goods_gallery` VALUES ('414', '1109004', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F36653133633634383338353061336662323137623838386666323265656536642E706E67, '', '5');
  2115. INSERT INTO `nideshop_goods_gallery` VALUES ('415', '1109004', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F64356432663531373336383262636439653164353437326237646361633539312E6A7067, '', '5');
  2116. INSERT INTO `nideshop_goods_gallery` VALUES ('416', '1109004', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F63623436353035373835376561646533363961636530336164393564363736352E6A7067, '', '5');
  2117. INSERT INTO `nideshop_goods_gallery` VALUES ('417', '1109005', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F66633562663833336130326133626534306533653339366131633561396331332E6A7067, '', '5');
  2118. INSERT INTO `nideshop_goods_gallery` VALUES ('418', '1109005', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F34333837306665376563336337313836666230393361623530643934666133612E6A7067, '', '5');
  2119. INSERT INTO `nideshop_goods_gallery` VALUES ('419', '1109005', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F36366163353738393835313830623631346338386664613434613265623236622E6A7067, '', '5');
  2120. INSERT INTO `nideshop_goods_gallery` VALUES ('420', '1109005', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F61666364386339396635383830373266316164373535373632323934646361312E6A7067, '', '5');
  2121. INSERT INTO `nideshop_goods_gallery` VALUES ('421', '1109008', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F35326531613739313937616639623163633733633833366637346231393064342E6A7067, '', '5');
  2122. INSERT INTO `nideshop_goods_gallery` VALUES ('422', '1109008', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F34633037656631316639316334313339343131663566666633386337383735302E6A7067, '', '5');
  2123. INSERT INTO `nideshop_goods_gallery` VALUES ('423', '1109008', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F36616336633235356536616435303339653930336633303531623536653235652E6A7067, '', '5');
  2124. INSERT INTO `nideshop_goods_gallery` VALUES ('424', '1109008', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F38386165663866333766643762653631323837356439336131623338363763342E6A7067, '', '5');
  2125. INSERT INTO `nideshop_goods_gallery` VALUES ('425', '1109034', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F30323531626431343166356235356264343331313637383735306136623334342E6A7067, '', '5');
  2126. INSERT INTO `nideshop_goods_gallery` VALUES ('426', '1109034', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F35396332643538323263646131396638636161326439303334393337663536352E6A7067, '', '5');
  2127. INSERT INTO `nideshop_goods_gallery` VALUES ('427', '1109034', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F33643038396337633261303465653137373637613238336139663131356464302E6A7067, '', '5');
  2128. INSERT INTO `nideshop_goods_gallery` VALUES ('428', '1109034', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F30343231313131636465663135623063393737376461383065623636663639362E6A7067, '', '5');
  2129. INSERT INTO `nideshop_goods_gallery` VALUES ('429', '1110002', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F33373564623237393764623932623434366434356233303033636138343636302E6A7067, '', '5');
  2130. INSERT INTO `nideshop_goods_gallery` VALUES ('430', '1110002', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F39643263353137623964613938356239633939376636643963623539376163302E6A7067, '', '5');
  2131. INSERT INTO `nideshop_goods_gallery` VALUES ('431', '1110002', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F36656233396333656533646238643961366132636266336432643266353831632E6A7067, '', '5');
  2132. INSERT INTO `nideshop_goods_gallery` VALUES ('432', '1110002', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F35653233306139333434356432373931373139663934323161363631313365332E6A7067, '', '5');
  2133. INSERT INTO `nideshop_goods_gallery` VALUES ('433', '1110003', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F30643261383835663232313931363964346233643331383164393038623264612E6A7067, '', '5');
  2134. INSERT INTO `nideshop_goods_gallery` VALUES ('434', '1110003', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F32386637623936346531653162373938376431376437363866346132326431622E6A7067, '', '5');
  2135. INSERT INTO `nideshop_goods_gallery` VALUES ('435', '1110003', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F65373863323264313966373939663133356462326533326637663661643361382E6A7067, '', '5');
  2136. INSERT INTO `nideshop_goods_gallery` VALUES ('436', '1110003', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F66633764376533383062643632626563323839353236633735333139366431642E6A7067, '', '5');
  2137. INSERT INTO `nideshop_goods_gallery` VALUES ('437', '1110004', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F63646165336165646136393365376363316334363631643466343164613464372E6A7067, '', '5');
  2138. INSERT INTO `nideshop_goods_gallery` VALUES ('438', '1110004', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F39613735643833333034613738306430346164613935633263306139353263612E6A7067, '', '5');
  2139. INSERT INTO `nideshop_goods_gallery` VALUES ('439', '1110004', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F65643833326364646531366539303333316632613330346336656534336461342E6A7067, '', '5');
  2140. INSERT INTO `nideshop_goods_gallery` VALUES ('440', '1110004', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F31313734316139633838396430393131346665613365653339303331663663332E6A7067, '', '5');
  2141. INSERT INTO `nideshop_goods_gallery` VALUES ('441', '1110007', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F30326463393731346436376163336163613230373430653139623961373234612E6A7067, '', '5');
  2142. INSERT INTO `nideshop_goods_gallery` VALUES ('442', '1110007', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F33386161663233653761323733396534356463646435633530633662616137652E6A7067, '', '5');
  2143. INSERT INTO `nideshop_goods_gallery` VALUES ('443', '1110007', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F30646665303530643639373131383063623863623165613732316235346531642E6A7067, '', '5');
  2144. INSERT INTO `nideshop_goods_gallery` VALUES ('444', '1110007', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F35316564633336326130393633306664303430333062636331366332303732642E6A7067, '', '5');
  2145. INSERT INTO `nideshop_goods_gallery` VALUES ('445', '1110008', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F34646564316530396630396439656231643266323464383737353966623233322E6A7067, '', '5');
  2146. INSERT INTO `nideshop_goods_gallery` VALUES ('446', '1110008', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F63653830316434393135656363613762656662356538383135396233646262332E6A7067, '', '5');
  2147. INSERT INTO `nideshop_goods_gallery` VALUES ('447', '1110008', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F34303634323365656233633563353334373436323234363736376566366264392E6A7067, '', '5');
  2148. INSERT INTO `nideshop_goods_gallery` VALUES ('448', '1110008', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F34653931326361353462343566336230636630306235663639373764313131302E6A7067, '', '5');
  2149. INSERT INTO `nideshop_goods_gallery` VALUES ('449', '1110013', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F32363530306137623630396465626238306130323261613235366565326233362E6A7067, '', '5');
  2150. INSERT INTO `nideshop_goods_gallery` VALUES ('450', '1110013', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F32363732656530663430343135633962316665613538303166303564366137362E6A7067, '', '5');
  2151. INSERT INTO `nideshop_goods_gallery` VALUES ('451', '1110013', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F31323835353465613966613765383664313966666635393236366665343534362E6A7067, '', '5');
  2152. INSERT INTO `nideshop_goods_gallery` VALUES ('452', '1110013', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F61383964623661393465376139636432363066613864653031353266663336632E6A7067, '', '5');
  2153. INSERT INTO `nideshop_goods_gallery` VALUES ('453', '1110014', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F63613337653138343261363561633461303632313830303738353035363837642E6A7067, '', '5');
  2154. INSERT INTO `nideshop_goods_gallery` VALUES ('454', '1110014', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F39363261383766353534633066373564383335393030373236363038626231622E6A7067, '', '5');
  2155. INSERT INTO `nideshop_goods_gallery` VALUES ('455', '1110014', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F64323936656230393964353431383665346237316631336161363366373162372E6A7067, '', '5');
  2156. INSERT INTO `nideshop_goods_gallery` VALUES ('456', '1110014', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F34633130633236646239363834376238366666653132636234626433633437622E6A7067, '', '5');
  2157. INSERT INTO `nideshop_goods_gallery` VALUES ('457', '1110015', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F33346434623837313865656338323561373532343933346633356636636635622E6A7067, '', '5');
  2158. INSERT INTO `nideshop_goods_gallery` VALUES ('458', '1110015', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F36316264356535626666393337333165623239393664393034656634636635302E6A7067, '', '5');
  2159. INSERT INTO `nideshop_goods_gallery` VALUES ('459', '1110015', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F62346138306134323361356234366566653535323735353138666632353034302E6A7067, '', '5');
  2160. INSERT INTO `nideshop_goods_gallery` VALUES ('460', '1110015', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F62633631613265633763383732363764346134303535643437623461396438632E6A7067, '', '5');
  2161. INSERT INTO `nideshop_goods_gallery` VALUES ('461', '1110016', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F63353363323263313435323462666539316330353862326439663933663962662E6A7067, '', '5');
  2162. INSERT INTO `nideshop_goods_gallery` VALUES ('462', '1110016', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F39633161643663336266363564643964373139373865393964643966623231662E6A7067, '', '5');
  2163. INSERT INTO `nideshop_goods_gallery` VALUES ('463', '1110016', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F37363438353038366666323438656164323939353566343233393566303530632E6A7067, '', '5');
  2164. INSERT INTO `nideshop_goods_gallery` VALUES ('464', '1110016', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F34363432653534323935633562656163323132396633353163366466613739652E6A7067, '', '5');
  2165. INSERT INTO `nideshop_goods_gallery` VALUES ('465', '1110017', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F30663864326532353736386566303064386164333238666264393261316434622E6A7067, '', '5');
  2166. INSERT INTO `nideshop_goods_gallery` VALUES ('466', '1110017', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F39626664326636313931653236633237366664396439396638353330653135302E6A7067, '', '5');
  2167. INSERT INTO `nideshop_goods_gallery` VALUES ('467', '1110017', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F33353538653533373163383334663031343036646338626638643231656138612E6A7067, '', '5');
  2168. INSERT INTO `nideshop_goods_gallery` VALUES ('468', '1110017', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F35646238653931336365313462363865346564663962633630393765653761392E6A7067, '', '5');
  2169. INSERT INTO `nideshop_goods_gallery` VALUES ('469', '1110018', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F61633566393362643730356539376539366431386334343732396164663131312E6A7067, '', '5');
  2170. INSERT INTO `nideshop_goods_gallery` VALUES ('470', '1110018', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F38363330363966363236653830393338353862643934343936313637323131362E6A7067, '', '5');
  2171. INSERT INTO `nideshop_goods_gallery` VALUES ('471', '1110018', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F33663534616164393534303366363736336432393731636636346565306630322E6A7067, '', '5');
  2172. INSERT INTO `nideshop_goods_gallery` VALUES ('472', '1110018', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F39356664333335316331626531386333623965643434356566306133383433342E6A7067, '', '5');
  2173. INSERT INTO `nideshop_goods_gallery` VALUES ('473', '1110019', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F61663061326439353535636165633330643261663938636463646562373765382E6A7067, '', '5');
  2174. INSERT INTO `nideshop_goods_gallery` VALUES ('474', '1110019', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F34313839323935653361303035613633636164646437323530343338316161302E6A7067, '', '5');
  2175. INSERT INTO `nideshop_goods_gallery` VALUES ('475', '1110019', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F62616638643235303930636562646135303666343631616537323234333738632E6A7067, '', '5');
  2176. INSERT INTO `nideshop_goods_gallery` VALUES ('476', '1110019', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F39336338343539323139326333623839623764663436623531653763356162362E6A7067, '', '5');
  2177. INSERT INTO `nideshop_goods_gallery` VALUES ('477', '1115023', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F66633032393161623332353833303537356335386232383163366534656530392E6A7067, '', '5');
  2178. INSERT INTO `nideshop_goods_gallery` VALUES ('478', '1115023', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F64323261323462393730313532633161613235333836656338643862366462332E6A7067, '', '5');
  2179. INSERT INTO `nideshop_goods_gallery` VALUES ('479', '1115023', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F33643361613539333566613234653038336632646562323639376238396539332E6A7067, '', '5');
  2180. INSERT INTO `nideshop_goods_gallery` VALUES ('480', '1115023', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F65663565663136636334646464333931323765346636643636383734353434612E6A7067, '', '5');
  2181. INSERT INTO `nideshop_goods_gallery` VALUES ('481', '1115028', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F64636332313533393062613135616138363733633563633463353662366661652E6A7067, '', '5');
  2182. INSERT INTO `nideshop_goods_gallery` VALUES ('482', '1115028', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F61613864313762636437633064356661313862356238363261333438343934382E6A7067, '', '5');
  2183. INSERT INTO `nideshop_goods_gallery` VALUES ('483', '1115028', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F63393961346563663130636133323037313462343337623430613638633832632E6A7067, '', '5');
  2184. INSERT INTO `nideshop_goods_gallery` VALUES ('484', '1115028', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F61303230626633356266613763316236646337356561373930633037623364302E6A7067, '', '5');
  2185. INSERT INTO `nideshop_goods_gallery` VALUES ('485', '1115052', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F66366562626332303030366133323364623361656135363665636564373631632E6A7067, '', '5');
  2186. INSERT INTO `nideshop_goods_gallery` VALUES ('486', '1115052', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F38326632653464316531333862336433333635373064653866326335626131632E6A7067, '', '5');
  2187. INSERT INTO `nideshop_goods_gallery` VALUES ('487', '1115052', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F66656666333964396266383334306161336563646463386165323364353136372E6A7067, '', '5');
  2188. INSERT INTO `nideshop_goods_gallery` VALUES ('488', '1115052', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F63633063636635643431303232343339663064386562366134383330623039342E6A7067, '', '5');
  2189. INSERT INTO `nideshop_goods_gallery` VALUES ('489', '1115053', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F34313238376363353631386562356532633031646239306635363964353862372E6A7067, '', '5');
  2190. INSERT INTO `nideshop_goods_gallery` VALUES ('490', '1115053', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F35353138613865666462616434336136393561393739646336363639323631642E6A7067, '', '5');
  2191. INSERT INTO `nideshop_goods_gallery` VALUES ('491', '1115053', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F66343031633834613062343434626434623330353761666634626630313137302E6A7067, '', '5');
  2192. INSERT INTO `nideshop_goods_gallery` VALUES ('492', '1115053', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F32353364393539343263393266326565343466613539386131373238386434312E6A7067, '', '5');
  2193. INSERT INTO `nideshop_goods_gallery` VALUES ('493', '1116030', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F33306564373734663839636436663539623466306564356439653663626337372E6A7067, '', '5');
  2194. INSERT INTO `nideshop_goods_gallery` VALUES ('494', '1116030', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F66303739653532323737663731363536393336613033353034353166666164322E6A7067, '', '5');
  2195. INSERT INTO `nideshop_goods_gallery` VALUES ('495', '1116030', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F32366332353332386336653034346634373533346233653935383264316632612E6A7067, '', '5');
  2196. INSERT INTO `nideshop_goods_gallery` VALUES ('496', '1116030', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F39646164343630376136373865373330323330623638626634666266353235352E6A7067, '', '5');
  2197. INSERT INTO `nideshop_goods_gallery` VALUES ('497', '1116031', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F35363265663161636463386332613764356331666431646538643737383037342E6A7067, '', '5');
  2198. INSERT INTO `nideshop_goods_gallery` VALUES ('498', '1116031', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F32633734613739643538613966373763633532313462666463383037643462652E6A7067, '', '5');
  2199. INSERT INTO `nideshop_goods_gallery` VALUES ('499', '1116031', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F34366137666562393363323463653734623661363836303533653264646263382E6A7067, '', '5');
  2200. INSERT INTO `nideshop_goods_gallery` VALUES ('500', '1116031', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F37623330383466383265633361343338396635653564623633613832623038372E6A7067, '', '5');
  2201. INSERT INTO `nideshop_goods_gallery` VALUES ('501', '1116032', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F32356533636564616333393637396331333861626265323438323661616138392E6A7067, '', '5');
  2202. INSERT INTO `nideshop_goods_gallery` VALUES ('502', '1116032', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F64386563343434313338363733616339306237393332616565373938623061652E6A7067, '', '5');
  2203. INSERT INTO `nideshop_goods_gallery` VALUES ('503', '1116032', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F65316333613836643235643738363564386264323533333064353530343461632E6A7067, '', '5');
  2204. INSERT INTO `nideshop_goods_gallery` VALUES ('504', '1116032', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F38626139316263373161306439363730643262333433366266633830323337362E6A7067, '', '5');
  2205. INSERT INTO `nideshop_goods_gallery` VALUES ('505', '1116033', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F64633462326435646463343835353762643962646365363734326236363536322E6A7067, '', '5');
  2206. INSERT INTO `nideshop_goods_gallery` VALUES ('506', '1116033', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F37326362373033393337326534336234646262393339346430383337343933332E6A7067, '', '5');
  2207. INSERT INTO `nideshop_goods_gallery` VALUES ('507', '1116033', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F63383633336232623234653033626637643564343365333964333461663735372E6A7067, '', '5');
  2208. INSERT INTO `nideshop_goods_gallery` VALUES ('508', '1116033', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F32326330613935626531333565613034626631313333653536363930366634652E6A7067, '', '5');
  2209. INSERT INTO `nideshop_goods_gallery` VALUES ('509', '1125016', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F31366464326131326234616232363531646337343530313237656564366436382E706E67, '', '5');
  2210. INSERT INTO `nideshop_goods_gallery` VALUES ('510', '1125016', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F66653066306662633736323833383031623562353635633632396639636633352E6A7067, '', '5');
  2211. INSERT INTO `nideshop_goods_gallery` VALUES ('511', '1125016', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F31643331363739313235363837313838343431366134616537373065306130302E6A7067, '', '5');
  2212. INSERT INTO `nideshop_goods_gallery` VALUES ('512', '1125016', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F36363137663833336634373530373064333330323634343033326338326630332E6A7067, '', '5');
  2213. INSERT INTO `nideshop_goods_gallery` VALUES ('513', '1125017', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F63383532373636316533633837613533306533306264313130613134666161392E706E67, '', '5');
  2214. INSERT INTO `nideshop_goods_gallery` VALUES ('514', '1125017', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F66626566343464626638326230623932633630653731623431633434376637322E6A7067, '', '5');
  2215. INSERT INTO `nideshop_goods_gallery` VALUES ('515', '1125017', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F30383930613537326466343331366637303230633834353335623639366266652E6A7067, '', '5');
  2216. INSERT INTO `nideshop_goods_gallery` VALUES ('516', '1125017', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F63623336313562663262636263353262316632656631633634653262336361632E6A7067, '', '5');
  2217. INSERT INTO `nideshop_goods_gallery` VALUES ('517', '1127003', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F36626431656131643233373234346430356538666166656138326639306335622E6A7067, '', '5');
  2218. INSERT INTO `nideshop_goods_gallery` VALUES ('518', '1127003', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F31356566623563356332353130666537393735353161626164656430396165302E6A7067, '', '5');
  2219. INSERT INTO `nideshop_goods_gallery` VALUES ('519', '1127003', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F37316332313163653930396134313432373930303463323434393937663665392E6A7067, '', '5');
  2220. INSERT INTO `nideshop_goods_gallery` VALUES ('520', '1127003', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F36373766356438356664643137626537343834343663623038326465663336312E6A7067, '', '5');
  2221. INSERT INTO `nideshop_goods_gallery` VALUES ('521', '1127038', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F65613136653365353662356535396231653965643036373934643162326334302E6A7067, '', '5');
  2222. INSERT INTO `nideshop_goods_gallery` VALUES ('522', '1127038', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F34316264373765333834663631656263393364383233333730396261313366312E6A7067, '', '5');
  2223. INSERT INTO `nideshop_goods_gallery` VALUES ('523', '1127038', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F62616635623837626136613438316465666563646335373432633963613531352E6A7067, '', '5');
  2224. INSERT INTO `nideshop_goods_gallery` VALUES ('524', '1127038', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F65356135303538303630333535623465346332663635336162376662616462372E6A7067, '', '5');
  2225. INSERT INTO `nideshop_goods_gallery` VALUES ('525', '1127039', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F35646135313664393137626637613032323531666634306264396131353363372E6A7067, '', '5');
  2226. INSERT INTO `nideshop_goods_gallery` VALUES ('526', '1127039', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F31336330393936653632633832663030623062613031306434393434373734372E6A7067, '', '5');
  2227. INSERT INTO `nideshop_goods_gallery` VALUES ('527', '1127039', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F62643063366666663732396234643466613835393434313236326438386334632E6A7067, '', '5');
  2228. INSERT INTO `nideshop_goods_gallery` VALUES ('528', '1127039', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F30653830393364346132376565376131643063383165336138326134396332372E6A7067, '', '5');
  2229. INSERT INTO `nideshop_goods_gallery` VALUES ('529', '1127052', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F62653163303637326161346638326465343137396666323563393732383335392E6A7067, '', '5');
  2230. INSERT INTO `nideshop_goods_gallery` VALUES ('530', '1127052', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F61303435316364393831343138383762373861343834313464383266316139612E6A7067, '', '5');
  2231. INSERT INTO `nideshop_goods_gallery` VALUES ('531', '1127052', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F39636463363235303636666634313234653562336463323531383532393730362E6A7067, '', '5');
  2232. INSERT INTO `nideshop_goods_gallery` VALUES ('532', '1127052', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F33393836383663323438336465623735636134616665656536323235306663392E6A7067, '', '5');
  2233. INSERT INTO `nideshop_goods_gallery` VALUES ('533', '1128002', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F31356134326134383762313637633833613365346632656130393930383863352E6A7067, '', '5');
  2234. INSERT INTO `nideshop_goods_gallery` VALUES ('534', '1128002', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F32393936343536343837636436653931363331396164383065343163393335662E6A7067, '', '5');
  2235. INSERT INTO `nideshop_goods_gallery` VALUES ('535', '1128002', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F66623664393037653566613431396336623337303665643037643733343363392E6A7067, '', '5');
  2236. INSERT INTO `nideshop_goods_gallery` VALUES ('536', '1128002', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F61346135386631333234353462613265346264363537343538633130643839622E6A7067, '', '5');
  2237. INSERT INTO `nideshop_goods_gallery` VALUES ('537', '1130037', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F62306261363638616531303037323965623765363439323664373737303738302E6A7067, '', '5');
  2238. INSERT INTO `nideshop_goods_gallery` VALUES ('538', '1130037', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F62346632343566353465346539386630363465376665666163366131363634322E6A7067, '', '5');
  2239. INSERT INTO `nideshop_goods_gallery` VALUES ('539', '1130037', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F66386362303039663630356631643034323536323734353265633863316664382E6A7067, '', '5');
  2240. INSERT INTO `nideshop_goods_gallery` VALUES ('540', '1130037', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F64653362663065656634333364323136623738326239636230383330653636652E6A7067, '', '5');
  2241. INSERT INTO `nideshop_goods_gallery` VALUES ('541', '1130038', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F33396465386464666631623430306439613937663165356639653964626665622E6A7067, '', '5');
  2242. INSERT INTO `nideshop_goods_gallery` VALUES ('542', '1130038', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F33653236656535656334643439393730613033323563613763633263656131352E6A7067, '', '5');
  2243. INSERT INTO `nideshop_goods_gallery` VALUES ('543', '1130038', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F39393362623364613966303339343565616566366536313939656663383663392E6A7067, '', '5');
  2244. INSERT INTO `nideshop_goods_gallery` VALUES ('544', '1130038', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F64333961643831663265366261626336393365646166303838313762643330382E6A7067, '', '5');
  2245. INSERT INTO `nideshop_goods_gallery` VALUES ('545', '1130039', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F31396231333735333334663265313931333061336261306539393364376539312E6A7067, '', '5');
  2246. INSERT INTO `nideshop_goods_gallery` VALUES ('546', '1130039', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F61626133316465613931326163346661393532366464663661303134383736652E6A7067, '', '5');
  2247. INSERT INTO `nideshop_goods_gallery` VALUES ('547', '1130039', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F37303436663862356562383364656136343065656131383763366134336231312E6A7067, '', '5');
  2248. INSERT INTO `nideshop_goods_gallery` VALUES ('548', '1130039', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F61336436333566383261356261653063346661323961343933363766333435312E6A7067, '', '5');
  2249. INSERT INTO `nideshop_goods_gallery` VALUES ('549', '1130041', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F31373364323639663663376238373562633433333634306137636631326265342E6A7067, '', '5');
  2250. INSERT INTO `nideshop_goods_gallery` VALUES ('550', '1130041', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F63636563313638376366613161343763323664356562393532303734626261392E6A7067, '', '5');
  2251. INSERT INTO `nideshop_goods_gallery` VALUES ('551', '1130041', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F30646536633531356230376239366639303262343265623432363261306336632E6A7067, '', '5');
  2252. INSERT INTO `nideshop_goods_gallery` VALUES ('552', '1130041', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F66336435656338333463653530323866333036653165316434376438363861622E6A7067, '', '5');
  2253. INSERT INTO `nideshop_goods_gallery` VALUES ('553', '1130042', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F62303738373866303862373237353265333832616162623566336532393533612E6A7067, '', '5');
  2254. INSERT INTO `nideshop_goods_gallery` VALUES ('554', '1130042', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F36383666636231663838613334373037346534303331303062313162626661622E6A7067, '', '5');
  2255. INSERT INTO `nideshop_goods_gallery` VALUES ('555', '1130042', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F64363366323761343262613138346165376239303161386233323566333634372E6A7067, '', '5');
  2256. INSERT INTO `nideshop_goods_gallery` VALUES ('556', '1130042', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F32666630396164646362313935353166356239383861316563326234333662332E6A7067, '', '5');
  2257. INSERT INTO `nideshop_goods_gallery` VALUES ('557', '1130049', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F63376564366661363265653739393231616335383064633032356466356635342E6A7067, '', '5');
  2258. INSERT INTO `nideshop_goods_gallery` VALUES ('558', '1130049', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F65666335393865383137616137636232323066613761613936323136323130352E6A7067, '', '5');
  2259. INSERT INTO `nideshop_goods_gallery` VALUES ('559', '1130049', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F38303038323337306361376466323334323130613636346631393135623731372E6A7067, '', '5');
  2260. INSERT INTO `nideshop_goods_gallery` VALUES ('560', '1130049', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F39316534393330326366346366653030393337393732623130333830393833362E706E67, '', '5');
  2261. INSERT INTO `nideshop_goods_gallery` VALUES ('561', '1130056', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F31383435633535613563326333633034623737666364623331623565613764392E6A7067, '', '5');
  2262. INSERT INTO `nideshop_goods_gallery` VALUES ('562', '1130056', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F31623161313331343632363037333836343563623963396565303232613365352E6A7067, '', '5');
  2263. INSERT INTO `nideshop_goods_gallery` VALUES ('563', '1130056', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F61346434303234356637333330666339353137326363376632393062396638652E6A7067, '', '5');
  2264. INSERT INTO `nideshop_goods_gallery` VALUES ('564', '1130056', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F33623961303966666131633138613463323835343565346465613036373636612E6A7067, '', '5');
  2265. INSERT INTO `nideshop_goods_gallery` VALUES ('565', '1131017', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F34346166343362343562613563326364666363343730386363396532613732342E6A7067, '', '5');
  2266. INSERT INTO `nideshop_goods_gallery` VALUES ('566', '1131017', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F32663866623539623665653230656164616532353334666637383732636232332E6A7067, '', '5');
  2267. INSERT INTO `nideshop_goods_gallery` VALUES ('567', '1131017', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F61373839366331386233396235363063656332323966313139643431353164632E6A7067, '', '5');
  2268. INSERT INTO `nideshop_goods_gallery` VALUES ('568', '1131017', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F64383061646462396236326134316433666532633261393033366465343638362E6A7067, '', '5');
  2269. INSERT INTO `nideshop_goods_gallery` VALUES ('569', '1134022', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F36346265323237633639353365306263663434613439366161626430643833662E6A7067, '', '5');
  2270. INSERT INTO `nideshop_goods_gallery` VALUES ('570', '1134022', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F63653966316466623537623838363733363164616237616663633763386661312E6A7067, '', '5');
  2271. INSERT INTO `nideshop_goods_gallery` VALUES ('571', '1134022', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F34656237376433653661396439343839396261643532333064313839633734662E6A7067, '', '5');
  2272. INSERT INTO `nideshop_goods_gallery` VALUES ('572', '1134022', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F39333936366262626533663830613431633437353830643833613131353734312E6A7067, '', '5');
  2273. INSERT INTO `nideshop_goods_gallery` VALUES ('573', '1134030', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F39376336643463376538303835353936366630643338333932623432613537302E6A7067, '', '5');
  2274. INSERT INTO `nideshop_goods_gallery` VALUES ('574', '1134030', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F33353533383136306533623431616535353930333166613863383266636562622E6A7067, '', '5');
  2275. INSERT INTO `nideshop_goods_gallery` VALUES ('575', '1134030', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F66323130376335323962636335633531626333636532623563633939343864622E6A7067, '', '5');
  2276. INSERT INTO `nideshop_goods_gallery` VALUES ('576', '1134030', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F39623465653231343033326637373037633135393433613166316466633838312E6A7067, '', '5');
  2277. INSERT INTO `nideshop_goods_gallery` VALUES ('577', '1134032', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F35613930353034313365663332353330316535653562366266646363346235382E6A7067, '', '5');
  2278. INSERT INTO `nideshop_goods_gallery` VALUES ('578', '1134032', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F65383636383832663762623961636465376334653164303031373137343166392E6A7067, '', '5');
  2279. INSERT INTO `nideshop_goods_gallery` VALUES ('579', '1134032', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F32333934376362373163366332663936333562353364613931306163373838642E6A7067, '', '5');
  2280. INSERT INTO `nideshop_goods_gallery` VALUES ('580', '1134032', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F62663830613034393430616531636433653663353834643236666465653665642E6A7067, '', '5');
  2281. INSERT INTO `nideshop_goods_gallery` VALUES ('581', '1134056', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F64653533323237633533303064633261346137653235613764366463663561312E6A7067, '', '5');
  2282. INSERT INTO `nideshop_goods_gallery` VALUES ('582', '1134056', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F38633233373332396235346361656566376264373631333434333739366462302E6A7067, '', '5');
  2283. INSERT INTO `nideshop_goods_gallery` VALUES ('583', '1134056', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F39396236386266333235323739313032353937636264323832396266666330392E6A7067, '', '5');
  2284. INSERT INTO `nideshop_goods_gallery` VALUES ('584', '1134056', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F61373234393765396134313262616266313134336162363433393463613964652E6A7067, '', '5');
  2285. INSERT INTO `nideshop_goods_gallery` VALUES ('585', '1135000', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F39346432616166343564343533653439316139306561326131326338633131392E6A7067, '', '5');
  2286. INSERT INTO `nideshop_goods_gallery` VALUES ('586', '1135000', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F36613836396537396234356662633836303462646130383664386434353135652E6A7067, '', '5');
  2287. INSERT INTO `nideshop_goods_gallery` VALUES ('587', '1135000', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F37396633393661356562333435303831303738626638653963323533313461382E6A7067, '', '5');
  2288. INSERT INTO `nideshop_goods_gallery` VALUES ('588', '1135000', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F31323732383662313330626133373763343635353064333832396161313965322E6A7067, '', '5');
  2289. INSERT INTO `nideshop_goods_gallery` VALUES ('589', '1135001', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F66663031303432336430383038643231663435613035323337383833336338622E6A7067, '', '5');
  2290. INSERT INTO `nideshop_goods_gallery` VALUES ('590', '1135001', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F64316562393030653930383332633234366336306334636361313363636561352E6A7067, '', '5');
  2291. INSERT INTO `nideshop_goods_gallery` VALUES ('591', '1135001', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F37353534656132623137323365623362353231623938323563336333356435322E6A7067, '', '5');
  2292. INSERT INTO `nideshop_goods_gallery` VALUES ('592', '1135001', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F33393639353735376665383630323032636632343535363134353736616466342E6A7067, '', '5');
  2293. INSERT INTO `nideshop_goods_gallery` VALUES ('593', '1135002', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F63623738643236386335313763313533383161656235623539303531303166652E6A7067, '', '5');
  2294. INSERT INTO `nideshop_goods_gallery` VALUES ('594', '1135002', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F34376331333161303264356435623937646463643139633136623339316262622E6A7067, '', '5');
  2295. INSERT INTO `nideshop_goods_gallery` VALUES ('595', '1135002', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F35333030633038336463633063366138353633363464383833663332383465382E6A7067, '', '5');
  2296. INSERT INTO `nideshop_goods_gallery` VALUES ('596', '1135002', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F35383666343263363635323335353938333866626239376237333135626162362E6A7067, '', '5');
  2297. INSERT INTO `nideshop_goods_gallery` VALUES ('597', '1135050', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F32613766343932633837306336303362626238363139643666663430633232622E6A7067, '', '5');
  2298. INSERT INTO `nideshop_goods_gallery` VALUES ('598', '1135050', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F63343366663036366231373230376332316262393965323631643233613430642E6A7067, '', '5');
  2299. INSERT INTO `nideshop_goods_gallery` VALUES ('599', '1135050', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F65336433393761353734643038363739303661363932373837343161313536322E6A7067, '', '5');
  2300. INSERT INTO `nideshop_goods_gallery` VALUES ('600', '1135050', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F36346331646439613861336362323666393130356163363863383730303137312E6A7067, '', '5');
  2301. INSERT INTO `nideshop_goods_gallery` VALUES ('601', '1135051', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F66336162323061366634383866646664616464313534303266303762313739342E6A7067, '', '5');
  2302. INSERT INTO `nideshop_goods_gallery` VALUES ('602', '1135051', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F39616665643230333132396136393664363832656230303566646639383065642E6A7067, '', '5');
  2303. INSERT INTO `nideshop_goods_gallery` VALUES ('603', '1135051', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F36343336373433303434353238623031376561386234306132373664646537642E6A7067, '', '5');
  2304. INSERT INTO `nideshop_goods_gallery` VALUES ('604', '1135051', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F37623266336139626533303061636463623538306665373536323064383133332E6A7067, '', '5');
  2305. INSERT INTO `nideshop_goods_gallery` VALUES ('605', '1135052', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F34613035326339613936656638663432346464623335653661316461653832322E6A7067, '', '5');
  2306. INSERT INTO `nideshop_goods_gallery` VALUES ('606', '1135052', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F31616431313932633339333530306137643665333130333661663434623061612E6A7067, '', '5');
  2307. INSERT INTO `nideshop_goods_gallery` VALUES ('607', '1135052', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F64653436666332393834646561313837633664393530333661336361373835322E6A7067, '', '5');
  2308. INSERT INTO `nideshop_goods_gallery` VALUES ('608', '1135052', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F65336663336666383636613061633464353838663839306364633435616232302E6A7067, '', '5');
  2309. INSERT INTO `nideshop_goods_gallery` VALUES ('609', '1135053', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F30313537386266633132333834623734633066346365343466303165653434382E6A7067, '', '5');
  2310. INSERT INTO `nideshop_goods_gallery` VALUES ('610', '1135053', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F65393736346439616163326139393061626537626163343735643563653131362E6A7067, '', '5');
  2311. INSERT INTO `nideshop_goods_gallery` VALUES ('611', '1135053', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F39616137303539646335326166633832383934653132633035646565333737352E6A7067, '', '5');
  2312. INSERT INTO `nideshop_goods_gallery` VALUES ('612', '1135053', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F63373765353636613835356138346636393234316435646230393339653136302E6A7067, '', '5');
  2313. INSERT INTO `nideshop_goods_gallery` VALUES ('613', '1135054', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F34393733643534303236303730663164393038336338336435393531626538622E6A7067, '', '5');
  2314. INSERT INTO `nideshop_goods_gallery` VALUES ('614', '1135054', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F31663661396365393861336539353539343664353264333133396231346431312E6A7067, '', '5');
  2315. INSERT INTO `nideshop_goods_gallery` VALUES ('615', '1135054', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F62363062363463613837333333626633363031623965353032613462343936312E6A7067, '', '5');
  2316. INSERT INTO `nideshop_goods_gallery` VALUES ('616', '1135054', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F37323535656235396330636638333132643730613036633466663831386636342E6A7067, '', '5');
  2317. INSERT INTO `nideshop_goods_gallery` VALUES ('617', '1135055', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F63383933303034616361323236363064616336623365646638653630373063632E6A7067, '', '5');
  2318. INSERT INTO `nideshop_goods_gallery` VALUES ('618', '1135055', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F31396634323235323236636333643034346364663232666462353135353331342E6A7067, '', '5');
  2319. INSERT INTO `nideshop_goods_gallery` VALUES ('619', '1135055', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F38666364383262626430393935643331333130633730626235396261623532622E6A7067, '', '5');
  2320. INSERT INTO `nideshop_goods_gallery` VALUES ('620', '1135055', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F30653733336663303765383962623032356666353733383833376363336435612E6A7067, '', '5');
  2321. INSERT INTO `nideshop_goods_gallery` VALUES ('621', '1135056', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F34326430643062353831333762353063343161343732623732313831373131302E6A7067, '', '5');
  2322. INSERT INTO `nideshop_goods_gallery` VALUES ('622', '1135056', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F33383461623439613436396635393262396333633233626464316439393435362E6A7067, '', '5');
  2323. INSERT INTO `nideshop_goods_gallery` VALUES ('623', '1135056', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F61303335316235356165313238343130373138643961626265303438643539642E6A7067, '', '5');
  2324. INSERT INTO `nideshop_goods_gallery` VALUES ('624', '1135056', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F30356137323838626539366134353433356661393432646665373361333763372E6A7067, '', '5');
  2325. INSERT INTO `nideshop_goods_gallery` VALUES ('625', '1135057', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F38363735353437353636393831326361643439396231363131656138663365332E6A7067, '', '5');
  2326. INSERT INTO `nideshop_goods_gallery` VALUES ('626', '1135057', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F31353231656534386366663637613364353137306233393331373964383033322E6A7067, '', '5');
  2327. INSERT INTO `nideshop_goods_gallery` VALUES ('627', '1135057', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F32386161356363663838613331343832316230653065666532356262643335362E6A7067, '', '5');
  2328. INSERT INTO `nideshop_goods_gallery` VALUES ('628', '1135057', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F30623138666430336265363639343331313065313534316632636464316464312E6A7067, '', '5');
  2329. INSERT INTO `nideshop_goods_gallery` VALUES ('629', '1135058', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F34353736356337393461363766343361653039653235353831353865393965612E6A7067, '', '5');
  2330. INSERT INTO `nideshop_goods_gallery` VALUES ('630', '1135058', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F32333433646662666434613536346365356130633033343263373534646339362E6A7067, '', '5');
  2331. INSERT INTO `nideshop_goods_gallery` VALUES ('631', '1135058', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F36643861323164376461646361633937636330666531366634646539316237612E6A7067, '', '5');
  2332. INSERT INTO `nideshop_goods_gallery` VALUES ('632', '1135058', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F38626634313065666331326332336633623661363562613330323364326631302E6A7067, '', '5');
  2333. INSERT INTO `nideshop_goods_gallery` VALUES ('633', '1138000', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F36633037376536666462623130393763353330656333386638303562656639362E6A7067, '', '5');
  2334. INSERT INTO `nideshop_goods_gallery` VALUES ('634', '1138000', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F31383332376536303163653732666365353239356333653861346535656462382E6A7067, '', '5');
  2335. INSERT INTO `nideshop_goods_gallery` VALUES ('635', '1138000', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F35353939333830633766636363633135636236306431653166326634656263612E6A7067, '', '5');
  2336. INSERT INTO `nideshop_goods_gallery` VALUES ('636', '1138000', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F61613831386530663534326231396463613364656462643832323939663564342E6A7067, '', '5');
  2337. INSERT INTO `nideshop_goods_gallery` VALUES ('637', '1138001', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F32366139383338306134626663383765356266316632383466613065353332362E6A7067, '', '5');
  2338. INSERT INTO `nideshop_goods_gallery` VALUES ('638', '1138001', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F30616166333631353437666266353334313665333935373762363433663337662E6A7067, '', '5');
  2339. INSERT INTO `nideshop_goods_gallery` VALUES ('639', '1138001', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F64313136326464343135323363616362373464353563326630323036323366312E6A7067, '', '5');
  2340. INSERT INTO `nideshop_goods_gallery` VALUES ('640', '1138001', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F34313630363761363162343931316266376636643236636437616466383035382E6A7067, '', '5');
  2341. INSERT INTO `nideshop_goods_gallery` VALUES ('641', '1143015', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F64656535343764656639306463323739323866376461383932303539636466342E6A7067, '', '5');
  2342. INSERT INTO `nideshop_goods_gallery` VALUES ('642', '1143015', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F30656162613465363566353834323036396463333730313036343230366262622E6A7067, '', '5');
  2343. INSERT INTO `nideshop_goods_gallery` VALUES ('643', '1143015', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F62366636663837373234663739323532353233366632343361636131333461642E6A7067, '', '5');
  2344. INSERT INTO `nideshop_goods_gallery` VALUES ('644', '1143015', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F38323637613036636164656431353862336435396536383766383436346264642E706E67, '', '5');
  2345. INSERT INTO `nideshop_goods_gallery` VALUES ('645', '1147045', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F66633263633835393838663564666630636232373966373164656662373065392E6A7067, '', '5');
  2346. INSERT INTO `nideshop_goods_gallery` VALUES ('646', '1147045', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F65346264343138303638393637313938633030346335353362616562393665612E6A7067, '', '5');
  2347. INSERT INTO `nideshop_goods_gallery` VALUES ('647', '1147045', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F38306331393739386430633536653163313062376238323231643664656364392E6A7067, '', '5');
  2348. INSERT INTO `nideshop_goods_gallery` VALUES ('648', '1147045', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F39313630646465346161356437663936313630376433653663396430343834332E6A7067, '', '5');
  2349. INSERT INTO `nideshop_goods_gallery` VALUES ('649', '1147046', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F62663832376265373336356365396362663633653563303961336430326330332E6A7067, '', '5');
  2350. INSERT INTO `nideshop_goods_gallery` VALUES ('650', '1147046', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F64626131353365653366643138373735626137396233346366656462653766342E6A7067, '', '5');
  2351. INSERT INTO `nideshop_goods_gallery` VALUES ('651', '1147046', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F62393239313262326336356432613632666364643131363766623161656330332E6A7067, '', '5');
  2352. INSERT INTO `nideshop_goods_gallery` VALUES ('652', '1147046', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F65666234336230343663633031303261363562393637623833356333636464392E6A7067, '', '5');
  2353. INSERT INTO `nideshop_goods_gallery` VALUES ('653', '1147047', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F30313435333066333735353562626133336565633135346133366237386130322E6A7067, '', '5');
  2354. INSERT INTO `nideshop_goods_gallery` VALUES ('654', '1147047', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F37653165353136633131366136363365353837666335646433636432663437622E6A7067, '', '5');
  2355. INSERT INTO `nideshop_goods_gallery` VALUES ('655', '1147047', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F64623033626165623932656334626535303230336463363930623739333833302E6A7067, '', '5');
  2356. INSERT INTO `nideshop_goods_gallery` VALUES ('656', '1147047', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F61393233396337653739353130613132313866393464613538613237386138642E6A7067, '', '5');
  2357. INSERT INTO `nideshop_goods_gallery` VALUES ('657', '1147048', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F63623066633834613539306636336536316230656233656530383333666366662E6A7067, '', '5');
  2358. INSERT INTO `nideshop_goods_gallery` VALUES ('658', '1147048', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F63616237323432393333623164313239663466363662303565313635323634312E6A7067, '', '5');
  2359. INSERT INTO `nideshop_goods_gallery` VALUES ('659', '1147048', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F65363563376466353832633430313638316264616133313932356366383665342E6A7067, '', '5');
  2360. INSERT INTO `nideshop_goods_gallery` VALUES ('660', '1147048', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F35383662646238313032623066613337386535353430353561356161353861612E6A7067, '', '5');
  2361. INSERT INTO `nideshop_goods_gallery` VALUES ('661', '1151012', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F61306431353439353434323662363365336235326637373265393464363764332E6A7067, '', '5');
  2362. INSERT INTO `nideshop_goods_gallery` VALUES ('662', '1151012', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F66356438616430666161303235393438336639343439646532356337353036302E6A7067, '', '5');
  2363. INSERT INTO `nideshop_goods_gallery` VALUES ('663', '1151012', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F64323263653934373932336238613034313163323066363033626361333063622E6A7067, '', '5');
  2364. INSERT INTO `nideshop_goods_gallery` VALUES ('664', '1151012', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F66376661323236323231396561623130316139616534626532663866393337362E6A7067, '', '5');
  2365. INSERT INTO `nideshop_goods_gallery` VALUES ('665', '1151013', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F33363939356634346564306633316136366436383966363062326366366239632E6A7067, '', '5');
  2366. INSERT INTO `nideshop_goods_gallery` VALUES ('666', '1151013', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F30306630303935393938323862613032393934636631646237636531626630362E6A7067, '', '5');
  2367. INSERT INTO `nideshop_goods_gallery` VALUES ('667', '1151013', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F33383162613164393437616664336361363138306335303331313465626234372E6A7067, '', '5');
  2368. INSERT INTO `nideshop_goods_gallery` VALUES ('668', '1151013', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F34306131356361393436386635366533613337343362316166623137613862362E6A7067, '', '5');
  2369. INSERT INTO `nideshop_goods_gallery` VALUES ('669', '1152161', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F33386130623233393530623739363131666235363562616531343335316131312E6A7067, '', '5');
  2370. INSERT INTO `nideshop_goods_gallery` VALUES ('670', '1152161', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F38313035353561666136393139633736366133333432326564656662316263382E6A7067, '', '5');
  2371. INSERT INTO `nideshop_goods_gallery` VALUES ('671', '1152161', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F62393762353465383534363630666564616263346464303764333231353231362E6A7067, '', '5');
  2372. INSERT INTO `nideshop_goods_gallery` VALUES ('672', '1152161', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F37393230303036336162353839336366336664643136663432386534643530352E6A7067, '', '5');
  2373. INSERT INTO `nideshop_goods_gallery` VALUES ('673', '1155000', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F35313739313464346637643837326231376135356539633338363464663731372E6A7067, '', '5');
  2374. INSERT INTO `nideshop_goods_gallery` VALUES ('674', '1155000', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F36626466323234643663303237366132373337643661663737356236656438612E6A7067, '', '5');
  2375. INSERT INTO `nideshop_goods_gallery` VALUES ('675', '1155000', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F36666138373734663664613663633437336261333731346165633935663662362E6A7067, '', '5');
  2376. INSERT INTO `nideshop_goods_gallery` VALUES ('676', '1155000', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F32656361356430663861316365363162616633323331313236346365626464312E6A7067, '', '5');
  2377. INSERT INTO `nideshop_goods_gallery` VALUES ('677', '1181000', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F33353565666263633332393831616133623738363963613037656534376461632E6A7067, '', '5');
  2378. INSERT INTO `nideshop_goods_gallery` VALUES ('678', '1181000', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F34336532383364663231363838313033376237306438623334663838343664332E6A7067, '', '5');
  2379. INSERT INTO `nideshop_goods_gallery` VALUES ('679', '1181000', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F31326534316437653564616261663931353061386262343563343163663432322E6A7067, '', '5');
  2380. INSERT INTO `nideshop_goods_gallery` VALUES ('680', '1181000', 0x687474703A2F2F79616E7875616E2E6E6F73646E2E3132372E6E65742F35633164323865383663636238393938306536303534613439353731636465632E6A7067, '', '5');
  2381. -- ----------------------------
  2382. -- Table structure for `nideshop_goods_issue`
  2383. -- ----------------------------
  2384. DROP TABLE IF EXISTS `nideshop_goods_issue`;
  2385. CREATE TABLE `nideshop_goods_issue` (
  2386. `id` int(11) NOT NULL AUTO_INCREMENT,
  2387. `question` varchar(500) DEFAULT NULL,
  2388. `answer` varchar(100) DEFAULT NULL,
  2389. PRIMARY KEY (`id`)
  2390. ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8;
  2391. -- ----------------------------
  2392. -- Records of nideshop_goods_issue
  2393. -- ----------------------------
  2394. INSERT INTO `nideshop_goods_issue` VALUES ('1', '购买运费如何收取?', '单笔订单金额(不含运费)满88元免邮费;不满88元,每单收取10元运费。\n(港澳台地区需满');
  2395. INSERT INTO `nideshop_goods_issue` VALUES ('2', '使用什么快递发货?', '严选默认使用顺丰快递发货(个别商品使用其他快递),配送范围覆盖全国大部分地区(港澳台地区除');
  2396. INSERT INTO `nideshop_goods_issue` VALUES ('3', '如何申请退货?', '1.自收到商品之日起30日内,顾客可申请无忧退货,退款将原路返还,不同的银行处理时间不同,');
  2397. INSERT INTO `nideshop_goods_issue` VALUES ('4', '如何开具发票?', '1.如需开具普通发票,请在下单时选择“我要开发票”并填写相关信息(APP仅限2.4.0及以');
  2398. -- ----------------------------
  2399. -- Table structure for `nideshop_goods_specification`
  2400. -- ----------------------------
  2401. DROP TABLE IF EXISTS `nideshop_goods_specification`;
  2402. CREATE TABLE `nideshop_goods_specification` (
  2403. `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  2404. `goods_id` int(11) unsigned NOT NULL DEFAULT '0',
  2405. `specification_id` int(11) unsigned NOT NULL DEFAULT '0',
  2406. `value` varchar(50) DEFAULT '',
  2407. `pic_url` varchar(255) DEFAULT '',
  2408. PRIMARY KEY (`id`),
  2409. KEY `goods_id` (`goods_id`),
  2410. KEY `specification_id` (`specification_id`)
  2411. ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COMMENT='商品对应规格表值表';
  2412. -- ----------------------------
  2413. -- Records of nideshop_goods_specification
  2414. -- ----------------------------
  2415. INSERT INTO `nideshop_goods_specification` VALUES ('1', '1181000', '1', '1.5m床垫*1+枕头*2', '');
  2416. INSERT INTO `nideshop_goods_specification` VALUES ('2', '1181000', '1', '1.8m床垫*1+枕头*2', '');
  2417. INSERT INTO `nideshop_goods_specification` VALUES ('3', '1181000', '2', '浅杏粉', 'http://yanxuan.nosdn.127.net/10022c73fa7aa75c2c0d736e96cc56d5.png?quality=90&thumbnail=200x200&imageView');
  2418. INSERT INTO `nideshop_goods_specification` VALUES ('4', '1181000', '2', '玛瑙红', 'http://yanxuan.nosdn.127.net/29442127f431a1a1801c195905319427.png?quality=90&thumbnail=200x200&imageView');
  2419. INSERT INTO `nideshop_goods_specification` VALUES ('5', '1181000', '2', '烟白灰', 'http://yanxuan.nosdn.127.net/36f64a7161b67e7fb8ea45be32ecfa25.png?quality=90&thumbnail=200x200&imageView');
  2420. -- ----------------------------
  2421. -- Table structure for `nideshop_keywords`
  2422. -- ----------------------------
  2423. DROP TABLE IF EXISTS `nideshop_keywords`;
  2424. CREATE TABLE `nideshop_keywords` (
  2425. `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '主键',
  2426. `keyword` varchar(90) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '关键字',
  2427. `is_hot` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '热销',
  2428. `is_default` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '默认',
  2429. `is_show` tinyint(1) unsigned NOT NULL DEFAULT '1' COMMENT '显示',
  2430. `sort_order` int(11) NOT NULL DEFAULT '100' COMMENT '排序',
  2431. `scheme_url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '关键词的跳转链接',
  2432. `type` int(11) NOT NULL DEFAULT '0' COMMENT '类型',
  2433. PRIMARY KEY (`id`)
  2434. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='热闹关键词表';
  2435. -- ----------------------------
  2436. -- Records of nideshop_keywords
  2437. -- ----------------------------
  2438. -- ----------------------------
  2439. -- Table structure for `nideshop_order`
  2440. -- ----------------------------
  2441. DROP TABLE IF EXISTS `nideshop_order`;
  2442. CREATE TABLE `nideshop_order` (
  2443. `id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
  2444. `order_sn` varchar(32) DEFAULT '',
  2445. `user_id` mediumint(8) unsigned DEFAULT '0',
  2446. `order_status` int(3) unsigned DEFAULT '0',
  2447. `shipping_status` tinyint(1) unsigned DEFAULT '0',
  2448. `pay_status` tinyint(1) unsigned DEFAULT '0',
  2449. `consignee` varchar(60) DEFAULT '',
  2450. `country` varchar(50) DEFAULT NULL,
  2451. `province` varchar(50) DEFAULT NULL,
  2452. `city` varchar(50) DEFAULT NULL,
  2453. `district` varchar(50) DEFAULT NULL,
  2454. `address` varchar(255) DEFAULT '',
  2455. `mobile` varchar(60) DEFAULT '',
  2456. `postscript` varchar(255) DEFAULT '',
  2457. `shipping_id` tinyint(3) DEFAULT '0',
  2458. `shipping_name` varchar(120) DEFAULT '',
  2459. `pay_id` varchar(64) DEFAULT '0',
  2460. `pay_name` varchar(120) DEFAULT '',
  2461. `shipping_fee` decimal(10,2) DEFAULT '0.00',
  2462. `actual_price` decimal(10,2) DEFAULT '0.00' COMMENT '实际需要支付的金额',
  2463. `integral` int(10) unsigned DEFAULT '0',
  2464. `integral_money` decimal(10,2) DEFAULT '0.00',
  2465. `order_price` decimal(10,2) DEFAULT '0.00' COMMENT '订单总价',
  2466. `goods_price` decimal(10,2) DEFAULT '0.00' COMMENT '商品总价',
  2467. `add_time` datetime DEFAULT NULL,
  2468. `confirm_time` datetime DEFAULT NULL,
  2469. `pay_time` datetime DEFAULT NULL,
  2470. `freight_price` int(10) unsigned DEFAULT '0' COMMENT '配送费用',
  2471. `coupon_id` mediumint(8) unsigned DEFAULT '0' COMMENT '使用的优惠券id',
  2472. `parent_id` mediumint(8) unsigned DEFAULT '0',
  2473. `coupon_price` decimal(10,2) DEFAULT NULL,
  2474. `callback_status` enum('true','false') DEFAULT 'true',
  2475. `shipping_no` varchar(32) DEFAULT NULL,
  2476. `full_cut_price` decimal(10,2) DEFAULT NULL,
  2477. `order_type` varchar(1) DEFAULT NULL,
  2478. PRIMARY KEY (`id`),
  2479. UNIQUE KEY `order_sn` (`order_sn`),
  2480. KEY `user_id` (`user_id`),
  2481. KEY `order_status` (`order_status`),
  2482. KEY `shipping_status` (`shipping_status`),
  2483. KEY `pay_status` (`pay_status`),
  2484. KEY `shipping_id` (`shipping_id`),
  2485. KEY `pay_id` (`pay_id`)
  2486. ) ENGINE=InnoDB AUTO_INCREMENT=21 DEFAULT CHARSET=utf8;
  2487. -- ----------------------------
  2488. -- Records of nideshop_order
  2489. -- ----------------------------
  2490. INSERT INTO `nideshop_order` VALUES ('20', '20171004144623437846964', '19', '0', '0', '0', '李鹏军', '340104', '安徽省', '合肥市', '蜀山区', '西二环路与黄山路交口欣塘家园', '15209831990', null, '0', null, null, null, '0.00', '99.00', '0', '0.00', '99.00', '99.00', '2017-10-04 14:46:23', null, null, '0', '0', null, '0.00', null, null, '0.00', null);
  2491. -- ----------------------------
  2492. -- Table structure for `nideshop_order_goods`
  2493. -- ----------------------------
  2494. DROP TABLE IF EXISTS `nideshop_order_goods`;
  2495. CREATE TABLE `nideshop_order_goods` (
  2496. `id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT COMMENT '主键',
  2497. `order_id` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT '订单Id',
  2498. `goods_id` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT '商品id',
  2499. `goods_name` varchar(120) NOT NULL DEFAULT '' COMMENT '商品名称',
  2500. `goods_sn` varchar(60) NOT NULL DEFAULT '' COMMENT '商品序列号',
  2501. `product_id` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT '产品Id',
  2502. `number` smallint(5) unsigned NOT NULL DEFAULT '1' COMMENT '商品数量',
  2503. `market_price` decimal(10,2) NOT NULL DEFAULT '0.00' COMMENT '市场价',
  2504. `retail_price` decimal(10,2) NOT NULL DEFAULT '0.00' COMMENT '零售价格',
  2505. `goods_specifition_name_value` text COMMENT '商品规格详情',
  2506. `is_real` tinyint(1) unsigned DEFAULT '0' COMMENT '虚拟商品',
  2507. `goods_specifition_ids` varchar(255) DEFAULT '' COMMENT '商品规格Ids',
  2508. `list_pic_url` varchar(255) DEFAULT '' COMMENT '图片链接',
  2509. PRIMARY KEY (`id`),
  2510. KEY `order_id` (`order_id`),
  2511. KEY `goods_id` (`goods_id`)
  2512. ) ENGINE=InnoDB AUTO_INCREMENT=28 DEFAULT CHARSET=utf8;
  2513. -- ----------------------------
  2514. -- Records of nideshop_order_goods
  2515. -- ----------------------------
  2516. INSERT INTO `nideshop_order_goods` VALUES ('14', '11', '1152101', '魔兽世界 部落 奥格瑞玛 拉杆箱 可登机', '1152101', '238', '2', '888.00', '888.00', '烟白灰;玛瑙红;浅杏粉;1.8m床垫*1+枕头*2;1.5m床垫*1+枕头*2', null, '', 'http://yanxuan.nosdn.127.net/c1c62211a17b71a634fa0c705d11fb42.png');
  2517. INSERT INTO `nideshop_order_goods` VALUES ('18', '19', '1138001', '北欧简约山形纹绣花抱枕', '1138001', '218', '1', '79.00', '79.00', null, null, '', 'http://yanxuan.nosdn.127.net/dbc5b25b824c3b3d7ff43b56ca35eee9.png');
  2518. INSERT INTO `nideshop_order_goods` VALUES ('19', '20', '1143015', '婴儿床蔺草席', '1143015', '220', '1', '79.00', '79.00', null, null, '', 'http://yanxuan.nosdn.127.net/50e197854e0ada79c37b7215a1574450.png');
  2519. INSERT INTO `nideshop_order_goods` VALUES ('20', '20', '1015007', '典雅美式全棉刺绣抱枕', '1015007', '21', '1', '59.00', '59.00', null, null, '', 'http://yanxuan.nosdn.127.net/a2045004de8a6225289376ad54317fc8.png');
  2520. INSERT INTO `nideshop_order_goods` VALUES ('21', '14', '1152101', '魔兽世界 部落 奥格瑞玛 拉杆箱 可登机', '1152101', '238', '1', '0.00', '888.00', null, null, '', 'http://yanxuan.nosdn.127.net/c1c62211a17b71a634fa0c705d11fb42.png');
  2521. INSERT INTO `nideshop_order_goods` VALUES ('22', '15', '1015007', '典雅美式全棉刺绣抱枕', '1015007', '21', '1', '0.00', '59.00', null, null, '', 'http://yanxuan.nosdn.127.net/a2045004de8a6225289376ad54317fc8.png');
  2522. INSERT INTO `nideshop_order_goods` VALUES ('23', '16', '1006013', '双宫茧桑蚕丝被 空调被', '1006013', '10', '1', '0.00', '699.00', null, null, '', 'http://yanxuan.nosdn.127.net/583812520c68ca7995b6fac4c67ae2c7.png');
  2523. INSERT INTO `nideshop_order_goods` VALUES ('24', '17', '1006013', '双宫茧桑蚕丝被 空调被', '1006013', '10', '1', '0.00', '699.00', null, null, '', 'http://yanxuan.nosdn.127.net/583812520c68ca7995b6fac4c67ae2c7.png');
  2524. INSERT INTO `nideshop_order_goods` VALUES ('25', '18', '1006013', '双宫茧桑蚕丝被 空调被', '1006013', '10', '1', '0.00', '699.00', null, null, '', 'http://yanxuan.nosdn.127.net/583812520c68ca7995b6fac4c67ae2c7.png');
  2525. INSERT INTO `nideshop_order_goods` VALUES ('26', '19', '1006014', '双宫茧桑蚕丝被 子母被', '1006014', '11', '1', '0.00', '1399.00', null, null, '', 'http://yanxuan.nosdn.127.net/2b537159f0f789034bf8c4b339c43750.png');
  2526. INSERT INTO `nideshop_order_goods` VALUES ('27', '20', '1152031', '魔兽世界-伊利丹颈枕眼罩套装', '1152031', '234', '1', '0.00', '99.00', null, null, '', 'http://yanxuan.nosdn.127.net/fd6e78a397bd9e9804116a36f0270b0a.png');
  2527. -- ----------------------------
  2528. -- Table structure for `nideshop_product`
  2529. -- ----------------------------
  2530. DROP TABLE IF EXISTS `nideshop_product`;
  2531. CREATE TABLE `nideshop_product` (
  2532. `id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT COMMENT '主键',
  2533. `goods_id` mediumint(8) unsigned DEFAULT '0' COMMENT '商品Id',
  2534. `goods_specification_ids` varchar(50) DEFAULT '' COMMENT '商品规格ids',
  2535. `goods_sn` varchar(60) DEFAULT '' COMMENT '商品序列号',
  2536. `goods_number` mediumint(8) unsigned DEFAULT '0' COMMENT '商品编码',
  2537. `retail_price` decimal(10,2) unsigned DEFAULT '0.00' COMMENT '零售价格',
  2538. `market_price` decimal(10,2) unsigned DEFAULT '0.00' COMMENT '价格',
  2539. PRIMARY KEY (`id`)
  2540. ) ENGINE=InnoDB AUTO_INCREMENT=247 DEFAULT CHARSET=utf8;
  2541. -- ----------------------------
  2542. -- Records of nideshop_product
  2543. -- ----------------------------
  2544. INSERT INTO `nideshop_product` VALUES ('1', '1181000', '1_3', 'Y100300', '100', '999.00', '0.00');
  2545. INSERT INTO `nideshop_product` VALUES ('2', '1181000', '1_4', 'Y100400', '200', '1500.00', '0.00');
  2546. INSERT INTO `nideshop_product` VALUES ('3', '1181000', '1_5', 'Y100500', '300', '1000.00', '0.00');
  2547. INSERT INTO `nideshop_product` VALUES ('4', '1181000', '2_3', 'Y200300', '400', '1001.00', '0.00');
  2548. INSERT INTO `nideshop_product` VALUES ('5', '1181000', '2_4', 'Y200400', '2', '2000.00', '0.00');
  2549. INSERT INTO `nideshop_product` VALUES ('6', '1181000', '2_5', 'Y200500', '0', '3000.00', '0.00');
  2550. INSERT INTO `nideshop_product` VALUES ('7', '1006002', '', '1006002', '100', '899.00', '0.00');
  2551. INSERT INTO `nideshop_product` VALUES ('8', '1006007', '', '1006007', '100', '459.00', '0.00');
  2552. INSERT INTO `nideshop_product` VALUES ('9', '1006010', '', '1006010', '100', '659.00', '0.00');
  2553. INSERT INTO `nideshop_product` VALUES ('10', '1006013', '', '1006013', '100', '699.00', '0.00');
  2554. INSERT INTO `nideshop_product` VALUES ('11', '1006014', '', '1006014', '100', '1399.00', '0.00');
  2555. INSERT INTO `nideshop_product` VALUES ('12', '1006051', '', '1006051', '100', '59.00', '0.00');
  2556. INSERT INTO `nideshop_product` VALUES ('13', '1009009', '', '1009009', '100', '1999.00', '0.00');
  2557. INSERT INTO `nideshop_product` VALUES ('14', '1009012', '', '1009012', '100', '59.00', '0.00');
  2558. INSERT INTO `nideshop_product` VALUES ('15', '1009013', '', '1009013', '100', '99.00', '0.00');
  2559. INSERT INTO `nideshop_product` VALUES ('16', '1009024', '', '1009024', '100', '599.00', '0.00');
  2560. INSERT INTO `nideshop_product` VALUES ('17', '1009027', '', '1009027', '100', '79.00', '0.00');
  2561. INSERT INTO `nideshop_product` VALUES ('18', '1010000', '', '1010000', '100', '399.00', '0.00');
  2562. INSERT INTO `nideshop_product` VALUES ('19', '1010001', '', '1010001', '100', '299.00', '0.00');
  2563. INSERT INTO `nideshop_product` VALUES ('20', '1011004', '', '1011004', '100', '199.00', '0.00');
  2564. INSERT INTO `nideshop_product` VALUES ('21', '1015007', '', '1015007', '100', '59.00', '0.00');
  2565. INSERT INTO `nideshop_product` VALUES ('22', '1019000', '', '1019000', '100', '99.00', '0.00');
  2566. INSERT INTO `nideshop_product` VALUES ('23', '1019001', '', '1019001', '100', '109.00', '0.00');
  2567. INSERT INTO `nideshop_product` VALUES ('24', '1019002', '', '1019002', '100', '199.00', '0.00');
  2568. INSERT INTO `nideshop_product` VALUES ('25', '1019006', '', '1019006', '100', '99.00', '0.00');
  2569. INSERT INTO `nideshop_product` VALUES ('26', '1020000', '', '1020000', '100', '79.00', '0.00');
  2570. INSERT INTO `nideshop_product` VALUES ('27', '1021000', '', '1021000', '100', '39.00', '0.00');
  2571. INSERT INTO `nideshop_product` VALUES ('28', '1021001', '', '1021001', '100', '99.00', '0.00');
  2572. INSERT INTO `nideshop_product` VALUES ('29', '1021004', '', '1021004', '100', '299.00', '0.00');
  2573. INSERT INTO `nideshop_product` VALUES ('30', '1021010', '', '1021010', '100', '299.00', '0.00');
  2574. INSERT INTO `nideshop_product` VALUES ('31', '1022000', '', '1022000', '100', '299.00', '0.00');
  2575. INSERT INTO `nideshop_product` VALUES ('32', '1022001', '', '1022001', '100', '349.00', '0.00');
  2576. INSERT INTO `nideshop_product` VALUES ('33', '1023003', '', '1023003', '100', '398.00', '0.00');
  2577. INSERT INTO `nideshop_product` VALUES ('34', '1023012', '', '1023012', '100', '299.00', '0.00');
  2578. INSERT INTO `nideshop_product` VALUES ('35', '1023032', '', '1023032', '100', '449.00', '0.00');
  2579. INSERT INTO `nideshop_product` VALUES ('36', '1023034', '', '1023034', '100', '299.00', '0.00');
  2580. INSERT INTO `nideshop_product` VALUES ('37', '1025005', '', '1025005', '100', '268.00', '0.00');
  2581. INSERT INTO `nideshop_product` VALUES ('38', '1027004', '', '1027004', '100', '249.00', '0.00');
  2582. INSERT INTO `nideshop_product` VALUES ('39', '1029005', '', '1029005', '100', '959.00', '0.00');
  2583. INSERT INTO `nideshop_product` VALUES ('40', '1030001', '', '1030001', '100', '969.00', '0.00');
  2584. INSERT INTO `nideshop_product` VALUES ('41', '1030002', '', '1030002', '100', '899.00', '0.00');
  2585. INSERT INTO `nideshop_product` VALUES ('42', '1030003', '', '1030003', '100', '1469.00', '0.00');
  2586. INSERT INTO `nideshop_product` VALUES ('43', '1030004', '', '1030004', '100', '399.00', '0.00');
  2587. INSERT INTO `nideshop_product` VALUES ('44', '1030005', '', '1030005', '100', '899.00', '0.00');
  2588. INSERT INTO `nideshop_product` VALUES ('45', '1030006', '', '1030006', '100', '329.00', '0.00');
  2589. INSERT INTO `nideshop_product` VALUES ('46', '1033000', '', '1033000', '100', '199.00', '0.00');
  2590. INSERT INTO `nideshop_product` VALUES ('47', '1035006', '', '1035006', '100', '56.00', '0.00');
  2591. INSERT INTO `nideshop_product` VALUES ('48', '1036002', '', '1036002', '100', '99.00', '0.00');
  2592. INSERT INTO `nideshop_product` VALUES ('49', '1036013', '', '1036013', '100', '109.00', '0.00');
  2593. INSERT INTO `nideshop_product` VALUES ('50', '1036016', '', '1036016', '100', '109.00', '0.00');
  2594. INSERT INTO `nideshop_product` VALUES ('51', '1037011', '', '1037011', '100', '599.00', '0.00');
  2595. INSERT INTO `nideshop_product` VALUES ('52', '1037012', '', '1037012', '100', '69.00', '0.00');
  2596. INSERT INTO `nideshop_product` VALUES ('53', '1038004', '', '1038004', '100', '359.00', '0.00');
  2597. INSERT INTO `nideshop_product` VALUES ('54', '1039051', '', '1039051', '100', '79.00', '0.00');
  2598. INSERT INTO `nideshop_product` VALUES ('55', '1039056', '', '1039056', '100', '79.00', '0.00');
  2599. INSERT INTO `nideshop_product` VALUES ('56', '1043005', '', '1043005', '100', '59.00', '0.00');
  2600. INSERT INTO `nideshop_product` VALUES ('57', '1044012', '', '1044012', '100', '349.00', '0.00');
  2601. INSERT INTO `nideshop_product` VALUES ('58', '1045000', '', '1045000', '100', '28.00', '0.00');
  2602. INSERT INTO `nideshop_product` VALUES ('59', '1046001', '', '1046001', '100', '8.90', '0.00');
  2603. INSERT INTO `nideshop_product` VALUES ('60', '1046002', '', '1046002', '100', '9.90', '0.00');
  2604. INSERT INTO `nideshop_product` VALUES ('61', '1046044', '', '1046044', '100', '349.00', '0.00');
  2605. INSERT INTO `nideshop_product` VALUES ('62', '1048005', '', '1048005', '100', '59.00', '0.00');
  2606. INSERT INTO `nideshop_product` VALUES ('63', '1051000', '', '1051000', '100', '180.00', '0.00');
  2607. INSERT INTO `nideshop_product` VALUES ('64', '1051001', '', '1051001', '100', '159.00', '0.00');
  2608. INSERT INTO `nideshop_product` VALUES ('65', '1051002', '', '1051002', '100', '228.00', '0.00');
  2609. INSERT INTO `nideshop_product` VALUES ('66', '1051003', '', '1051003', '100', '148.00', '0.00');
  2610. INSERT INTO `nideshop_product` VALUES ('67', '1055012', '', '1055012', '100', '39.00', '0.00');
  2611. INSERT INTO `nideshop_product` VALUES ('68', '1055016', '', '1055016', '100', '59.00', '0.00');
  2612. INSERT INTO `nideshop_product` VALUES ('69', '1055022', '', '1055022', '100', '4.90', '0.00');
  2613. INSERT INTO `nideshop_product` VALUES ('70', '1056002', '', '1056002', '100', '59.00', '0.00');
  2614. INSERT INTO `nideshop_product` VALUES ('71', '1057036', '', '1057036', '100', '79.00', '0.00');
  2615. INSERT INTO `nideshop_product` VALUES ('72', '1064000', '', '1064000', '100', '79.00', '0.00');
  2616. INSERT INTO `nideshop_product` VALUES ('73', '1064002', '', '1064002', '100', '69.00', '0.00');
  2617. INSERT INTO `nideshop_product` VALUES ('74', '1064003', '', '1064003', '100', '89.00', '0.00');
  2618. INSERT INTO `nideshop_product` VALUES ('75', '1064004', '', '1064004', '100', '99.00', '0.00');
  2619. INSERT INTO `nideshop_product` VALUES ('76', '1064006', '', '1064006', '100', '129.00', '0.00');
  2620. INSERT INTO `nideshop_product` VALUES ('77', '1064007', '', '1064007', '100', '249.00', '0.00');
  2621. INSERT INTO `nideshop_product` VALUES ('78', '1064021', '', '1064021', '100', '199.00', '0.00');
  2622. INSERT INTO `nideshop_product` VALUES ('79', '1064022', '', '1064022', '100', '299.00', '0.00');
  2623. INSERT INTO `nideshop_product` VALUES ('80', '1065004', '', '1065004', '100', '199.00', '0.00');
  2624. INSERT INTO `nideshop_product` VALUES ('81', '1065005', '', '1065005', '100', '249.00', '0.00');
  2625. INSERT INTO `nideshop_product` VALUES ('82', '1068010', '', '1068010', '100', '329.00', '0.00');
  2626. INSERT INTO `nideshop_product` VALUES ('83', '1068011', '', '1068011', '100', '399.00', '0.00');
  2627. INSERT INTO `nideshop_product` VALUES ('84', '1068012', '', '1068012', '100', '599.00', '0.00');
  2628. INSERT INTO `nideshop_product` VALUES ('85', '1070000', '', '1070000', '100', '26.00', '0.00');
  2629. INSERT INTO `nideshop_product` VALUES ('86', '1071004', '', '1071004', '100', '89.00', '0.00');
  2630. INSERT INTO `nideshop_product` VALUES ('87', '1071005', '', '1071005', '100', '39.00', '0.00');
  2631. INSERT INTO `nideshop_product` VALUES ('88', '1071006', '', '1071006', '100', '9.90', '0.00');
  2632. INSERT INTO `nideshop_product` VALUES ('89', '1072000', '', '1072000', '100', '89.00', '0.00');
  2633. INSERT INTO `nideshop_product` VALUES ('90', '1072001', '', '1072001', '100', '49.00', '0.00');
  2634. INSERT INTO `nideshop_product` VALUES ('91', '1073008', '', '1073008', '100', '149.00', '0.00');
  2635. INSERT INTO `nideshop_product` VALUES ('92', '1074001', '', '1074001', '100', '59.00', '0.00');
  2636. INSERT INTO `nideshop_product` VALUES ('93', '1075022', '', '1075022', '100', '39.00', '0.00');
  2637. INSERT INTO `nideshop_product` VALUES ('94', '1075023', '', '1075023', '100', '199.00', '0.00');
  2638. INSERT INTO `nideshop_product` VALUES ('95', '1075024', '', '1075024', '100', '2399.00', '0.00');
  2639. INSERT INTO `nideshop_product` VALUES ('96', '1081000', '', '1081000', '100', '49.00', '0.00');
  2640. INSERT INTO `nideshop_product` VALUES ('97', '1081002', '', '1081002', '100', '89.00', '0.00');
  2641. INSERT INTO `nideshop_product` VALUES ('98', '1083009', '', '1083009', '100', '299.00', '0.00');
  2642. INSERT INTO `nideshop_product` VALUES ('99', '1083010', '', '1083010', '100', '469.00', '0.00');
  2643. INSERT INTO `nideshop_product` VALUES ('100', '1084001', '', '1084001', '100', '249.00', '0.00');
  2644. INSERT INTO `nideshop_product` VALUES ('101', '1084003', '', '1084003', '100', '199.00', '0.00');
  2645. INSERT INTO `nideshop_product` VALUES ('102', '1085019', '', '1085019', '100', '349.00', '0.00');
  2646. INSERT INTO `nideshop_product` VALUES ('103', '1086015', '', '1086015', '100', '249.00', '0.00');
  2647. INSERT INTO `nideshop_product` VALUES ('104', '1086023', '', '1086023', '100', '19.90', '0.00');
  2648. INSERT INTO `nideshop_product` VALUES ('105', '1086024', '', '1086024', '100', '9.90', '0.00');
  2649. INSERT INTO `nideshop_product` VALUES ('106', '1086025', '', '1086025', '100', '49.00', '0.00');
  2650. INSERT INTO `nideshop_product` VALUES ('107', '1086026', '', '1086026', '100', '29.00', '0.00');
  2651. INSERT INTO `nideshop_product` VALUES ('108', '1086052', '', '1086052', '100', '859.00', '0.00');
  2652. INSERT INTO `nideshop_product` VALUES ('109', '1090004', '', '1090004', '100', '399.00', '0.00');
  2653. INSERT INTO `nideshop_product` VALUES ('110', '1092001', '', '1092001', '100', '29.00', '0.00');
  2654. INSERT INTO `nideshop_product` VALUES ('111', '1092005', '', '1092005', '100', '39.00', '0.00');
  2655. INSERT INTO `nideshop_product` VALUES ('112', '1092024', '', '1092024', '100', '1599.00', '0.00');
  2656. INSERT INTO `nideshop_product` VALUES ('113', '1092025', '', '1092025', '100', '19.90', '0.00');
  2657. INSERT INTO `nideshop_product` VALUES ('114', '1092026', '', '1092026', '100', '19.90', '0.00');
  2658. INSERT INTO `nideshop_product` VALUES ('115', '1092038', '', '1092038', '100', '39.00', '0.00');
  2659. INSERT INTO `nideshop_product` VALUES ('116', '1092039', '', '1092039', '100', '59.00', '0.00');
  2660. INSERT INTO `nideshop_product` VALUES ('117', '1093000', '', '1093000', '100', '39.00', '0.00');
  2661. INSERT INTO `nideshop_product` VALUES ('118', '1093001', '', '1093001', '100', '29.00', '0.00');
  2662. INSERT INTO `nideshop_product` VALUES ('119', '1093002', '', '1093002', '100', '49.00', '0.00');
  2663. INSERT INTO `nideshop_product` VALUES ('120', '1097004', '', '1097004', '100', '1699.00', '0.00');
  2664. INSERT INTO `nideshop_product` VALUES ('121', '1097005', '', '1097005', '100', '1199.00', '0.00');
  2665. INSERT INTO `nideshop_product` VALUES ('122', '1097006', '', '1097006', '100', '999.00', '0.00');
  2666. INSERT INTO `nideshop_product` VALUES ('123', '1097007', '', '1097007', '100', '759.00', '0.00');
  2667. INSERT INTO `nideshop_product` VALUES ('124', '1097009', '', '1097009', '100', '1599.00', '0.00');
  2668. INSERT INTO `nideshop_product` VALUES ('125', '1097011', '', '1097011', '100', '3899.00', '0.00');
  2669. INSERT INTO `nideshop_product` VALUES ('126', '1097012', '', '1097012', '100', '999.00', '0.00');
  2670. INSERT INTO `nideshop_product` VALUES ('127', '1097013', '', '1097013', '100', '2699.00', '0.00');
  2671. INSERT INTO `nideshop_product` VALUES ('128', '1097014', '', '1097014', '100', '4199.00', '0.00');
  2672. INSERT INTO `nideshop_product` VALUES ('129', '1097016', '', '1097016', '100', '2799.00', '0.00');
  2673. INSERT INTO `nideshop_product` VALUES ('130', '1097017', '', '1097017', '100', '2199.00', '0.00');
  2674. INSERT INTO `nideshop_product` VALUES ('131', '1100000', '', '1100000', '100', '79.00', '0.00');
  2675. INSERT INTO `nideshop_product` VALUES ('132', '1100001', '', '1100001', '100', '199.00', '0.00');
  2676. INSERT INTO `nideshop_product` VALUES ('133', '1100002', '', '1100002', '100', '189.00', '0.00');
  2677. INSERT INTO `nideshop_product` VALUES ('134', '1108029', '', '1108029', '100', '89.00', '0.00');
  2678. INSERT INTO `nideshop_product` VALUES ('135', '1108030', '', '1108030', '100', '39.00', '0.00');
  2679. INSERT INTO `nideshop_product` VALUES ('136', '1108031', '', '1108031', '100', '39.00', '0.00');
  2680. INSERT INTO `nideshop_product` VALUES ('137', '1108032', '', '1108032', '100', '29.00', '0.00');
  2681. INSERT INTO `nideshop_product` VALUES ('138', '1109004', '', '1109004', '100', '89.00', '0.00');
  2682. INSERT INTO `nideshop_product` VALUES ('139', '1109005', '', '1109005', '100', '79.00', '0.00');
  2683. INSERT INTO `nideshop_product` VALUES ('140', '1109008', '', '1109008', '100', '3999.00', '0.00');
  2684. INSERT INTO `nideshop_product` VALUES ('141', '1109034', '', '1109034', '100', '129.00', '0.00');
  2685. INSERT INTO `nideshop_product` VALUES ('142', '1110002', '', '1110002', '100', '119.00', '0.00');
  2686. INSERT INTO `nideshop_product` VALUES ('143', '1110003', '', '1110003', '100', '299.00', '0.00');
  2687. INSERT INTO `nideshop_product` VALUES ('144', '1110004', '', '1110004', '100', '299.00', '0.00');
  2688. INSERT INTO `nideshop_product` VALUES ('145', '1110007', '', '1110007', '100', '299.00', '0.00');
  2689. INSERT INTO `nideshop_product` VALUES ('146', '1110008', '', '1110008', '100', '99.00', '0.00');
  2690. INSERT INTO `nideshop_product` VALUES ('147', '1110013', '', '1110013', '100', '59.00', '0.00');
  2691. INSERT INTO `nideshop_product` VALUES ('148', '1110014', '', '1110014', '100', '69.00', '0.00');
  2692. INSERT INTO `nideshop_product` VALUES ('149', '1110015', '', '1110015', '100', '69.00', '0.00');
  2693. INSERT INTO `nideshop_product` VALUES ('150', '1110016', '', '1110016', '100', '39.00', '0.00');
  2694. INSERT INTO `nideshop_product` VALUES ('151', '1110017', '', '1110017', '100', '79.00', '0.00');
  2695. INSERT INTO `nideshop_product` VALUES ('152', '1110018', '', '1110018', '100', '79.00', '0.00');
  2696. INSERT INTO `nideshop_product` VALUES ('153', '1110019', '', '1110019', '100', '69.00', '0.00');
  2697. INSERT INTO `nideshop_product` VALUES ('154', '1111007', '', '1111007', '100', '78.00', '0.00');
  2698. INSERT INTO `nideshop_product` VALUES ('155', '1111010', '', '1111010', '100', '69.00', '0.00');
  2699. INSERT INTO `nideshop_product` VALUES ('156', '1113010', '', '1113010', '100', '59.00', '0.00');
  2700. INSERT INTO `nideshop_product` VALUES ('157', '1113011', '', '1113011', '100', '49.00', '0.00');
  2701. INSERT INTO `nideshop_product` VALUES ('158', '1113019', '', '1113019', '100', '208.00', '0.00');
  2702. INSERT INTO `nideshop_product` VALUES ('159', '1114011', '', '1114011', '100', '299.00', '0.00');
  2703. INSERT INTO `nideshop_product` VALUES ('160', '1115023', '', '1115023', '100', '1599.00', '0.00');
  2704. INSERT INTO `nideshop_product` VALUES ('161', '1115028', '', '1115028', '100', '299.00', '0.00');
  2705. INSERT INTO `nideshop_product` VALUES ('162', '1115052', '', '1115052', '100', '86.00', '0.00');
  2706. INSERT INTO `nideshop_product` VALUES ('163', '1115053', '', '1115053', '100', '299.00', '0.00');
  2707. INSERT INTO `nideshop_product` VALUES ('164', '1116004', '', '1116004', '100', '79.00', '0.00');
  2708. INSERT INTO `nideshop_product` VALUES ('165', '1116005', '', '1116005', '100', '79.00', '0.00');
  2709. INSERT INTO `nideshop_product` VALUES ('166', '1116008', '', '1116008', '100', '99.00', '0.00');
  2710. INSERT INTO `nideshop_product` VALUES ('167', '1116011', '', '1116011', '100', '36.00', '0.00');
  2711. INSERT INTO `nideshop_product` VALUES ('168', '1116030', '', '1116030', '100', '439.00', '0.00');
  2712. INSERT INTO `nideshop_product` VALUES ('169', '1116031', '', '1116031', '100', '439.00', '0.00');
  2713. INSERT INTO `nideshop_product` VALUES ('170', '1116032', '', '1116032', '100', '3499.00', '0.00');
  2714. INSERT INTO `nideshop_product` VALUES ('171', '1116033', '', '1116033', '100', '1399.00', '0.00');
  2715. INSERT INTO `nideshop_product` VALUES ('172', '1125010', '', '1125010', '100', '159.00', '0.00');
  2716. INSERT INTO `nideshop_product` VALUES ('173', '1125011', '', '1125011', '100', '139.00', '0.00');
  2717. INSERT INTO `nideshop_product` VALUES ('174', '1125016', '', '1125016', '100', '139.00', '0.00');
  2718. INSERT INTO `nideshop_product` VALUES ('175', '1125017', '', '1125017', '100', '99.00', '0.00');
  2719. INSERT INTO `nideshop_product` VALUES ('176', '1125026', '', '1125026', '100', '159.00', '0.00');
  2720. INSERT INTO `nideshop_product` VALUES ('177', '1127003', '', '1127003', '100', '2599.00', '0.00');
  2721. INSERT INTO `nideshop_product` VALUES ('178', '1127024', '', '1127024', '100', '39.00', '0.00');
  2722. INSERT INTO `nideshop_product` VALUES ('179', '1127025', '', '1127025', '100', '39.00', '0.00');
  2723. INSERT INTO `nideshop_product` VALUES ('180', '1127038', '', '1127038', '100', '359.00', '0.00');
  2724. INSERT INTO `nideshop_product` VALUES ('181', '1127039', '', '1127039', '100', '399.00', '0.00');
  2725. INSERT INTO `nideshop_product` VALUES ('182', '1127047', '', '1127047', '100', '29.00', '0.00');
  2726. INSERT INTO `nideshop_product` VALUES ('183', '1127052', '', '1127052', '100', '169.00', '0.00');
  2727. INSERT INTO `nideshop_product` VALUES ('184', '1128002', '', '1128002', '100', '599.00', '0.00');
  2728. INSERT INTO `nideshop_product` VALUES ('185', '1128010', '', '1128010', '100', '29.00', '0.00');
  2729. INSERT INTO `nideshop_product` VALUES ('186', '1128011', '', '1128011', '100', '79.00', '0.00');
  2730. INSERT INTO `nideshop_product` VALUES ('187', '1129015', '', '1129015', '100', '89.00', '0.00');
  2731. INSERT INTO `nideshop_product` VALUES ('188', '1129016', '', '1129016', '100', '29.00', '0.00');
  2732. INSERT INTO `nideshop_product` VALUES ('189', '1130037', '', '1130037', '100', '39.00', '0.00');
  2733. INSERT INTO `nideshop_product` VALUES ('190', '1130038', '', '1130038', '100', '89.00', '0.00');
  2734. INSERT INTO `nideshop_product` VALUES ('191', '1130039', '', '1130039', '100', '89.00', '0.00');
  2735. INSERT INTO `nideshop_product` VALUES ('192', '1130041', '', '1130041', '100', '109.00', '0.00');
  2736. INSERT INTO `nideshop_product` VALUES ('193', '1130042', '', '1130042', '100', '239.00', '0.00');
  2737. INSERT INTO `nideshop_product` VALUES ('194', '1130049', '', '1130049', '100', '429.00', '0.00');
  2738. INSERT INTO `nideshop_product` VALUES ('195', '1130056', '', '1130056', '100', '2299.00', '0.00');
  2739. INSERT INTO `nideshop_product` VALUES ('196', '1131017', '', '1131017', '100', '259.00', '0.00');
  2740. INSERT INTO `nideshop_product` VALUES ('197', '1134022', '', '1134022', '100', '79.00', '0.00');
  2741. INSERT INTO `nideshop_product` VALUES ('198', '1134030', '', '1134030', '100', '46.00', '0.00');
  2742. INSERT INTO `nideshop_product` VALUES ('199', '1134032', '', '1134032', '100', '49.00', '0.00');
  2743. INSERT INTO `nideshop_product` VALUES ('200', '1134036', '', '1134036', '100', '38.00', '0.00');
  2744. INSERT INTO `nideshop_product` VALUES ('201', '1134056', '', '1134056', '100', '429.00', '0.00');
  2745. INSERT INTO `nideshop_product` VALUES ('202', '1135000', '', '1135000', '100', '359.00', '0.00');
  2746. INSERT INTO `nideshop_product` VALUES ('203', '1135001', '', '1135001', '100', '459.00', '0.00');
  2747. INSERT INTO `nideshop_product` VALUES ('204', '1135002', '', '1135002', '100', '2599.00', '0.00');
  2748. INSERT INTO `nideshop_product` VALUES ('205', '1135050', '', '1135050', '100', '179.00', '0.00');
  2749. INSERT INTO `nideshop_product` VALUES ('206', '1135051', '', '1135051', '100', '299.00', '0.00');
  2750. INSERT INTO `nideshop_product` VALUES ('207', '1135052', '', '1135052', '100', '259.00', '0.00');
  2751. INSERT INTO `nideshop_product` VALUES ('208', '1135053', '', '1135053', '100', '429.00', '0.00');
  2752. INSERT INTO `nideshop_product` VALUES ('209', '1135054', '', '1135054', '100', '559.00', '0.00');
  2753. INSERT INTO `nideshop_product` VALUES ('210', '1135055', '', '1135055', '100', '399.00', '0.00');
  2754. INSERT INTO `nideshop_product` VALUES ('211', '1135056', '', '1135056', '100', '259.00', '0.00');
  2755. INSERT INTO `nideshop_product` VALUES ('212', '1135057', '', '1135057', '100', '199.00', '0.00');
  2756. INSERT INTO `nideshop_product` VALUES ('213', '1135058', '', '1135058', '100', '79.00', '0.00');
  2757. INSERT INTO `nideshop_product` VALUES ('214', '1135065', '', '1135065', '100', '69.00', '0.00');
  2758. INSERT INTO `nideshop_product` VALUES ('215', '1135072', '', '1135072', '100', '69.00', '0.00');
  2759. INSERT INTO `nideshop_product` VALUES ('216', '1135073', '', '1135073', '100', '69.00', '0.00');
  2760. INSERT INTO `nideshop_product` VALUES ('217', '1138000', '', '1138000', '100', '29.00', '0.00');
  2761. INSERT INTO `nideshop_product` VALUES ('218', '1138001', '', '1138001', '100', '79.00', '0.00');
  2762. INSERT INTO `nideshop_product` VALUES ('219', '1143006', '', '1143006', '100', '99.00', '0.00');
  2763. INSERT INTO `nideshop_product` VALUES ('220', '1143015', '', '1143015', '100', '79.00', '0.00');
  2764. INSERT INTO `nideshop_product` VALUES ('221', '1143016', '', '1143016', '100', '319.00', '0.00');
  2765. INSERT INTO `nideshop_product` VALUES ('222', '1143018', '', '1143018', '100', '68.00', '0.00');
  2766. INSERT INTO `nideshop_product` VALUES ('223', '1143019', '', '1143019', '100', '98.00', '0.00');
  2767. INSERT INTO `nideshop_product` VALUES ('224', '1143020', '', '1143020', '100', '168.00', '0.00');
  2768. INSERT INTO `nideshop_product` VALUES ('225', '1147045', '', '1147045', '100', '599.00', '0.00');
  2769. INSERT INTO `nideshop_product` VALUES ('226', '1147046', '', '1147046', '100', '599.00', '0.00');
  2770. INSERT INTO `nideshop_product` VALUES ('227', '1147047', '', '1147047', '100', '559.00', '0.00');
  2771. INSERT INTO `nideshop_product` VALUES ('228', '1147048', '', '1147048', '100', '559.00', '0.00');
  2772. INSERT INTO `nideshop_product` VALUES ('229', '1151012', '', '1151012', '100', '359.00', '0.00');
  2773. INSERT INTO `nideshop_product` VALUES ('230', '1151013', '', '1151013', '100', '359.00', '0.00');
  2774. INSERT INTO `nideshop_product` VALUES ('231', '1152004', '', '1152004', '100', '399.00', '0.00');
  2775. INSERT INTO `nideshop_product` VALUES ('232', '1152008', '', '1152008', '100', '29.00', '0.00');
  2776. INSERT INTO `nideshop_product` VALUES ('233', '1152009', '', '1152009', '100', '29.00', '0.00');
  2777. INSERT INTO `nideshop_product` VALUES ('234', '1152031', '', '1152031', '100', '99.00', '0.00');
  2778. INSERT INTO `nideshop_product` VALUES ('235', '1152095', '', '1152095', '100', '499.00', '0.00');
  2779. INSERT INTO `nideshop_product` VALUES ('236', '1152097', '', '1152097', '100', '399.00', '0.00');
  2780. INSERT INTO `nideshop_product` VALUES ('237', '1152100', '', '1152100', '100', '499.00', '0.00');
  2781. INSERT INTO `nideshop_product` VALUES ('238', '1152101', '', '1152101', '100', '888.00', '0.00');
  2782. INSERT INTO `nideshop_product` VALUES ('239', '1152161', '', '1152161', '100', '459.00', '0.00');
  2783. INSERT INTO `nideshop_product` VALUES ('240', '1153006', '', '1153006', '100', '1288.00', '0.00');
  2784. INSERT INTO `nideshop_product` VALUES ('241', '1155000', '', '1155000', '100', '399.00', '0.00');
  2785. INSERT INTO `nideshop_product` VALUES ('242', '1155015', '', '1155015', '100', '12.90', '0.00');
  2786. INSERT INTO `nideshop_product` VALUES ('243', '1156006', '', '1156006', '100', '699.00', '0.00');
  2787. INSERT INTO `nideshop_product` VALUES ('244', '1166008', '', '1166008', '100', '459.00', '533.00');
  2788. INSERT INTO `nideshop_product` VALUES ('245', '1181000', '2_5', '1181000', '100', '2578.00', '3333.00');
  2789. INSERT INTO `nideshop_product` VALUES ('246', '1181000', '1_5', '1181000', '100', '0.01', '3333.00');
  2790. -- ----------------------------
  2791. -- Table structure for `nideshop_related_goods`
  2792. -- ----------------------------
  2793. DROP TABLE IF EXISTS `nideshop_related_goods`;
  2794. CREATE TABLE `nideshop_related_goods` (
  2795. `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '主键',
  2796. `goods_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '商品Id',
  2797. `related_goods_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '关联商品id',
  2798. PRIMARY KEY (`id`)
  2799. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  2800. -- ----------------------------
  2801. -- Records of nideshop_related_goods
  2802. -- ----------------------------
  2803. -- ----------------------------
  2804. -- Table structure for `nideshop_search_history`
  2805. -- ----------------------------
  2806. DROP TABLE IF EXISTS `nideshop_search_history`;
  2807. CREATE TABLE `nideshop_search_history` (
  2808. `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '主键',
  2809. `keyword` char(50) NOT NULL COMMENT '关键字',
  2810. `from` varchar(45) DEFAULT '' COMMENT '搜索来源,如PC、小程序、APP等',
  2811. `add_time` int(11) NOT NULL DEFAULT '0' COMMENT '搜索时间',
  2812. `user_id` varchar(45) DEFAULT NULL COMMENT '会员Id',
  2813. PRIMARY KEY (`id`)
  2814. ) ENGINE=InnoDB AUTO_INCREMENT=48 DEFAULT CHARSET=utf8;
  2815. -- ----------------------------
  2816. -- Table structure for `nideshop_shipping`
  2817. -- ----------------------------
  2818. DROP TABLE IF EXISTS `nideshop_shipping`;
  2819. CREATE TABLE `nideshop_shipping` (
  2820. `id` int(11) NOT NULL AUTO_INCREMENT,
  2821. `code` varchar(50) DEFAULT NULL,
  2822. `name` varchar(100) DEFAULT NULL,
  2823. `status` int(1) unsigned zerofill NOT NULL DEFAULT '0' COMMENT '状态 0正常 1删除',
  2824. PRIMARY KEY (`id`)
  2825. ) ENGINE=InnoDB AUTO_INCREMENT=103 DEFAULT CHARSET=utf8;
  2826. -- ----------------------------
  2827. -- Records of nideshop_shipping
  2828. -- ----------------------------
  2829. INSERT INTO `nideshop_shipping` VALUES ('1', 'AJ', '安捷快递', '1');
  2830. INSERT INTO `nideshop_shipping` VALUES ('2', 'ANE', '安能物流', '1');
  2831. INSERT INTO `nideshop_shipping` VALUES ('3', 'AXD', '安信达快递', '1');
  2832. INSERT INTO `nideshop_shipping` VALUES ('4', 'BQXHM', '北青小红帽', '1');
  2833. INSERT INTO `nideshop_shipping` VALUES ('5', 'BFDF', '百福东方', '1');
  2834. INSERT INTO `nideshop_shipping` VALUES ('6', 'BTWL', '百世快运', '1');
  2835. INSERT INTO `nideshop_shipping` VALUES ('7', 'CCES', 'CCES快递', '1');
  2836. INSERT INTO `nideshop_shipping` VALUES ('8', 'CITY100', '城市100', '1');
  2837. INSERT INTO `nideshop_shipping` VALUES ('9', 'COE', 'COE东方快递', '1');
  2838. INSERT INTO `nideshop_shipping` VALUES ('10', 'CSCY', '长沙创一', '1');
  2839. INSERT INTO `nideshop_shipping` VALUES ('11', 'CDSTKY', '成都善途速运', '1');
  2840. INSERT INTO `nideshop_shipping` VALUES ('12', 'DBL', '德邦', '0');
  2841. INSERT INTO `nideshop_shipping` VALUES ('13', 'DSWL', 'D速物流', '1');
  2842. INSERT INTO `nideshop_shipping` VALUES ('14', 'DTWL', '大田物流', '1');
  2843. INSERT INTO `nideshop_shipping` VALUES ('15', 'EMS', 'EMS', '0');
  2844. INSERT INTO `nideshop_shipping` VALUES ('16', 'FAST', '快捷速递', '1');
  2845. INSERT INTO `nideshop_shipping` VALUES ('17', 'FEDEX', 'FEDEX联邦(国内件)', '1');
  2846. INSERT INTO `nideshop_shipping` VALUES ('18', 'FEDEX_GJ', 'FEDEX联邦(国际件)', '1');
  2847. INSERT INTO `nideshop_shipping` VALUES ('19', 'FKD', '飞康达', '1');
  2848. INSERT INTO `nideshop_shipping` VALUES ('20', 'GDEMS', '广东邮政', '1');
  2849. INSERT INTO `nideshop_shipping` VALUES ('21', 'GSD', '共速达', '1');
  2850. INSERT INTO `nideshop_shipping` VALUES ('22', 'GTO', '国通快递', '0');
  2851. INSERT INTO `nideshop_shipping` VALUES ('23', 'GTSD', '高铁速递', '1');
  2852. INSERT INTO `nideshop_shipping` VALUES ('24', 'HFWL', '汇丰物流', '0');
  2853. INSERT INTO `nideshop_shipping` VALUES ('25', 'HHTT', '天天快递', '0');
  2854. INSERT INTO `nideshop_shipping` VALUES ('26', 'HLWL', '恒路物流', '1');
  2855. INSERT INTO `nideshop_shipping` VALUES ('27', 'HOAU', '天地华宇', '1');
  2856. INSERT INTO `nideshop_shipping` VALUES ('28', 'hq568', '华强物流', '1');
  2857. INSERT INTO `nideshop_shipping` VALUES ('29', 'HTKY', '百世快递', '0');
  2858. INSERT INTO `nideshop_shipping` VALUES ('30', 'HXLWL', '华夏龙物流', '1');
  2859. INSERT INTO `nideshop_shipping` VALUES ('31', 'HYLSD', '好来运快递', '1');
  2860. INSERT INTO `nideshop_shipping` VALUES ('32', 'JGSD', '京广速递', '1');
  2861. INSERT INTO `nideshop_shipping` VALUES ('33', 'JIUYE', '九曳供应链', '1');
  2862. INSERT INTO `nideshop_shipping` VALUES ('34', 'JJKY', '佳吉快运', '1');
  2863. INSERT INTO `nideshop_shipping` VALUES ('35', 'JLDT', '嘉里物流', '1');
  2864. INSERT INTO `nideshop_shipping` VALUES ('36', 'JTKD', '捷特快递', '1');
  2865. INSERT INTO `nideshop_shipping` VALUES ('37', 'JXD', '急先达', '1');
  2866. INSERT INTO `nideshop_shipping` VALUES ('38', 'JYKD', '晋越快递', '1');
  2867. INSERT INTO `nideshop_shipping` VALUES ('39', 'JYM', '加运美', '1');
  2868. INSERT INTO `nideshop_shipping` VALUES ('40', 'JYWL', '佳怡物流', '1');
  2869. INSERT INTO `nideshop_shipping` VALUES ('41', 'KYWL', '跨越物流', '1');
  2870. INSERT INTO `nideshop_shipping` VALUES ('42', 'LB', '龙邦快递', '1');
  2871. INSERT INTO `nideshop_shipping` VALUES ('43', 'LHT', '联昊通速递', '1');
  2872. INSERT INTO `nideshop_shipping` VALUES ('44', 'MHKD', '民航快递', '1');
  2873. INSERT INTO `nideshop_shipping` VALUES ('45', 'MLWL', '明亮物流', '1');
  2874. INSERT INTO `nideshop_shipping` VALUES ('46', 'NEDA', '能达速递', '1');
  2875. INSERT INTO `nideshop_shipping` VALUES ('47', 'PADTF', '平安达腾飞快递', '1');
  2876. INSERT INTO `nideshop_shipping` VALUES ('48', 'QCKD', '全晨快递', '1');
  2877. INSERT INTO `nideshop_shipping` VALUES ('49', 'QFKD', '全峰快递', '1');
  2878. INSERT INTO `nideshop_shipping` VALUES ('50', 'QRT', '全日通快递', '1');
  2879. INSERT INTO `nideshop_shipping` VALUES ('51', 'RFD', '如风达', '0');
  2880. INSERT INTO `nideshop_shipping` VALUES ('52', 'SAD', '赛澳递', '1');
  2881. INSERT INTO `nideshop_shipping` VALUES ('53', 'SAWL', '圣安物流', '1');
  2882. INSERT INTO `nideshop_shipping` VALUES ('54', 'SBWL', '盛邦物流', '1');
  2883. INSERT INTO `nideshop_shipping` VALUES ('55', 'SDWL', '上大物流', '1');
  2884. INSERT INTO `nideshop_shipping` VALUES ('56', 'SF', '顺丰快递', '0');
  2885. INSERT INTO `nideshop_shipping` VALUES ('57', 'SFWL', '盛丰物流', '1');
  2886. INSERT INTO `nideshop_shipping` VALUES ('58', 'SHWL', '盛辉物流', '1');
  2887. INSERT INTO `nideshop_shipping` VALUES ('59', 'ST', '速通物流', '1');
  2888. INSERT INTO `nideshop_shipping` VALUES ('60', 'STO', '申通快递', '0');
  2889. INSERT INTO `nideshop_shipping` VALUES ('61', 'STWL', '速腾快递', '1');
  2890. INSERT INTO `nideshop_shipping` VALUES ('62', 'SURE', '速尔快递', '1');
  2891. INSERT INTO `nideshop_shipping` VALUES ('63', 'TSSTO', '唐山申通', '1');
  2892. INSERT INTO `nideshop_shipping` VALUES ('64', 'UAPEX', '全一快递', '1');
  2893. INSERT INTO `nideshop_shipping` VALUES ('65', 'UC', '优速快递', '1');
  2894. INSERT INTO `nideshop_shipping` VALUES ('66', 'WJWL', '万家物流', '1');
  2895. INSERT INTO `nideshop_shipping` VALUES ('67', 'WXWL', '万象物流', '1');
  2896. INSERT INTO `nideshop_shipping` VALUES ('68', 'XBWL', '新邦物流', '1');
  2897. INSERT INTO `nideshop_shipping` VALUES ('69', 'XFEX', '信丰快递', '1');
  2898. INSERT INTO `nideshop_shipping` VALUES ('70', 'XYT', '希优特', '1');
  2899. INSERT INTO `nideshop_shipping` VALUES ('71', 'XJ', '新杰物流', '1');
  2900. INSERT INTO `nideshop_shipping` VALUES ('72', 'YADEX', '源安达快递', '1');
  2901. INSERT INTO `nideshop_shipping` VALUES ('73', 'YCWL', '远成物流', '1');
  2902. INSERT INTO `nideshop_shipping` VALUES ('74', 'YD', '韵达快递', '0');
  2903. INSERT INTO `nideshop_shipping` VALUES ('75', 'YDH', '义达国际物流', '1');
  2904. INSERT INTO `nideshop_shipping` VALUES ('76', 'YFEX', '越丰物流', '1');
  2905. INSERT INTO `nideshop_shipping` VALUES ('77', 'YFHEX', '原飞航物流', '1');
  2906. INSERT INTO `nideshop_shipping` VALUES ('78', 'YFSD', '亚风快递', '1');
  2907. INSERT INTO `nideshop_shipping` VALUES ('79', 'YTKD', '运通快递', '1');
  2908. INSERT INTO `nideshop_shipping` VALUES ('80', 'YTO', '圆通速递', '0');
  2909. INSERT INTO `nideshop_shipping` VALUES ('81', 'YXKD', '亿翔快递', '1');
  2910. INSERT INTO `nideshop_shipping` VALUES ('82', 'YZPY', '邮政平邮/小包', '1');
  2911. INSERT INTO `nideshop_shipping` VALUES ('83', 'ZENY', '增益快递', '1');
  2912. INSERT INTO `nideshop_shipping` VALUES ('84', 'ZHQKD', '汇强快递', '1');
  2913. INSERT INTO `nideshop_shipping` VALUES ('85', 'ZJS', '宅急送', '1');
  2914. INSERT INTO `nideshop_shipping` VALUES ('86', 'ZTE', '众通快递', '1');
  2915. INSERT INTO `nideshop_shipping` VALUES ('87', 'ZTKY', '中铁快运', '1');
  2916. INSERT INTO `nideshop_shipping` VALUES ('88', 'ZTO', '中通速递', '0');
  2917. INSERT INTO `nideshop_shipping` VALUES ('89', 'ZTWL', '中铁物流', '0');
  2918. INSERT INTO `nideshop_shipping` VALUES ('90', 'ZYWL', '中邮物流', '0');
  2919. INSERT INTO `nideshop_shipping` VALUES ('91', 'AMAZON', '亚马逊物流', '0');
  2920. INSERT INTO `nideshop_shipping` VALUES ('92', 'SUBIDA', '速必达物流', '1');
  2921. INSERT INTO `nideshop_shipping` VALUES ('93', 'RFEX', '瑞丰速递', '1');
  2922. INSERT INTO `nideshop_shipping` VALUES ('94', 'QUICK', '快客快递', '1');
  2923. INSERT INTO `nideshop_shipping` VALUES ('95', 'CJKD', '城际快递', '1');
  2924. INSERT INTO `nideshop_shipping` VALUES ('96', 'CNPEX', 'CNPEX中邮快递', '1');
  2925. INSERT INTO `nideshop_shipping` VALUES ('97', 'HOTSCM', '鸿桥供应链', '1');
  2926. INSERT INTO `nideshop_shipping` VALUES ('98', 'HPTEX', '海派通物流公司', '1');
  2927. INSERT INTO `nideshop_shipping` VALUES ('99', 'AYCA', '澳邮专线', '1');
  2928. INSERT INTO `nideshop_shipping` VALUES ('100', 'PANEX', '泛捷快递', '1');
  2929. INSERT INTO `nideshop_shipping` VALUES ('101', 'PCA', 'PCA Express', '1');
  2930. INSERT INTO `nideshop_shipping` VALUES ('102', 'UEQ', 'UEQ Express', '1');
  2931. -- ----------------------------
  2932. -- Table structure for `nideshop_sms_log`
  2933. -- ----------------------------
  2934. DROP TABLE IF EXISTS `nideshop_sms_log`;
  2935. CREATE TABLE `nideshop_sms_log` (
  2936. `id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT COMMENT '主键',
  2937. `user_id` int(11) NOT NULL,
  2938. `phone` varchar(32) DEFAULT NULL,
  2939. `log_date` bigint(20) DEFAULT NULL,
  2940. `sms_code` varchar(12) DEFAULT NULL,
  2941. `send_status` bigint(20) DEFAULT NULL,
  2942. `sms_text` varchar(255) DEFAULT NULL COMMENT '1成功 0失败',
  2943. PRIMARY KEY (`id`)
  2944. ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;
  2945. -- ----------------------------
  2946. -- Records of nideshop_sms_log
  2947. -- ----------------------------
  2948. INSERT INTO `nideshop_sms_log` VALUES ('2', '1', '18652937243', '1503643657', '4264', null, '登录验证码4264,验证码时效为30分钟。如有疑问请咨询400-111-8220');
  2949. INSERT INTO `nideshop_sms_log` VALUES ('3', '19', '15209831990', '1505798624', '6012', null, '登录验证码6012,验证码时效为30分钟。如有疑问请咨询400-111-8220');
  2950. -- ----------------------------
  2951. -- Table structure for `nideshop_specification`
  2952. -- ----------------------------
  2953. DROP TABLE IF EXISTS `nideshop_specification`;
  2954. CREATE TABLE `nideshop_specification` (
  2955. `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '主键',
  2956. `name` varchar(60) NOT NULL DEFAULT '' COMMENT '规范名称',
  2957. `sort_order` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT '排序',
  2958. PRIMARY KEY (`id`)
  2959. ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8 COMMENT='规格表';
  2960. -- ----------------------------
  2961. -- Records of nideshop_specification
  2962. -- ----------------------------
  2963. INSERT INTO `nideshop_specification` VALUES ('1', '颜色', '1');
  2964. INSERT INTO `nideshop_specification` VALUES ('2', '规格', '2');
  2965. INSERT INTO `nideshop_specification` VALUES ('4', '重量', '3');
  2966. -- ----------------------------
  2967. -- Table structure for `nideshop_topic`
  2968. -- ----------------------------
  2969. DROP TABLE IF EXISTS `nideshop_topic`;
  2970. CREATE TABLE `nideshop_topic` (
  2971. `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '主键',
  2972. `title` varchar(255) NOT NULL DEFAULT '''''' COMMENT '活动主题',
  2973. `content` text COMMENT '活动内容',
  2974. `avatar` varchar(255) NOT NULL DEFAULT '' COMMENT '化名',
  2975. `item_pic_url` varchar(255) NOT NULL DEFAULT '' COMMENT '活动条例图片',
  2976. `subtitle` varchar(255) NOT NULL DEFAULT '''' COMMENT '子标题',
  2977. `topic_category_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '活动类别',
  2978. `price_info` decimal(10,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '活动价格',
  2979. `read_count` varchar(255) NOT NULL DEFAULT '0',
  2980. `scene_pic_url` varchar(255) NOT NULL DEFAULT '' COMMENT '场景图片链接',
  2981. `topic_template_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '活动模板Id',
  2982. `topic_tag_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '活动标签Id',
  2983. KEY `topic_id` (`id`)
  2984. ) ENGINE=InnoDB AUTO_INCREMENT=315 DEFAULT CHARSET=utf8;
  2985. -- ----------------------------
  2986. -- Records of nideshop_topic
  2987. -- ----------------------------
  2988. INSERT INTO `nideshop_topic` VALUES ('314', '关爱他成长的每一个足迹', '<p><img src=\"//yanxuan.nosdn.127.net/75c55a13fde5eb2bc2dd6813b4c565cc.jpg\" class=\"fr-fin\"><img src=\"//yanxuan.nosdn.127.net/e27e1de2b271a28a21c10213b9df7e95.jpg\" class=\"fr-fin\"><img src=\"//yanxuan.nosdn.127.net/9d413d1d28f753cb19096b533d53418d.jpg\" class=\"fr-fin\"><img src=\"//yanxuan.nosdn.127.net/64b0f2f350969e9818a3b6c43c217325.jpg\" class=\"fr-fin\"><img src=\"//yanxuan.nosdn.127.net/a668e6ae7f1fa45565c1eac221787570.jpg\" class=\"fr-fin\"><img src=\"//yanxuan.nosdn.127.net/0d4004e19728f2707f08f4be79bbc774.jpg\" class=\"fr-fin\"><img src=\"//yanxuan.nosdn.127.net/79ee021bbe97de7ecda691de6787241f.jpg\" class=\"fr-fin\"></p>', 'https://yanxuan.nosdn.127.net/14943186689221563.png', 'https://yanxuan.nosdn.127.net/14943267735961674.jpg', '专业运动品牌同厂,毛毛虫鞋买二送一', '2', '0.00', '6.4k', 'https://yanxuan.nosdn.127.net/14943267735961674.jpg', '0', '0');
  2989. INSERT INTO `nideshop_topic` VALUES ('313', '一次解决5个节日送礼难题', '<img src=\"//yanxuan.nosdn.127.net/75c55a13fde5eb2bc2dd6813b4c565cc.jpg\">\n <img src=\"//yanxuan.nosdn.127.net/e27e1de2b271a28a21c10213b9df7e95.jpg\">\n <img src=\"//yanxuan.nosdn.127.net/9d413d1d28f753cb19096b533d53418d.jpg\">\n <img src=\"//yanxuan.nosdn.127.net/64b0f2f350969e9818a3b6c43c217325.jpg\">\n <img src=\"//yanxuan.nosdn.127.net/a668e6ae7f1fa45565c1eac221787570.jpg\">\n <img src=\"//yanxuan.nosdn.127.net/0d4004e19728f2707f08f4be79bbc774.jpg\">\n <img src=\"//yanxuan.nosdn.127.net/79ee021bbe97de7ecda691de6787241f.jpg\">', 'https://yanxuan.nosdn.127.net/14942967243991290.png', 'https://yanxuan.nosdn.127.net/14942996754171334.jpg', '这些就是他们想要的礼物清单', '0', '59.90', '7.8k', 'https://yanxuan.nosdn.127.net/14942996754171334.jpg', '0', '0');
  2990. INSERT INTO `nideshop_topic` VALUES ('300', '秒杀化学洗涤剂的纯天然皂', '<img src=\"//yanxuan.nosdn.127.net/75c55a13fde5eb2bc2dd6813b4c565cc.jpg\">\n <img src=\"//yanxuan.nosdn.127.net/e27e1de2b271a28a21c10213b9df7e95.jpg\">\n <img src=\"//yanxuan.nosdn.127.net/9d413d1d28f753cb19096b533d53418d.jpg\">\n <img src=\"//yanxuan.nosdn.127.net/64b0f2f350969e9818a3b6c43c217325.jpg\">\n <img src=\"//yanxuan.nosdn.127.net/a668e6ae7f1fa45565c1eac221787570.jpg\">\n <img src=\"//yanxuan.nosdn.127.net/0d4004e19728f2707f08f4be79bbc774.jpg\">\n <img src=\"//yanxuan.nosdn.127.net/79ee021bbe97de7ecda691de6787241f.jpg\">', 'https://yanxuan.nosdn.127.net/14939843011001088.png', 'https://yanxuan.nosdn.127.net/14939843143621089.jpg', '前段时间有朋友跟我抱怨,和婆婆住到一起才发现生活理念有太多不和。别的不提,光是洗...', '1', '0.00', '15.3k', 'https://yanxuan.nosdn.127.net/14939843143621089.jpg', '0', '0');
  2991. INSERT INTO `nideshop_topic` VALUES ('299', '买过的人都说它是差旅神器', '<img src=\"//yanxuan.nosdn.127.net/75c55a13fde5eb2bc2dd6813b4c565cc.jpg\">\n <img src=\"//yanxuan.nosdn.127.net/e27e1de2b271a28a21c10213b9df7e95.jpg\">\n <img src=\"//yanxuan.nosdn.127.net/9d413d1d28f753cb19096b533d53418d.jpg\">\n <img src=\"//yanxuan.nosdn.127.net/64b0f2f350969e9818a3b6c43c217325.jpg\">\n <img src=\"//yanxuan.nosdn.127.net/a668e6ae7f1fa45565c1eac221787570.jpg\">\n <img src=\"//yanxuan.nosdn.127.net/0d4004e19728f2707f08f4be79bbc774.jpg\">\n <img src=\"//yanxuan.nosdn.127.net/79ee021bbe97de7ecda691de6787241f.jpg\">', 'https://yanxuan.nosdn.127.net/14938873720850678.png', 'https://yanxuan.nosdn.127.net/14938873919030679.jpg', '许多人经历过旅途中内裤洗晾不便的烦恼,尤其与旅伴同居一室时,晾在卫生间里的内裤更...', '1', '0.00', '28.7k', 'https://yanxuan.nosdn.127.net/14938873919030679.jpg', '0', '0');
  2992. INSERT INTO `nideshop_topic` VALUES ('295', '他们在严选遇见的新生活', '<img src=\"//yanxuan.nosdn.127.net/75c55a13fde5eb2bc2dd6813b4c565cc.jpg\">\n <img src=\"//yanxuan.nosdn.127.net/e27e1de2b271a28a21c10213b9df7e95.jpg\">\n <img src=\"//yanxuan.nosdn.127.net/9d413d1d28f753cb19096b533d53418d.jpg\">\n <img src=\"//yanxuan.nosdn.127.net/64b0f2f350969e9818a3b6c43c217325.jpg\">\n <img src=\"//yanxuan.nosdn.127.net/a668e6ae7f1fa45565c1eac221787570.jpg\">\n <img src=\"//yanxuan.nosdn.127.net/0d4004e19728f2707f08f4be79bbc774.jpg\">\n <img src=\"//yanxuan.nosdn.127.net/79ee021bbe97de7ecda691de6787241f.jpg\">', 'https://yanxuan.nosdn.127.net/14937987677390284.png', 'https://yanxuan.nosdn.127.net/14938092956370380.jpg', '多款商品直减中,最高直减400元', '0', '35.80', '36.6k', 'https://yanxuan.nosdn.127.net/14938092956370380.jpg', '0', '0');
  2993. INSERT INTO `nideshop_topic` VALUES ('294', '这只锅,可以从祖母用到孙辈', '<img src=\"//yanxuan.nosdn.127.net/75c55a13fde5eb2bc2dd6813b4c565cc.jpg\">\n <img src=\"//yanxuan.nosdn.127.net/e27e1de2b271a28a21c10213b9df7e95.jpg\">\n <img src=\"//yanxuan.nosdn.127.net/9d413d1d28f753cb19096b533d53418d.jpg\">\n <img src=\"//yanxuan.nosdn.127.net/64b0f2f350969e9818a3b6c43c217325.jpg\">\n <img src=\"//yanxuan.nosdn.127.net/a668e6ae7f1fa45565c1eac221787570.jpg\">\n <img src=\"//yanxuan.nosdn.127.net/0d4004e19728f2707f08f4be79bbc774.jpg\">\n <img src=\"//yanxuan.nosdn.127.net/79ee021bbe97de7ecda691de6787241f.jpg\">', 'https://yanxuan.nosdn.127.net/14937214529340142.png', 'https://yanxuan.nosdn.127.net/14937214454750141.jpg', '买100年传世珐琅锅送迷你马卡龙色小锅', '4', '149.00', '108.1k', 'https://yanxuan.nosdn.127.net/14937214454750141.jpg', '0', '0');
  2994. INSERT INTO `nideshop_topic` VALUES ('291', '舒适新主张', '<img src=\"//yanxuan.nosdn.127.net/75c55a13fde5eb2bc2dd6813b4c565cc.jpg\">\n <img src=\"//yanxuan.nosdn.127.net/e27e1de2b271a28a21c10213b9df7e95.jpg\">\n <img src=\"//yanxuan.nosdn.127.net/9d413d1d28f753cb19096b533d53418d.jpg\">\n <img src=\"//yanxuan.nosdn.127.net/64b0f2f350969e9818a3b6c43c217325.jpg\">\n <img src=\"//yanxuan.nosdn.127.net/a668e6ae7f1fa45565c1eac221787570.jpg\">\n <img src=\"//yanxuan.nosdn.127.net/0d4004e19728f2707f08f4be79bbc774.jpg\">\n <img src=\"//yanxuan.nosdn.127.net/79ee021bbe97de7ecda691de6787241f.jpg\">', 'https://yanxuan.nosdn.127.net/14933596154560938.png', 'https://yanxuan.nosdn.127.net/14939496197300723.jpg', '如何挑选适合自己的好物?', '0', '29.00', '67.8k', 'https://yanxuan.nosdn.127.net/14939496197300723.jpg', '0', '0');
  2995. INSERT INTO `nideshop_topic` VALUES ('289', '专业运动袜也可以高性价比', '<img src=\"//yanxuan.nosdn.127.net/75c55a13fde5eb2bc2dd6813b4c565cc.jpg\">\n <img src=\"//yanxuan.nosdn.127.net/e27e1de2b271a28a21c10213b9df7e95.jpg\">\n <img src=\"//yanxuan.nosdn.127.net/9d413d1d28f753cb19096b533d53418d.jpg\">\n <img src=\"//yanxuan.nosdn.127.net/64b0f2f350969e9818a3b6c43c217325.jpg\">\n <img src=\"//yanxuan.nosdn.127.net/a668e6ae7f1fa45565c1eac221787570.jpg\">\n <img src=\"//yanxuan.nosdn.127.net/0d4004e19728f2707f08f4be79bbc774.jpg\">\n <img src=\"//yanxuan.nosdn.127.net/79ee021bbe97de7ecda691de6787241f.jpg\">', 'https://yanxuan.nosdn.127.net/14932840884890614.png', 'https://yanxuan.nosdn.127.net/14932840600970609.jpg', '越来越多运动人士意识到,运动鞋要购置好的,鞋里的运动袜也不可忽视。专业运动袜帮助...', '1', '0.00', '11.9k', 'https://yanxuan.nosdn.127.net/14932840600970609.jpg', '0', '0');
  2996. INSERT INTO `nideshop_topic` VALUES ('287', '严选新式样板间', '<img src=\"//yanxuan.nosdn.127.net/75c55a13fde5eb2bc2dd6813b4c565cc.jpg\">\n <img src=\"//yanxuan.nosdn.127.net/e27e1de2b271a28a21c10213b9df7e95.jpg\">\n <img src=\"//yanxuan.nosdn.127.net/9d413d1d28f753cb19096b533d53418d.jpg\">\n <img src=\"//yanxuan.nosdn.127.net/64b0f2f350969e9818a3b6c43c217325.jpg\">\n <img src=\"//yanxuan.nosdn.127.net/a668e6ae7f1fa45565c1eac221787570.jpg\">\n <img src=\"//yanxuan.nosdn.127.net/0d4004e19728f2707f08f4be79bbc774.jpg\">\n <img src=\"//yanxuan.nosdn.127.net/79ee021bbe97de7ecda691de6787241f.jpg\">', 'https://yanxuan.nosdn.127.net/14931133750100134.png', 'https://yanxuan.nosdn.127.net/14931970965550315.jpg', '一种软装一个家', '3', '29.90', '55.6k', 'https://yanxuan.nosdn.127.net/14931970965550315.jpg', '0', '0');
  2997. INSERT INTO `nideshop_topic` VALUES ('286', '无“油”无虑的甜蜜酥脆', '<img src=\"//yanxuan.nosdn.127.net/75c55a13fde5eb2bc2dd6813b4c565cc.jpg\">\n <img src=\"//yanxuan.nosdn.127.net/e27e1de2b271a28a21c10213b9df7e95.jpg\">\n <img src=\"//yanxuan.nosdn.127.net/9d413d1d28f753cb19096b533d53418d.jpg\">\n <img src=\"//yanxuan.nosdn.127.net/64b0f2f350969e9818a3b6c43c217325.jpg\">\n <img src=\"//yanxuan.nosdn.127.net/a668e6ae7f1fa45565c1eac221787570.jpg\">\n <img src=\"//yanxuan.nosdn.127.net/0d4004e19728f2707f08f4be79bbc774.jpg\">\n <img src=\"//yanxuan.nosdn.127.net/79ee021bbe97de7ecda691de6787241f.jpg\">', 'https://yanxuan.nosdn.127.net/14931121505610125.png', 'https://yanxuan.nosdn.127.net/14931121822100127.jpg', '大家都知道,饮食组是严选体重最重的一组,基本上每个新人都能在一个月之内迅速长胖。...', '1', '0.00', '15.6k', 'https://yanxuan.nosdn.127.net/14931121822100127.jpg', '0', '0');
  2998. INSERT INTO `nideshop_topic` VALUES ('281', '条纹新风尚', '<img src=\"//yanxuan.nosdn.127.net/75c55a13fde5eb2bc2dd6813b4c565cc.jpg\">\n <img src=\"//yanxuan.nosdn.127.net/e27e1de2b271a28a21c10213b9df7e95.jpg\">\n <img src=\"//yanxuan.nosdn.127.net/9d413d1d28f753cb19096b533d53418d.jpg\">\n <img src=\"//yanxuan.nosdn.127.net/64b0f2f350969e9818a3b6c43c217325.jpg\">\n <img src=\"//yanxuan.nosdn.127.net/a668e6ae7f1fa45565c1eac221787570.jpg\">\n <img src=\"//yanxuan.nosdn.127.net/0d4004e19728f2707f08f4be79bbc774.jpg\">\n <img src=\"//yanxuan.nosdn.127.net/79ee021bbe97de7ecda691de6787241f.jpg\">', 'https://yanxuan.nosdn.127.net/14926859949660827.png', 'https://yanxuan.nosdn.127.net/14926859849200826.jpg', '经典百搭,时尚线条', '3', '29.00', '76.5k', 'https://yanxuan.nosdn.127.net/14926859849200826.jpg', '0', '0');
  2999. INSERT INTO `nideshop_topic` VALUES ('282', '成就一室笋香', '<p><img src=\"//yanxuan.nosdn.127.net/75c55a13fde5eb2bc2dd6813b4c565cc.jpg\" class=\"fr-fin\" alt=\"title\" title=\"title\"><img src=\"//yanxuan.nosdn.127.net/e27e1de2b271a28a21c10213b9df7e95.jpg\" class=\"fr-fin\"><img src=\"//yanxuan.nosdn.127.net/9d413d1d28f753cb19096b533d53418d.jpg\" class=\"fr-fin\"><img src=\"//yanxuan.nosdn.127.net/64b0f2f350969e9818a3b6c43c217325.jpg\" class=\"fr-fin\"><img src=\"//yanxuan.nosdn.127.net/a668e6ae7f1fa45565c1eac221787570.jpg\" class=\"fr-fin\"><img src=\"//yanxuan.nosdn.127.net/0d4004e19728f2707f08f4be79bbc774.jpg\" class=\"fr-fin\"><img src=\"//yanxuan.nosdn.127.net/79ee021bbe97de7ecda691de6787241f.jpg\" class=\"fr-fin\"></p>', 'https://yanxuan.nosdn.127.net/14927695155801070.png', 'https://yanxuan.nosdn.127.net/14927695046601069.jpg', '三石哥办公室常备小食推荐', '2', '12.00', '40.9k', 'https://yanxuan.nosdn.127.net/14927695046601069.jpg', '0', '0');
  3000. INSERT INTO `nideshop_topic` VALUES ('283', '孩子成长中少不了的一双鞋', '<img src=\"//yanxuan.nosdn.127.net/75c55a13fde5eb2bc2dd6813b4c565cc.jpg\">\n <img src=\"//yanxuan.nosdn.127.net/e27e1de2b271a28a21c10213b9df7e95.jpg\">\n <img src=\"//yanxuan.nosdn.127.net/9d413d1d28f753cb19096b533d53418d.jpg\">\n <img src=\"//yanxuan.nosdn.127.net/64b0f2f350969e9818a3b6c43c217325.jpg\">\n <img src=\"//yanxuan.nosdn.127.net/a668e6ae7f1fa45565c1eac221787570.jpg\">\n <img src=\"//yanxuan.nosdn.127.net/0d4004e19728f2707f08f4be79bbc774.jpg\">\n <img src=\"//yanxuan.nosdn.127.net/79ee021bbe97de7ecda691de6787241f.jpg\">', 'https://yanxuan.nosdn.127.net/14927748094971079.png', 'https://yanxuan.nosdn.127.net/14927748974441080.jpg', '说起毛毛虫鞋,好处实在太多了,作为一个2岁孩子的宝妈选品员,按捺不住想告诉大家,...', '1', '0.00', '42.5k', 'https://yanxuan.nosdn.127.net/14927748974441080.jpg', '0', '0');
  3001. INSERT INTO `nideshop_topic` VALUES ('277', '治愈生活的满怀柔软', '<img src=\"//yanxuan.nosdn.127.net/75c55a13fde5eb2bc2dd6813b4c565cc.jpg\">\n <img src=\"//yanxuan.nosdn.127.net/e27e1de2b271a28a21c10213b9df7e95.jpg\">\n <img src=\"//yanxuan.nosdn.127.net/9d413d1d28f753cb19096b533d53418d.jpg\">\n <img src=\"//yanxuan.nosdn.127.net/64b0f2f350969e9818a3b6c43c217325.jpg\">\n <img src=\"//yanxuan.nosdn.127.net/a668e6ae7f1fa45565c1eac221787570.jpg\">\n <img src=\"//yanxuan.nosdn.127.net/0d4004e19728f2707f08f4be79bbc774.jpg\">\n <img src=\"//yanxuan.nosdn.127.net/79ee021bbe97de7ecda691de6787241f.jpg\">', 'https://yanxuan.nosdn.127.net/14926748590030593.png', 'https://yanxuan.nosdn.127.net/14926737925770587.jpg', '太鼓抱枕的上架历程,是从失踪开始的。由于表面的绒感,最初它被安排在秋冬季上架。某...', '1', '0.00', '19.6k', 'https://yanxuan.nosdn.127.net/14926737925770587.jpg', '0', '0');
  3002. INSERT INTO `nideshop_topic` VALUES ('274', '没有软木拖,怎么过夏天', '<img src=\"//yanxuan.nosdn.127.net/75c55a13fde5eb2bc2dd6813b4c565cc.jpg\">\n <img src=\"//yanxuan.nosdn.127.net/e27e1de2b271a28a21c10213b9df7e95.jpg\">\n <img src=\"//yanxuan.nosdn.127.net/9d413d1d28f753cb19096b533d53418d.jpg\">\n <img src=\"//yanxuan.nosdn.127.net/64b0f2f350969e9818a3b6c43c217325.jpg\">\n <img src=\"//yanxuan.nosdn.127.net/a668e6ae7f1fa45565c1eac221787570.jpg\">\n <img src=\"//yanxuan.nosdn.127.net/0d4004e19728f2707f08f4be79bbc774.jpg\">\n <img src=\"//yanxuan.nosdn.127.net/79ee021bbe97de7ecda691de6787241f.jpg\">', 'https://yanxuan.nosdn.127.net/14925821004620235.png', 'https://yanxuan.nosdn.127.net/14925822213780237.jpg', '刚入四月,杭州的气温就已升高至30度。店庆时买了软木拖的用户,陆续发回评价说,很...', '1', '0.00', '46.4k', 'https://yanxuan.nosdn.127.net/14925822213780237.jpg', '0', '0');
  3003. INSERT INTO `nideshop_topic` VALUES ('272', '料理也要精细简单', '<img src=\"//yanxuan.nosdn.127.net/75c55a13fde5eb2bc2dd6813b4c565cc.jpg\">\n <img src=\"//yanxuan.nosdn.127.net/e27e1de2b271a28a21c10213b9df7e95.jpg\">\n <img src=\"//yanxuan.nosdn.127.net/9d413d1d28f753cb19096b533d53418d.jpg\">\n <img src=\"//yanxuan.nosdn.127.net/64b0f2f350969e9818a3b6c43c217325.jpg\">\n <img src=\"//yanxuan.nosdn.127.net/a668e6ae7f1fa45565c1eac221787570.jpg\">\n <img src=\"//yanxuan.nosdn.127.net/0d4004e19728f2707f08f4be79bbc774.jpg\">\n <img src=\"//yanxuan.nosdn.127.net/79ee021bbe97de7ecda691de6787241f.jpg\">', 'https://yanxuan.nosdn.127.net/14925201467400187.png', 'https://yanxuan.nosdn.127.net/14925200530030186.jpg', '享受天然的味道,日子每天都好新鲜', '2', '69.00', '125.6k', 'https://yanxuan.nosdn.127.net/14925200530030186.jpg', '0', '0');
  3004. INSERT INTO `nideshop_topic` VALUES ('271', '选式新懒人', '<img src=\"//yanxuan.nosdn.127.net/75c55a13fde5eb2bc2dd6813b4c565cc.jpg\">\n <img src=\"//yanxuan.nosdn.127.net/e27e1de2b271a28a21c10213b9df7e95.jpg\">\n <img src=\"//yanxuan.nosdn.127.net/9d413d1d28f753cb19096b533d53418d.jpg\">\n <img src=\"//yanxuan.nosdn.127.net/64b0f2f350969e9818a3b6c43c217325.jpg\">\n <img src=\"//yanxuan.nosdn.127.net/a668e6ae7f1fa45565c1eac221787570.jpg\">\n <img src=\"//yanxuan.nosdn.127.net/0d4004e19728f2707f08f4be79bbc774.jpg\">\n <img src=\"//yanxuan.nosdn.127.net/79ee021bbe97de7ecda691de6787241f.jpg\">', 'https://yanxuan.nosdn.127.net/14924199159971698.png', 'https://yanxuan.nosdn.127.net/14924199099661697.jpg', '懒出格调,懒出好生活。', '3', '15.00', '57.7k', 'https://yanxuan.nosdn.127.net/14924199099661697.jpg', '0', '0');
  3005. INSERT INTO `nideshop_topic` VALUES ('268', '米饭好吃的秘诀:会呼吸的锅', '<img src=\"//yanxuan.nosdn.127.net/75c55a13fde5eb2bc2dd6813b4c565cc.jpg\">\n <img src=\"//yanxuan.nosdn.127.net/e27e1de2b271a28a21c10213b9df7e95.jpg\">\n <img src=\"//yanxuan.nosdn.127.net/9d413d1d28f753cb19096b533d53418d.jpg\">\n <img src=\"//yanxuan.nosdn.127.net/64b0f2f350969e9818a3b6c43c217325.jpg\">\n <img src=\"//yanxuan.nosdn.127.net/a668e6ae7f1fa45565c1eac221787570.jpg\">\n <img src=\"//yanxuan.nosdn.127.net/0d4004e19728f2707f08f4be79bbc774.jpg\">\n <img src=\"//yanxuan.nosdn.127.net/79ee021bbe97de7ecda691de6787241f.jpg\">', 'https://yanxuan.nosdn.127.net/14920712417610604.png', 'https://yanxuan.nosdn.127.net/14920623353130483.jpg', '今年1月份,我们联系到了日本伊贺地区的长谷园,那里有着180年伊贺烧历史的窑厂。...', '1', '0.00', '33.3k', 'https://yanxuan.nosdn.127.net/14920623353130483.jpg', '0', '0');
  3006. INSERT INTO `nideshop_topic` VALUES ('266', '一条丝巾就能提升时髦度', '<img src=\"//yanxuan.nosdn.127.net/75c55a13fde5eb2bc2dd6813b4c565cc.jpg\">\n <img src=\"//yanxuan.nosdn.127.net/e27e1de2b271a28a21c10213b9df7e95.jpg\">\n <img src=\"//yanxuan.nosdn.127.net/9d413d1d28f753cb19096b533d53418d.jpg\">\n <img src=\"//yanxuan.nosdn.127.net/64b0f2f350969e9818a3b6c43c217325.jpg\">\n <img src=\"//yanxuan.nosdn.127.net/a668e6ae7f1fa45565c1eac221787570.jpg\">\n <img src=\"//yanxuan.nosdn.127.net/0d4004e19728f2707f08f4be79bbc774.jpg\">\n <img src=\"//yanxuan.nosdn.127.net/79ee021bbe97de7ecda691de6787241f.jpg\">', 'https://yanxuan.nosdn.127.net/14919005600900208.png', 'https://yanxuan.nosdn.127.net/14919007135160213.jpg', '不知道大家对去年G20时,严选与国礼制造商一起推出的《凤凰于飞》等几款丝巾是否还...', '1', '0.00', '35.0k', 'https://yanxuan.nosdn.127.net/14919007135160213.jpg', '0', '0');
  3007. INSERT INTO `nideshop_topic` VALUES ('264', '设计师们推荐的应季好物', '<img src=\"//yanxuan.nosdn.127.net/75c55a13fde5eb2bc2dd6813b4c565cc.jpg\">\n <img src=\"//yanxuan.nosdn.127.net/e27e1de2b271a28a21c10213b9df7e95.jpg\">\n <img src=\"//yanxuan.nosdn.127.net/9d413d1d28f753cb19096b533d53418d.jpg\">\n <img src=\"//yanxuan.nosdn.127.net/64b0f2f350969e9818a3b6c43c217325.jpg\">\n <img src=\"//yanxuan.nosdn.127.net/a668e6ae7f1fa45565c1eac221787570.jpg\">\n <img src=\"//yanxuan.nosdn.127.net/0d4004e19728f2707f08f4be79bbc774.jpg\">\n <img src=\"//yanxuan.nosdn.127.net/79ee021bbe97de7ecda691de6787241f.jpg\">', 'https://yanxuan.nosdn.127.net/14920662001560500.png', 'https://yanxuan.nosdn.127.net/14918201901050274.jpg', '原创设计春款系列上新', '0', '29.90', '77.7k', 'https://yanxuan.nosdn.127.net/14918201901050274.jpg', '0', '0');
  3008. -- ----------------------------
  3009. -- Table structure for `nideshop_topic_category`
  3010. -- ----------------------------
  3011. DROP TABLE IF EXISTS `nideshop_topic_category`;
  3012. CREATE TABLE `nideshop_topic_category` (
  3013. `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '主键',
  3014. `title` varchar(255) NOT NULL DEFAULT '' COMMENT '活动类别主题',
  3015. `pic_url` varchar(255) NOT NULL DEFAULT '' COMMENT '活动类别图片链接',
  3016. PRIMARY KEY (`id`)
  3017. ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8;
  3018. -- ----------------------------
  3019. -- Records of nideshop_topic_category
  3020. -- ----------------------------
  3021. INSERT INTO `nideshop_topic_category` VALUES ('1', '严选幕后', 'https://yanxuan.nosdn.127.net/dc1b671ad54e16339f1b26cfeec6a1ea.jpg');
  3022. INSERT INTO `nideshop_topic_category` VALUES ('2', '丁磊私物推荐', 'https://yanxuan.nosdn.127.net/1de4da49367dd7c01af1f7a2b23b0237.jpg');
  3023. INSERT INTO `nideshop_topic_category` VALUES ('3', '特色系列', 'https://yanxuan.nosdn.127.net/14939888170021096.png');
  3024. INSERT INTO `nideshop_topic_category` VALUES ('4', '明星商品', 'https://yanxuan.nosdn.127.net/14939888168151095.png');
  3025. INSERT INTO `nideshop_topic_category` VALUES ('5', '严选推荐', 'http://mp123.oss-cn-shenzhen.aliyuncs.com//upload/20170820/1553241265c59c.jpg');
  3026. -- ----------------------------
  3027. -- Table structure for `nideshop_user`
  3028. -- ----------------------------
  3029. DROP TABLE IF EXISTS `nideshop_user`;
  3030. CREATE TABLE `nideshop_user` (
  3031. `id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
  3032. `username` varchar(60) NOT NULL DEFAULT '',
  3033. `password` varchar(32) DEFAULT '',
  3034. `gender` tinyint(1) DEFAULT NULL,
  3035. `birthday` datetime DEFAULT NULL,
  3036. `register_time` datetime DEFAULT NULL,
  3037. `last_login_time` datetime DEFAULT NULL,
  3038. `last_login_ip` varchar(15) DEFAULT '',
  3039. `user_level_id` tinyint(3) DEFAULT NULL,
  3040. `nickname` varchar(60) DEFAULT '',
  3041. `mobile` varchar(20) DEFAULT '',
  3042. `register_ip` varchar(45) DEFAULT '',
  3043. `avatar` varchar(255) DEFAULT '',
  3044. `weixin_openid` varchar(50) DEFAULT '',
  3045. PRIMARY KEY (`id`),
  3046. UNIQUE KEY `user_name` (`username`)
  3047. ) ENGINE=InnoDB AUTO_INCREMENT=24 DEFAULT CHARSET=utf8;
  3048. -- ----------------------------
  3049. -- Table structure for `nideshop_user_coupon`
  3050. -- ----------------------------
  3051. DROP TABLE IF EXISTS `nideshop_user_coupon`;
  3052. CREATE TABLE `nideshop_user_coupon` (
  3053. `id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
  3054. `coupon_id` tinyint(3) unsigned DEFAULT '0',
  3055. `coupon_number` varchar(20) DEFAULT '',
  3056. `user_id` int(11) unsigned DEFAULT '0',
  3057. `used_time` datetime DEFAULT NULL,
  3058. `add_time` datetime DEFAULT NULL,
  3059. `order_id` mediumint(8) unsigned DEFAULT '0',
  3060. `source_key` varchar(64) DEFAULT NULL COMMENT '来源key',
  3061. `referrer` int(32) DEFAULT NULL COMMENT '发券人',
  3062. PRIMARY KEY (`id`),
  3063. KEY `user_id` (`user_id`)
  3064. ) ENGINE=InnoDB AUTO_INCREMENT=68 DEFAULT CHARSET=utf8;
  3065. -- ----------------------------
  3066. -- Records of nideshop_user_coupon
  3067. -- ----------------------------
  3068. -- ----------------------------
  3069. -- Table structure for `nideshop_user_level`
  3070. -- ----------------------------
  3071. DROP TABLE IF EXISTS `nideshop_user_level`;
  3072. CREATE TABLE `nideshop_user_level` (
  3073. `id` tinyint(3) unsigned NOT NULL AUTO_INCREMENT,
  3074. `name` varchar(30) NOT NULL DEFAULT '',
  3075. `description` varchar(255) NOT NULL DEFAULT '',
  3076. PRIMARY KEY (`id`)
  3077. ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8;
  3078. -- ----------------------------
  3079. -- Records of nideshop_user_level
  3080. -- ----------------------------
  3081. INSERT INTO `nideshop_user_level` VALUES ('1', '普通用户', '0');
  3082. INSERT INTO `nideshop_user_level` VALUES ('2', 'vip', '10000');
  3083. INSERT INTO `nideshop_user_level` VALUES ('4', '高级VIP', '100000');
  3084. -- ----------------------------
  3085. -- Table structure for `QRTZ_BLOB_TRIGGERS`
  3086. -- ----------------------------
  3087. DROP TABLE IF EXISTS `QRTZ_BLOB_TRIGGERS`;
  3088. CREATE TABLE `QRTZ_BLOB_TRIGGERS` (
  3089. `SCHED_NAME` varchar(120) NOT NULL,
  3090. `TRIGGER_NAME` varchar(200) NOT NULL,
  3091. `TRIGGER_GROUP` varchar(200) NOT NULL,
  3092. `BLOB_DATA` blob,
  3093. PRIMARY KEY (`SCHED_NAME`,`TRIGGER_NAME`,`TRIGGER_GROUP`),
  3094. KEY `SCHED_NAME` (`SCHED_NAME`,`TRIGGER_NAME`,`TRIGGER_GROUP`),
  3095. CONSTRAINT `QRTZ_BLOB_TRIGGERS_ibfk_1` FOREIGN KEY (`SCHED_NAME`, `TRIGGER_NAME`, `TRIGGER_GROUP`) REFERENCES `QRTZ_TRIGGERS` (`SCHED_NAME`, `TRIGGER_NAME`, `TRIGGER_GROUP`)
  3096. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  3097. -- ----------------------------
  3098. -- Records of QRTZ_BLOB_TRIGGERS
  3099. -- ----------------------------
  3100. -- ----------------------------
  3101. -- Table structure for `QRTZ_CALENDARS`
  3102. -- ----------------------------
  3103. DROP TABLE IF EXISTS `QRTZ_CALENDARS`;
  3104. CREATE TABLE `QRTZ_CALENDARS` (
  3105. `SCHED_NAME` varchar(120) NOT NULL,
  3106. `CALENDAR_NAME` varchar(200) NOT NULL,
  3107. `CALENDAR` blob NOT NULL,
  3108. PRIMARY KEY (`SCHED_NAME`,`CALENDAR_NAME`)
  3109. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  3110. -- ----------------------------
  3111. -- Records of QRTZ_CALENDARS
  3112. -- ----------------------------
  3113. -- ----------------------------
  3114. -- Table structure for `QRTZ_CRON_TRIGGERS`
  3115. -- ----------------------------
  3116. DROP TABLE IF EXISTS `QRTZ_CRON_TRIGGERS`;
  3117. CREATE TABLE `QRTZ_CRON_TRIGGERS` (
  3118. `SCHED_NAME` varchar(120) NOT NULL,
  3119. `TRIGGER_NAME` varchar(200) NOT NULL,
  3120. `TRIGGER_GROUP` varchar(200) NOT NULL,
  3121. `CRON_EXPRESSION` varchar(120) NOT NULL,
  3122. `TIME_ZONE_ID` varchar(80) DEFAULT NULL,
  3123. PRIMARY KEY (`SCHED_NAME`,`TRIGGER_NAME`,`TRIGGER_GROUP`),
  3124. CONSTRAINT `QRTZ_CRON_TRIGGERS_ibfk_1` FOREIGN KEY (`SCHED_NAME`, `TRIGGER_NAME`, `TRIGGER_GROUP`) REFERENCES `QRTZ_TRIGGERS` (`SCHED_NAME`, `TRIGGER_NAME`, `TRIGGER_GROUP`)
  3125. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  3126. -- ----------------------------
  3127. -- Records of QRTZ_CRON_TRIGGERS
  3128. -- ----------------------------
  3129. INSERT INTO `QRTZ_CRON_TRIGGERS` VALUES ('PlatformScheduler', 'TASK_1', 'DEFAULT', '0 0/30 * * * ?', 'Asia/Shanghai');
  3130. INSERT INTO `QRTZ_CRON_TRIGGERS` VALUES ('PlatformScheduler', 'TASK_2', 'DEFAULT', '0 0/30 * * * ?', 'Asia/Shanghai');
  3131. -- ----------------------------
  3132. -- Table structure for `QRTZ_FIRED_TRIGGERS`
  3133. -- ----------------------------
  3134. DROP TABLE IF EXISTS `QRTZ_FIRED_TRIGGERS`;
  3135. CREATE TABLE `QRTZ_FIRED_TRIGGERS` (
  3136. `SCHED_NAME` varchar(120) NOT NULL,
  3137. `ENTRY_ID` varchar(95) NOT NULL,
  3138. `TRIGGER_NAME` varchar(200) NOT NULL,
  3139. `TRIGGER_GROUP` varchar(200) NOT NULL,
  3140. `INSTANCE_NAME` varchar(200) NOT NULL,
  3141. `FIRED_TIME` bigint(13) NOT NULL,
  3142. `SCHED_TIME` bigint(13) NOT NULL,
  3143. `PRIORITY` int(11) NOT NULL,
  3144. `STATE` varchar(16) NOT NULL,
  3145. `JOB_NAME` varchar(200) DEFAULT NULL,
  3146. `JOB_GROUP` varchar(200) DEFAULT NULL,
  3147. `IS_NONCONCURRENT` varchar(1) DEFAULT NULL,
  3148. `REQUESTS_RECOVERY` varchar(1) DEFAULT NULL,
  3149. PRIMARY KEY (`SCHED_NAME`,`ENTRY_ID`),
  3150. KEY `IDX_QRTZ_FT_TRIG_INST_NAME` (`SCHED_NAME`,`INSTANCE_NAME`),
  3151. KEY `IDX_QRTZ_FT_INST_JOB_REQ_RCVRY` (`SCHED_NAME`,`INSTANCE_NAME`,`REQUESTS_RECOVERY`),
  3152. KEY `IDX_QRTZ_FT_J_G` (`SCHED_NAME`,`JOB_NAME`,`JOB_GROUP`),
  3153. KEY `IDX_QRTZ_FT_JG` (`SCHED_NAME`,`JOB_GROUP`),
  3154. KEY `IDX_QRTZ_FT_T_G` (`SCHED_NAME`,`TRIGGER_NAME`,`TRIGGER_GROUP`),
  3155. KEY `IDX_QRTZ_FT_TG` (`SCHED_NAME`,`TRIGGER_GROUP`)
  3156. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  3157. -- ----------------------------
  3158. -- Records of QRTZ_FIRED_TRIGGERS
  3159. -- ----------------------------
  3160. -- ----------------------------
  3161. -- Table structure for `QRTZ_JOB_DETAILS`
  3162. -- ----------------------------
  3163. DROP TABLE IF EXISTS `QRTZ_JOB_DETAILS`;
  3164. CREATE TABLE `QRTZ_JOB_DETAILS` (
  3165. `SCHED_NAME` varchar(120) NOT NULL,
  3166. `JOB_NAME` varchar(200) NOT NULL,
  3167. `JOB_GROUP` varchar(200) NOT NULL,
  3168. `DESCRIPTION` varchar(250) DEFAULT NULL,
  3169. `JOB_CLASS_NAME` varchar(250) NOT NULL,
  3170. `IS_DURABLE` varchar(1) NOT NULL,
  3171. `IS_NONCONCURRENT` varchar(1) NOT NULL,
  3172. `IS_UPDATE_DATA` varchar(1) NOT NULL,
  3173. `REQUESTS_RECOVERY` varchar(1) NOT NULL,
  3174. `JOB_DATA` blob,
  3175. PRIMARY KEY (`SCHED_NAME`,`JOB_NAME`,`JOB_GROUP`),
  3176. KEY `IDX_QRTZ_J_REQ_RECOVERY` (`SCHED_NAME`,`REQUESTS_RECOVERY`),
  3177. KEY `IDX_QRTZ_J_GRP` (`SCHED_NAME`,`JOB_GROUP`)
  3178. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  3179. -- ----------------------------
  3180. -- Records of QRTZ_JOB_DETAILS
  3181. -- ----------------------------
  3182. INSERT INTO `QRTZ_JOB_DETAILS` VALUES ('PlatformScheduler', 'TASK_1', 'DEFAULT', null, 'com.platform.utils.ScheduleJob', '0', '0', '0', '0', 0xACED0005737200156F72672E71756172747A2E4A6F62446174614D61709FB083E8BFA9B0CB020000787200266F72672E71756172747A2E7574696C732E537472696E674B65794469727479466C61674D61708208E8C3FBC55D280200015A0013616C6C6F77735472616E7369656E74446174617872001D6F72672E71756172747A2E7574696C732E4469727479466C61674D617013E62EAD28760ACE0200025A000564697274794C00036D617074000F4C6A6176612F7574696C2F4D61703B787001737200116A6176612E7574696C2E486173684D61700507DAC1C31660D103000246000A6C6F6164466163746F724900097468726573686F6C6478703F4000000000000C7708000000100000000174000D4A4F425F504152414D5F4B455973720025636F6D2E706C6174666F726D2E656E746974792E5363686564756C654A6F62456E7469747900000000000000010200084C00086265616E4E616D657400124C6A6176612F6C616E672F537472696E673B4C000A63726561746554696D657400104C6A6176612F7574696C2F446174653B4C000E63726F6E45787072657373696F6E71007E00094C00056A6F6249647400104C6A6176612F6C616E672F4C6F6E673B4C000A6D6574686F644E616D6571007E00094C0006706172616D7371007E00094C000672656D61726B71007E00094C00067374617475737400134C6A6176612F6C616E672F496E74656765723B7870740008746573745461736B7372000E6A6176612E7574696C2E44617465686A81014B5974190300007870770800000158BAF593307874000E3020302F3330202A202A202A203F7372000E6A6176612E6C616E672E4C6F6E673B8BE490CC8F23DF0200014A000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B0200007870000000000000000174000474657374740008706C6174666F726D74000FE69C89E58F82E695B0E6B58BE8AF95737200116A6176612E6C616E672E496E746567657212E2A0A4F781873802000149000576616C75657871007E0013000000017800);
  3183. INSERT INTO `QRTZ_JOB_DETAILS` VALUES ('PlatformScheduler', 'TASK_2', 'DEFAULT', null, 'com.platform.utils.ScheduleJob', '0', '0', '0', '0', 0xACED0005737200156F72672E71756172747A2E4A6F62446174614D61709FB083E8BFA9B0CB020000787200266F72672E71756172747A2E7574696C732E537472696E674B65794469727479466C61674D61708208E8C3FBC55D280200015A0013616C6C6F77735472616E7369656E74446174617872001D6F72672E71756172747A2E7574696C732E4469727479466C61674D617013E62EAD28760ACE0200025A000564697274794C00036D617074000F4C6A6176612F7574696C2F4D61703B787001737200116A6176612E7574696C2E486173684D61700507DAC1C31660D103000246000A6C6F6164466163746F724900097468726573686F6C6478703F4000000000000C7708000000100000000174000D4A4F425F504152414D5F4B455973720025636F6D2E706C6174666F726D2E656E746974792E5363686564756C654A6F62456E7469747900000000000000010200084C00086265616E4E616D657400124C6A6176612F6C616E672F537472696E673B4C000A63726561746554696D657400104C6A6176612F7574696C2F446174653B4C000E63726F6E45787072657373696F6E71007E00094C00056A6F6249647400104C6A6176612F6C616E672F4C6F6E673B4C000A6D6574686F644E616D6571007E00094C0006706172616D7371007E00094C000672656D61726B71007E00094C00067374617475737400134C6A6176612F6C616E672F496E74656765723B7870740008746573745461736B7372000E6A6176612E7574696C2E44617465686A81014B5974190300007870770800000158C377C4607874000E3020302F3330202A202A202A203F7372000E6A6176612E6C616E672E4C6F6E673B8BE490CC8F23DF0200014A000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B0200007870000000000000000274000574657374327074000FE697A0E58F82E695B0E6B58BE8AF95737200116A6176612E6C616E672E496E746567657212E2A0A4F781873802000149000576616C75657871007E0013000000017800);
  3184. -- ----------------------------
  3185. -- Table structure for `QRTZ_LOCKS`
  3186. -- ----------------------------
  3187. DROP TABLE IF EXISTS `QRTZ_LOCKS`;
  3188. CREATE TABLE `QRTZ_LOCKS` (
  3189. `SCHED_NAME` varchar(120) NOT NULL,
  3190. `LOCK_NAME` varchar(40) NOT NULL,
  3191. PRIMARY KEY (`SCHED_NAME`,`LOCK_NAME`)
  3192. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  3193. -- ----------------------------
  3194. -- Records of QRTZ_LOCKS
  3195. -- ----------------------------
  3196. INSERT INTO `QRTZ_LOCKS` VALUES ('PlatformScheduler', 'STATE_ACCESS');
  3197. INSERT INTO `QRTZ_LOCKS` VALUES ('PlatformScheduler', 'TRIGGER_ACCESS');
  3198. -- ----------------------------
  3199. -- Table structure for `QRTZ_PAUSED_TRIGGER_GRPS`
  3200. -- ----------------------------
  3201. DROP TABLE IF EXISTS `QRTZ_PAUSED_TRIGGER_GRPS`;
  3202. CREATE TABLE `QRTZ_PAUSED_TRIGGER_GRPS` (
  3203. `SCHED_NAME` varchar(120) NOT NULL,
  3204. `TRIGGER_GROUP` varchar(200) NOT NULL,
  3205. PRIMARY KEY (`SCHED_NAME`,`TRIGGER_GROUP`)
  3206. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  3207. -- ----------------------------
  3208. -- Records of QRTZ_PAUSED_TRIGGER_GRPS
  3209. -- ----------------------------
  3210. -- ----------------------------
  3211. -- Table structure for `QRTZ_SCHEDULER_STATE`
  3212. -- ----------------------------
  3213. DROP TABLE IF EXISTS `QRTZ_SCHEDULER_STATE`;
  3214. CREATE TABLE `QRTZ_SCHEDULER_STATE` (
  3215. `SCHED_NAME` varchar(120) NOT NULL,
  3216. `INSTANCE_NAME` varchar(200) NOT NULL,
  3217. `LAST_CHECKIN_TIME` bigint(13) NOT NULL,
  3218. `CHECKIN_INTERVAL` bigint(13) NOT NULL,
  3219. PRIMARY KEY (`SCHED_NAME`,`INSTANCE_NAME`)
  3220. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  3221. -- ----------------------------
  3222. -- Records of QRTZ_SCHEDULER_STATE
  3223. -- ----------------------------
  3224. INSERT INTO `QRTZ_SCHEDULER_STATE` VALUES ('PlatformScheduler', 'Win_PC1508754695596', '1508756226419', '15000');
  3225. -- ----------------------------
  3226. -- Table structure for `QRTZ_SIMPLE_TRIGGERS`
  3227. -- ----------------------------
  3228. DROP TABLE IF EXISTS `QRTZ_SIMPLE_TRIGGERS`;
  3229. CREATE TABLE `QRTZ_SIMPLE_TRIGGERS` (
  3230. `SCHED_NAME` varchar(120) NOT NULL,
  3231. `TRIGGER_NAME` varchar(200) NOT NULL,
  3232. `TRIGGER_GROUP` varchar(200) NOT NULL,
  3233. `REPEAT_COUNT` bigint(7) NOT NULL,
  3234. `REPEAT_INTERVAL` bigint(12) NOT NULL,
  3235. `TIMES_TRIGGERED` bigint(10) NOT NULL,
  3236. PRIMARY KEY (`SCHED_NAME`,`TRIGGER_NAME`,`TRIGGER_GROUP`),
  3237. CONSTRAINT `QRTZ_SIMPLE_TRIGGERS_ibfk_1` FOREIGN KEY (`SCHED_NAME`, `TRIGGER_NAME`, `TRIGGER_GROUP`) REFERENCES `QRTZ_TRIGGERS` (`SCHED_NAME`, `TRIGGER_NAME`, `TRIGGER_GROUP`)
  3238. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  3239. -- ----------------------------
  3240. -- Records of QRTZ_SIMPLE_TRIGGERS
  3241. -- ----------------------------
  3242. -- ----------------------------
  3243. -- Table structure for `QRTZ_SIMPROP_TRIGGERS`
  3244. -- ----------------------------
  3245. DROP TABLE IF EXISTS `QRTZ_SIMPROP_TRIGGERS`;
  3246. CREATE TABLE `QRTZ_SIMPROP_TRIGGERS` (
  3247. `SCHED_NAME` varchar(120) NOT NULL,
  3248. `TRIGGER_NAME` varchar(200) NOT NULL,
  3249. `TRIGGER_GROUP` varchar(200) NOT NULL,
  3250. `STR_PROP_1` varchar(512) DEFAULT NULL,
  3251. `STR_PROP_2` varchar(512) DEFAULT NULL,
  3252. `STR_PROP_3` varchar(512) DEFAULT NULL,
  3253. `INT_PROP_1` int(11) DEFAULT NULL,
  3254. `INT_PROP_2` int(11) DEFAULT NULL,
  3255. `LONG_PROP_1` bigint(20) DEFAULT NULL,
  3256. `LONG_PROP_2` bigint(20) DEFAULT NULL,
  3257. `DEC_PROP_1` decimal(13,4) DEFAULT NULL,
  3258. `DEC_PROP_2` decimal(13,4) DEFAULT NULL,
  3259. `BOOL_PROP_1` varchar(1) DEFAULT NULL,
  3260. `BOOL_PROP_2` varchar(1) DEFAULT NULL,
  3261. PRIMARY KEY (`SCHED_NAME`,`TRIGGER_NAME`,`TRIGGER_GROUP`),
  3262. CONSTRAINT `QRTZ_SIMPROP_TRIGGERS_ibfk_1` FOREIGN KEY (`SCHED_NAME`, `TRIGGER_NAME`, `TRIGGER_GROUP`) REFERENCES `QRTZ_TRIGGERS` (`SCHED_NAME`, `TRIGGER_NAME`, `TRIGGER_GROUP`)
  3263. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  3264. -- ----------------------------
  3265. -- Records of QRTZ_SIMPROP_TRIGGERS
  3266. -- ----------------------------
  3267. -- ----------------------------
  3268. -- Table structure for `QRTZ_TRIGGERS`
  3269. -- ----------------------------
  3270. DROP TABLE IF EXISTS `QRTZ_TRIGGERS`;
  3271. CREATE TABLE `QRTZ_TRIGGERS` (
  3272. `SCHED_NAME` varchar(120) NOT NULL,
  3273. `TRIGGER_NAME` varchar(200) NOT NULL,
  3274. `TRIGGER_GROUP` varchar(200) NOT NULL,
  3275. `JOB_NAME` varchar(200) NOT NULL,
  3276. `JOB_GROUP` varchar(200) NOT NULL,
  3277. `DESCRIPTION` varchar(250) DEFAULT NULL,
  3278. `NEXT_FIRE_TIME` bigint(13) DEFAULT NULL,
  3279. `PREV_FIRE_TIME` bigint(13) DEFAULT NULL,
  3280. `PRIORITY` int(11) DEFAULT NULL,
  3281. `TRIGGER_STATE` varchar(16) NOT NULL,
  3282. `TRIGGER_TYPE` varchar(8) NOT NULL,
  3283. `START_TIME` bigint(13) NOT NULL,
  3284. `END_TIME` bigint(13) DEFAULT NULL,
  3285. `CALENDAR_NAME` varchar(200) DEFAULT NULL,
  3286. `MISFIRE_INSTR` smallint(2) DEFAULT NULL,
  3287. `JOB_DATA` blob,
  3288. PRIMARY KEY (`SCHED_NAME`,`TRIGGER_NAME`,`TRIGGER_GROUP`),
  3289. KEY `IDX_QRTZ_T_J` (`SCHED_NAME`,`JOB_NAME`,`JOB_GROUP`),
  3290. KEY `IDX_QRTZ_T_JG` (`SCHED_NAME`,`JOB_GROUP`),
  3291. KEY `IDX_QRTZ_T_C` (`SCHED_NAME`,`CALENDAR_NAME`),
  3292. KEY `IDX_QRTZ_T_G` (`SCHED_NAME`,`TRIGGER_GROUP`),
  3293. KEY `IDX_QRTZ_T_STATE` (`SCHED_NAME`,`TRIGGER_STATE`),
  3294. KEY `IDX_QRTZ_T_N_STATE` (`SCHED_NAME`,`TRIGGER_NAME`,`TRIGGER_GROUP`,`TRIGGER_STATE`),
  3295. KEY `IDX_QRTZ_T_N_G_STATE` (`SCHED_NAME`,`TRIGGER_GROUP`,`TRIGGER_STATE`),
  3296. KEY `IDX_QRTZ_T_NEXT_FIRE_TIME` (`SCHED_NAME`,`NEXT_FIRE_TIME`),
  3297. KEY `IDX_QRTZ_T_NFT_ST` (`SCHED_NAME`,`TRIGGER_STATE`,`NEXT_FIRE_TIME`),
  3298. KEY `IDX_QRTZ_T_NFT_MISFIRE` (`SCHED_NAME`,`MISFIRE_INSTR`,`NEXT_FIRE_TIME`),
  3299. KEY `IDX_QRTZ_T_NFT_ST_MISFIRE` (`SCHED_NAME`,`MISFIRE_INSTR`,`NEXT_FIRE_TIME`,`TRIGGER_STATE`),
  3300. KEY `IDX_QRTZ_T_NFT_ST_MISFIRE_GRP` (`SCHED_NAME`,`MISFIRE_INSTR`,`NEXT_FIRE_TIME`,`TRIGGER_GROUP`,`TRIGGER_STATE`),
  3301. CONSTRAINT `QRTZ_TRIGGERS_ibfk_1` FOREIGN KEY (`SCHED_NAME`, `JOB_NAME`, `JOB_GROUP`) REFERENCES `QRTZ_JOB_DETAILS` (`SCHED_NAME`, `JOB_NAME`, `JOB_GROUP`)
  3302. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  3303. -- ----------------------------
  3304. -- Records of QRTZ_TRIGGERS
  3305. -- ----------------------------
  3306. INSERT INTO `QRTZ_TRIGGERS` VALUES ('PlatformScheduler', 'TASK_1', 'DEFAULT', 'TASK_1', 'DEFAULT', null, '1507390200000', '-1', '5', 'PAUSED', 'CRON', '1507388787000', '0', null, '2', 0xACED0005737200156F72672E71756172747A2E4A6F62446174614D61709FB083E8BFA9B0CB020000787200266F72672E71756172747A2E7574696C732E537472696E674B65794469727479466C61674D61708208E8C3FBC55D280200015A0013616C6C6F77735472616E7369656E74446174617872001D6F72672E71756172747A2E7574696C732E4469727479466C61674D617013E62EAD28760ACE0200025A000564697274794C00036D617074000F4C6A6176612F7574696C2F4D61703B787001737200116A6176612E7574696C2E486173684D61700507DAC1C31660D103000246000A6C6F6164466163746F724900097468726573686F6C6478703F4000000000000C7708000000100000000174000D4A4F425F504152414D5F4B455973720025636F6D2E706C6174666F726D2E656E746974792E5363686564756C654A6F62456E7469747900000000000000010200084C00086265616E4E616D657400124C6A6176612F6C616E672F537472696E673B4C000A63726561746554696D657400104C6A6176612F7574696C2F446174653B4C000E63726F6E45787072657373696F6E71007E00094C00056A6F6249647400104C6A6176612F6C616E672F4C6F6E673B4C000A6D6574686F644E616D6571007E00094C0006706172616D7371007E00094C000672656D61726B71007E00094C00067374617475737400134C6A6176612F6C616E672F496E74656765723B7870740008746573745461736B7372000E6A6176612E7574696C2E44617465686A81014B5974190300007870770800000158BAF593307874000E3020302F3330202A202A202A203F7372000E6A6176612E6C616E672E4C6F6E673B8BE490CC8F23DF0200014A000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B0200007870000000000000000174000474657374740008706C6174666F726D74000FE69C89E58F82E695B0E6B58BE8AF95737200116A6176612E6C616E672E496E746567657212E2A0A4F781873802000149000576616C75657871007E0013000000017800);
  3307. INSERT INTO `QRTZ_TRIGGERS` VALUES ('PlatformScheduler', 'TASK_2', 'DEFAULT', 'TASK_2', 'DEFAULT', null, '1507390200000', '-1', '5', 'PAUSED', 'CRON', '1507388787000', '0', null, '2', 0xACED0005737200156F72672E71756172747A2E4A6F62446174614D61709FB083E8BFA9B0CB020000787200266F72672E71756172747A2E7574696C732E537472696E674B65794469727479466C61674D61708208E8C3FBC55D280200015A0013616C6C6F77735472616E7369656E74446174617872001D6F72672E71756172747A2E7574696C732E4469727479466C61674D617013E62EAD28760ACE0200025A000564697274794C00036D617074000F4C6A6176612F7574696C2F4D61703B787001737200116A6176612E7574696C2E486173684D61700507DAC1C31660D103000246000A6C6F6164466163746F724900097468726573686F6C6478703F4000000000000C7708000000100000000174000D4A4F425F504152414D5F4B455973720025636F6D2E706C6174666F726D2E656E746974792E5363686564756C654A6F62456E7469747900000000000000010200084C00086265616E4E616D657400124C6A6176612F6C616E672F537472696E673B4C000A63726561746554696D657400104C6A6176612F7574696C2F446174653B4C000E63726F6E45787072657373696F6E71007E00094C00056A6F6249647400104C6A6176612F6C616E672F4C6F6E673B4C000A6D6574686F644E616D6571007E00094C0006706172616D7371007E00094C000672656D61726B71007E00094C00067374617475737400134C6A6176612F6C616E672F496E74656765723B7870740008746573745461736B7372000E6A6176612E7574696C2E44617465686A81014B5974190300007870770800000158C377C4607874000E3020302F3330202A202A202A203F7372000E6A6176612E6C616E672E4C6F6E673B8BE490CC8F23DF0200014A000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B0200007870000000000000000274000574657374327074000FE697A0E58F82E695B0E6B58BE8AF95737200116A6176612E6C616E672E496E746567657212E2A0A4F781873802000149000576616C75657871007E0013000000017800);
  3308. -- ----------------------------
  3309. -- Table structure for `schedule_job`
  3310. -- ----------------------------
  3311. DROP TABLE IF EXISTS `schedule_job`;
  3312. CREATE TABLE `schedule_job` (
  3313. `job_id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '任务id',
  3314. `bean_name` varchar(200) DEFAULT NULL COMMENT 'spring bean名称',
  3315. `method_name` varchar(100) DEFAULT NULL COMMENT '方法名',
  3316. `params` varchar(2000) DEFAULT NULL COMMENT '参数',
  3317. `cron_expression` varchar(100) DEFAULT NULL COMMENT 'cron表达式',
  3318. `status` tinyint(4) DEFAULT NULL COMMENT '任务状态',
  3319. `remark` varchar(255) DEFAULT NULL COMMENT '备注',
  3320. `create_time` datetime DEFAULT NULL COMMENT '创建时间',
  3321. PRIMARY KEY (`job_id`)
  3322. ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COMMENT='定时任务';
  3323. -- ----------------------------
  3324. -- Records of schedule_job
  3325. -- ----------------------------
  3326. INSERT INTO `schedule_job` VALUES ('1', 'testTask', 'test', 'platform', '0 0/30 * * * ?', '1', '有参数测试', '2016-12-01 23:16:46');
  3327. INSERT INTO `schedule_job` VALUES ('2', 'testTask', 'test2', null, '0 0/30 * * * ?', '1', '无参数测试', '2016-12-03 14:55:56');
  3328. -- ----------------------------
  3329. -- Table structure for `schedule_job_log`
  3330. -- ----------------------------
  3331. DROP TABLE IF EXISTS `schedule_job_log`;
  3332. CREATE TABLE `schedule_job_log` (
  3333. `log_id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '任务日志id',
  3334. `job_id` bigint(20) NOT NULL COMMENT '任务id',
  3335. `bean_name` varchar(200) DEFAULT NULL COMMENT 'spring bean名称',
  3336. `method_name` varchar(100) DEFAULT NULL COMMENT '方法名',
  3337. `params` varchar(2000) DEFAULT NULL COMMENT '参数',
  3338. `status` tinyint(4) NOT NULL COMMENT '任务状态 0:成功 1:失败',
  3339. `error` varchar(2000) DEFAULT NULL COMMENT '失败信息',
  3340. `times` int(11) NOT NULL COMMENT '耗时(单位:毫秒)',
  3341. `create_time` datetime DEFAULT NULL COMMENT '创建时间',
  3342. PRIMARY KEY (`log_id`),
  3343. KEY `job_id` (`job_id`)
  3344. ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='定时任务日志';
  3345. -- ----------------------------
  3346. -- Records of schedule_job_log
  3347. -- ----------------------------
  3348. -- ----------------------------
  3349. -- Table structure for `sys_config`
  3350. -- ----------------------------
  3351. DROP TABLE IF EXISTS `sys_config`;
  3352. CREATE TABLE `sys_config` (
  3353. `id` bigint(20) NOT NULL AUTO_INCREMENT,
  3354. `key` varchar(50) DEFAULT NULL COMMENT 'key',
  3355. `value` varchar(2000) DEFAULT NULL COMMENT 'value',
  3356. `status` tinyint(4) DEFAULT '1' COMMENT '状态 0:隐藏 1:显示',
  3357. `remark` varchar(500) DEFAULT NULL COMMENT '备注',
  3358. PRIMARY KEY (`id`),
  3359. UNIQUE KEY `key` (`key`)
  3360. ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COMMENT='系统配置信息表';
  3361. -- ----------------------------
  3362. -- Records of sys_config
  3363. -- ----------------------------
  3364. INSERT INTO `sys_config` VALUES ('3', 'CLOUD_STORAGE_CONFIG_KEY', '{"aliyunAccessKeyId":"1","aliyunAccessKeySecret":"1","aliyunBucketName":"1","aliyunDomain":"http://image.111.com","aliyunEndPoint":"1","aliyunPrefix":"1","qcloudBucketName":"","qcloudDomain":"","qcloudPrefix":"","qcloudSecretId":"","qcloudSecretKey":"","qiniuAccessKey":"IXYAaaAwc-ZSuInpEoEJq_CivmcAjWLq1HmpK9dr","qiniuBucketName":"wxmall","qiniuDomain":"http://p9kyr79ne.bkt.clouddn.com","qiniuPrefix":"upload","qiniuSecretKey":"dVlk3dhOAGubYdiCyybE13o5KpjyqGhqh428ufxP","type":1}', '0', '云存储配置信息');
  3365. -- ----------------------------
  3366. -- Table structure for `sys_dept`
  3367. -- ----------------------------
  3368. DROP TABLE IF EXISTS `sys_dept`;
  3369. CREATE TABLE `sys_dept` (
  3370. `dept_id` bigint(20) NOT NULL AUTO_INCREMENT,
  3371. `parent_id` bigint(20) DEFAULT NULL COMMENT '上级部门ID,一级部门为0',
  3372. `name` varchar(50) DEFAULT NULL COMMENT '部门名称',
  3373. `order_num` int(11) DEFAULT NULL COMMENT '排序',
  3374. `del_flag` tinyint(4) DEFAULT '0' COMMENT '是否删除 -1:已删除 0:正常',
  3375. PRIMARY KEY (`dept_id`)
  3376. ) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8 COMMENT='部门管理';
  3377. -- ----------------------------
  3378. -- Records of sys_dept
  3379. -- ----------------------------
  3380. INSERT INTO `sys_dept` VALUES ('1', '0', '总部', '0', '0');
  3381. INSERT INTO `sys_dept` VALUES ('2', '1', '合肥分公司', '1', '0');
  3382. INSERT INTO `sys_dept` VALUES ('3', '1', '上海分公司', '2', '0');
  3383. INSERT INTO `sys_dept` VALUES ('4', '3', '技术部', '0', '0');
  3384. INSERT INTO `sys_dept` VALUES ('5', '3', '销售部', '1', '0');
  3385. INSERT INTO `sys_dept` VALUES ('6', '0', '测试', '0', '-1');
  3386. INSERT INTO `sys_dept` VALUES ('7', '0', 'ceshi', '0', '-1');
  3387. -- ----------------------------
  3388. -- Table structure for `sys_log`
  3389. -- ----------------------------
  3390. DROP TABLE IF EXISTS `sys_log`;
  3391. CREATE TABLE `sys_log` (
  3392. `id` bigint(20) NOT NULL AUTO_INCREMENT,
  3393. `username` varchar(50) DEFAULT NULL COMMENT '用户名',
  3394. `operation` varchar(50) DEFAULT NULL COMMENT '用户操作',
  3395. `method` varchar(200) DEFAULT NULL COMMENT '请求方法',
  3396. `params` varchar(5000) DEFAULT NULL COMMENT '请求参数',
  3397. `ip` varchar(64) DEFAULT NULL COMMENT 'IP地址',
  3398. `create_date` datetime DEFAULT NULL COMMENT '创建时间',
  3399. PRIMARY KEY (`id`)
  3400. ) ENGINE=InnoDB AUTO_INCREMENT=894 DEFAULT CHARSET=utf8 COMMENT='系统日志';
  3401. -- ----------------------------
  3402. -- Table structure for `sys_macro`
  3403. -- ----------------------------
  3404. DROP TABLE IF EXISTS `sys_macro`;
  3405. CREATE TABLE `sys_macro` (
  3406. `id` bigint(20) NOT NULL AUTO_INCREMENT,
  3407. `parent_id` bigint(255) DEFAULT NULL COMMENT '父级id',
  3408. `name` varchar(50) DEFAULT NULL COMMENT '名称',
  3409. `value` varchar(2000) DEFAULT NULL COMMENT '值',
  3410. `status` tinyint(4) DEFAULT '1' COMMENT '状态,0:隐藏 1:显示',
  3411. `type` tinyint(20) DEFAULT NULL COMMENT '类型,0:目录,1:参数配置',
  3412. `order_num` int(11) DEFAULT NULL COMMENT '排序',
  3413. `remark` varchar(500) DEFAULT NULL COMMENT '备注',
  3414. `gmt_create` date DEFAULT NULL COMMENT '创建时间',
  3415. `gmt_modified` date DEFAULT NULL COMMENT '修改时间',
  3416. PRIMARY KEY (`id`)
  3417. ) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=gbk COMMENT='通用字典表';
  3418. -- ----------------------------
  3419. -- Records of sys_macro
  3420. -- ----------------------------
  3421. INSERT INTO `sys_macro` VALUES ('5', null, '单位', 'goodsUnit', '1', '0', null, null, '2017-08-30', null);
  3422. INSERT INTO `sys_macro` VALUES ('6', '5', '个', '个', '1', '1', null, null, '2017-08-30', null);
  3423. INSERT INTO `sys_macro` VALUES ('7', '5', '只', '只', '1', '1', '2', null, '2017-10-06', '2017-10-06');
  3424. -- ----------------------------
  3425. -- Table structure for `sys_menu`
  3426. -- ----------------------------
  3427. DROP TABLE IF EXISTS `sys_menu`;
  3428. CREATE TABLE `sys_menu` (
  3429. `menu_id` bigint(20) NOT NULL AUTO_INCREMENT,
  3430. `parent_id` bigint(20) DEFAULT NULL COMMENT '父菜单ID,一级菜单为0',
  3431. `name` varchar(50) DEFAULT NULL COMMENT '菜单名称',
  3432. `url` varchar(200) DEFAULT NULL COMMENT '菜单URL',
  3433. `perms` varchar(500) DEFAULT NULL COMMENT '授权(多个用逗号分隔,如:user:list,user:create)',
  3434. `type` int(11) DEFAULT NULL COMMENT '类型 0:目录 1:菜单 2:按钮',
  3435. `icon` varchar(50) DEFAULT NULL COMMENT '菜单图标',
  3436. `order_num` int(11) DEFAULT NULL COMMENT '排序',
  3437. `status` int(1) DEFAULT NULL,
  3438. PRIMARY KEY (`menu_id`)
  3439. ) ENGINE=InnoDB AUTO_INCREMENT=375 DEFAULT CHARSET=utf8 COMMENT='菜单管理';
  3440. -- ----------------------------
  3441. -- Records of sys_menu
  3442. -- ----------------------------
  3443. INSERT INTO `sys_menu` VALUES ('1', '0', '系统管理', null, null, '0', 'fa fa-cog', '11', '0');
  3444. INSERT INTO `sys_menu` VALUES ('2', '1', '管理员列表', 'sys/user.html', null, '1', 'fa fa-user', '1', '0');
  3445. INSERT INTO `sys_menu` VALUES ('3', '1', '角色管理', 'sys/role.html', null, '1', 'fa fa-user-secret', '2', '0');
  3446. INSERT INTO `sys_menu` VALUES ('4', '1', '菜单管理', 'sys/menu.html', null, '1', 'fa fa-folder-open', '4', '0');
  3447. INSERT INTO `sys_menu` VALUES ('5', '1', 'SQL监控', 'druid/sql.html', null, '1', 'fa fa-linux', '9', '0');
  3448. INSERT INTO `sys_menu` VALUES ('6', '1', '定时任务', 'sys/schedule.html', null, '1', 'fa fa-tasks', '5', '0');
  3449. INSERT INTO `sys_menu` VALUES ('7', '6', '查看', null, 'sys:schedule:list,sys:schedule:info', '2', null, '0', '0');
  3450. INSERT INTO `sys_menu` VALUES ('8', '6', '新增', null, 'sys:schedule:save', '2', null, '0', '0');
  3451. INSERT INTO `sys_menu` VALUES ('9', '6', '修改', null, 'sys:schedule:update', '2', null, '0', '0');
  3452. INSERT INTO `sys_menu` VALUES ('10', '6', '删除', null, 'sys:schedule:delete', '2', null, '0', '0');
  3453. INSERT INTO `sys_menu` VALUES ('11', '6', '暂停', null, 'sys:schedule:pause', '2', null, '0', '0');
  3454. INSERT INTO `sys_menu` VALUES ('12', '6', '恢复', null, 'sys:schedule:resume', '2', null, '0', '0');
  3455. INSERT INTO `sys_menu` VALUES ('13', '6', '立即执行', null, 'sys:schedule:run', '2', null, '0', '0');
  3456. INSERT INTO `sys_menu` VALUES ('14', '6', '日志列表', null, 'sys:schedule:log', '2', null, '0', '0');
  3457. INSERT INTO `sys_menu` VALUES ('15', '2', '查看', null, 'sys:user:list,sys:user:info', '2', null, '0', '0');
  3458. INSERT INTO `sys_menu` VALUES ('16', '2', '新增', null, 'sys:user:save,sys:role:select', '2', null, '0', '0');
  3459. INSERT INTO `sys_menu` VALUES ('17', '2', '修改', null, 'sys:user:update,sys:role:select', '2', null, '0', '0');
  3460. INSERT INTO `sys_menu` VALUES ('18', '2', '删除', null, 'sys:user:delete', '2', null, '0', '0');
  3461. INSERT INTO `sys_menu` VALUES ('19', '3', '查看', null, 'sys:role:list,sys:role:info', '2', null, '0', '0');
  3462. INSERT INTO `sys_menu` VALUES ('20', '3', '新增', null, 'sys:role:save,sys:menu:perms', '2', null, '0', '0');
  3463. INSERT INTO `sys_menu` VALUES ('21', '3', '修改', null, 'sys:role:update,sys:menu:perms', '2', null, '0', '0');
  3464. INSERT INTO `sys_menu` VALUES ('22', '3', '删除', null, 'sys:role:delete', '2', null, '0', '0');
  3465. INSERT INTO `sys_menu` VALUES ('23', '4', '查看', null, 'sys:menu:list,sys:menu:info', '2', null, '0', '0');
  3466. INSERT INTO `sys_menu` VALUES ('24', '4', '新增', null, 'sys:menu:save,sys:menu:select', '2', null, '0', '0');
  3467. INSERT INTO `sys_menu` VALUES ('25', '4', '修改', null, 'sys:menu:update,sys:menu:select', '2', null, '0', '0');
  3468. INSERT INTO `sys_menu` VALUES ('26', '4', '删除', null, 'sys:menu:delete', '2', null, '0', '0');
  3469. INSERT INTO `sys_menu` VALUES ('27', '1', '系统参数', 'sys/config.html', 'sys:config:list,sys:config:info,sys:config:save,sys:config:update,sys:config:delete', '1', 'fa fa-sun-o', '7', '0');
  3470. INSERT INTO `sys_menu` VALUES ('28', '1', '代码生成器', 'sys/generator.html', 'sys:generator:list,sys:generator:code', '1', 'fa fa-rocket', '10', '0');
  3471. INSERT INTO `sys_menu` VALUES ('29', '1', '系统日志', 'sys/log.html', 'sys:log:list', '1', 'fa fa-file-text-o', '8', '0');
  3472. INSERT INTO `sys_menu` VALUES ('30', '1', '文件上传', 'sys/oss.html', 'sys:oss:all', '1', 'fa fa-file-image-o', '6', '0');
  3473. INSERT INTO `sys_menu` VALUES ('31', '0', '功能测试', null, null, '0', 'fa fa-bug', '11', '0');
  3474. INSERT INTO `sys_menu` VALUES ('200', '0', '会员管理', null, null, '0', 'fa fa-user-circle-o', '1', '0');
  3475. INSERT INTO `sys_menu` VALUES ('201', '200', '会员管理', 'shop/shopuser.html', null, '1', 'fa fa-user-md', '1', '0');
  3476. INSERT INTO `sys_menu` VALUES ('202', '201', '查看', null, 'user:list,user:info', '2', null, '0', '0');
  3477. INSERT INTO `sys_menu` VALUES ('203', '201', '新增', null, 'user:save', '2', null, '0', '0');
  3478. INSERT INTO `sys_menu` VALUES ('204', '201', '修改', null, 'user:update', '2', null, '0', '0');
  3479. INSERT INTO `sys_menu` VALUES ('205', '201', '删除', null, 'user:delete', '2', null, '0', '0');
  3480. INSERT INTO `sys_menu` VALUES ('206', '31', 'iviewDemo', 'test/iviewDemo.html', null, '1', 'fa fa-etsy', '0', '0');
  3481. INSERT INTO `sys_menu` VALUES ('207', '200', '会员等级', 'shop/userlevel.html', null, '1', 'fa fa-star-o', '0', '1');
  3482. INSERT INTO `sys_menu` VALUES ('208', '207', '查看', null, 'userlevel:list,userlevel:info', '2', null, '6', '0');
  3483. INSERT INTO `sys_menu` VALUES ('209', '207', '新增', null, 'userlevel:save', '2', null, '6', '0');
  3484. INSERT INTO `sys_menu` VALUES ('210', '207', '修改', null, 'userlevel:update', '2', null, '6', '0');
  3485. INSERT INTO `sys_menu` VALUES ('211', '207', '删除', null, 'userlevel:delete', '2', null, '6', '0');
  3486. INSERT INTO `sys_menu` VALUES ('212', '200', '收货地址管理', 'shop/address.html', null, '1', 'fa fa-map-marker', '6', '0');
  3487. INSERT INTO `sys_menu` VALUES ('213', '212', '查看', null, 'address:list,address:info', '2', null, '6', '0');
  3488. INSERT INTO `sys_menu` VALUES ('214', '212', '新增', null, 'address:save', '2', null, '6', '0');
  3489. INSERT INTO `sys_menu` VALUES ('215', '212', '修改', null, 'address:update', '2', null, '6', '0');
  3490. INSERT INTO `sys_menu` VALUES ('216', '212', '删除', null, 'address:delete', '2', null, '6', '0');
  3491. INSERT INTO `sys_menu` VALUES ('222', '0', '商城配置', null, null, '0', 'fa fa-shopping-cart', '2', '0');
  3492. INSERT INTO `sys_menu` VALUES ('223', '222', '商品属性种类', 'shop/attributecategory.html', null, '1', 'fa fa-sun-o', '0', '0');
  3493. INSERT INTO `sys_menu` VALUES ('224', '223', '查看', null, 'attributecategory:list,attributecategory:info', '2', null, '6', '0');
  3494. INSERT INTO `sys_menu` VALUES ('225', '223', '新增', null, 'attributecategory:save', '2', null, '6', '0');
  3495. INSERT INTO `sys_menu` VALUES ('226', '223', '修改', null, 'attributecategory:update', '2', null, '6', '0');
  3496. INSERT INTO `sys_menu` VALUES ('227', '223', '删除', null, 'attributecategory:delete', '2', null, '6', '0');
  3497. INSERT INTO `sys_menu` VALUES ('233', '243', '广告列表', 'shop/ad.html', null, '1', 'fa fa-pencil', '1', '0');
  3498. INSERT INTO `sys_menu` VALUES ('234', '233', '查看', null, 'ad:list,ad:info', '2', null, '6', '0');
  3499. INSERT INTO `sys_menu` VALUES ('235', '233', '新增', null, 'ad:save', '2', null, '6', '0');
  3500. INSERT INTO `sys_menu` VALUES ('236', '233', '修改', null, 'ad:update', '2', null, '6', '0');
  3501. INSERT INTO `sys_menu` VALUES ('237', '233', '删除', null, 'ad:delete', '2', null, '6', '0');
  3502. INSERT INTO `sys_menu` VALUES ('238', '243', '广告位置', 'shop/adposition.html', null, '1', 'fa fa-map-pin', '0', '0');
  3503. INSERT INTO `sys_menu` VALUES ('239', '238', '查看', null, 'adposition:list,adposition:info', '2', null, '6', '0');
  3504. INSERT INTO `sys_menu` VALUES ('240', '238', '新增', null, 'adposition:save', '2', null, '6', '0');
  3505. INSERT INTO `sys_menu` VALUES ('241', '238', '修改', null, 'adposition:update', '2', null, '6', '0');
  3506. INSERT INTO `sys_menu` VALUES ('242', '238', '删除', null, 'adposition:delete', '2', null, '6', '0');
  3507. INSERT INTO `sys_menu` VALUES ('243', '0', '推广管理', null, null, '0', 'fa fa-hand-paper-o', '5', '0');
  3508. INSERT INTO `sys_menu` VALUES ('244', '243', '优惠劵管理', 'shop/coupon.html', null, '1', 'fa fa-cc-visa', '2', '0');
  3509. INSERT INTO `sys_menu` VALUES ('245', '244', '查看', null, 'coupon:list,coupon:info', '2', null, '6', '0');
  3510. INSERT INTO `sys_menu` VALUES ('246', '244', '新增', null, 'coupon:save', '2', null, '6', '0');
  3511. INSERT INTO `sys_menu` VALUES ('247', '244', '修改', null, 'coupon:update', '2', null, '6', '0');
  3512. INSERT INTO `sys_menu` VALUES ('248', '244', '删除', null, 'coupon:delete', '2', null, '6', '0');
  3513. INSERT INTO `sys_menu` VALUES ('249', '200', '会员优惠劵', 'shop/usercoupon.html', null, '1', 'fa fa-cc-visa', '2', '0');
  3514. INSERT INTO `sys_menu` VALUES ('250', '249', '查看', null, 'usercoupon:list,usercoupon:info', '2', null, '6', '0');
  3515. INSERT INTO `sys_menu` VALUES ('251', '249', '新增', null, 'usercoupon:save', '2', null, '6', '0');
  3516. INSERT INTO `sys_menu` VALUES ('252', '249', '修改', null, 'usercoupon:update', '2', null, '6', '0');
  3517. INSERT INTO `sys_menu` VALUES ('253', '249', '删除', null, 'usercoupon:delete', '2', null, '6', '0');
  3518. INSERT INTO `sys_menu` VALUES ('254', '222', '品牌制造商', 'shop/brand.html', null, '1', 'fa fa-registered', '5', '0');
  3519. INSERT INTO `sys_menu` VALUES ('255', '254', '查看', null, 'brand:list,brand:info', '2', null, '6', '0');
  3520. INSERT INTO `sys_menu` VALUES ('256', '254', '新增', null, 'brand:save', '2', null, '6', '0');
  3521. INSERT INTO `sys_menu` VALUES ('257', '254', '修改', null, 'brand:update', '2', null, '6', '0');
  3522. INSERT INTO `sys_menu` VALUES ('258', '254', '删除', null, 'brand:delete', '2', null, '6', '0');
  3523. INSERT INTO `sys_menu` VALUES ('259', '222', '商品规格', 'shop/specification.html', null, '1', 'fa fa-hand-rock-o', '1', '0');
  3524. INSERT INTO `sys_menu` VALUES ('260', '259', '查看', null, 'specification:list,specification:info', '2', null, '6', '0');
  3525. INSERT INTO `sys_menu` VALUES ('261', '259', '新增', null, 'specification:save', '2', null, '6', '0');
  3526. INSERT INTO `sys_menu` VALUES ('262', '259', '修改', null, 'specification:update', '2', null, '6', '0');
  3527. INSERT INTO `sys_menu` VALUES ('263', '259', '删除', null, 'specification:delete', '2', null, '6', '0');
  3528. INSERT INTO `sys_menu` VALUES ('264', '200', '会员收藏', 'shop/collect.html', null, '1', 'fa fa-star', '3', '0');
  3529. INSERT INTO `sys_menu` VALUES ('265', '264', '查看', null, 'collect:list,collect:info', '2', null, '6', '0');
  3530. INSERT INTO `sys_menu` VALUES ('266', '264', '删除', null, 'collect:delete', '2', null, '6', '0');
  3531. INSERT INTO `sys_menu` VALUES ('270', '243', '专题管理', 'shop/topic.html', null, '1', 'fa fa-ticket', '5', '1');
  3532. INSERT INTO `sys_menu` VALUES ('271', '270', '查看', null, 'topic:list,topic:info', '2', null, '6', '0');
  3533. INSERT INTO `sys_menu` VALUES ('272', '270', '新增', null, 'topic:save', '2', null, '6', '0');
  3534. INSERT INTO `sys_menu` VALUES ('273', '270', '修改', null, 'topic:update', '2', null, '6', '0');
  3535. INSERT INTO `sys_menu` VALUES ('274', '270', '删除', null, 'topic:delete', '2', null, '6', '0');
  3536. INSERT INTO `sys_menu` VALUES ('275', '243', '专题分类', 'shop/topiccategory.html', null, '1', 'fa fa-tint', '4', '1');
  3537. INSERT INTO `sys_menu` VALUES ('276', '275', '查看', null, 'topiccategory:list,topiccategory:info', '2', null, '6', '0');
  3538. INSERT INTO `sys_menu` VALUES ('277', '275', '新增', null, 'topiccategory:save', '2', null, '6', '0');
  3539. INSERT INTO `sys_menu` VALUES ('278', '275', '修改', null, 'topiccategory:update', '2', null, '6', '0');
  3540. INSERT INTO `sys_menu` VALUES ('279', '275', '删除', null, 'topiccategory:delete', '2', null, '6', '0');
  3541. INSERT INTO `sys_menu` VALUES ('280', '200', '会员足迹', 'shop/footprint.html', null, '1', 'fa fa-history', '6', '0');
  3542. INSERT INTO `sys_menu` VALUES ('281', '280', '查看', null, 'footprint:list,footprint:info', '2', null, '6', '0');
  3543. INSERT INTO `sys_menu` VALUES ('282', '280', '删除', null, 'footprint:delete', '2', null, '6', '0');
  3544. INSERT INTO `sys_menu` VALUES ('283', '200', '搜索历史', 'shop/searchhistory.html', null, '1', 'fa fa-search', '6', '0');
  3545. INSERT INTO `sys_menu` VALUES ('284', '283', '查看', null, 'searchhistory:list,searchhistory:info', '2', null, '6', '0');
  3546. INSERT INTO `sys_menu` VALUES ('285', '283', '删除', null, 'searchhistory:delete', '2', null, '6', '0');
  3547. INSERT INTO `sys_menu` VALUES ('286', '200', '购物车', 'shop/cart.html', null, '1', 'fa fa-shopping-cart', '6', '0');
  3548. INSERT INTO `sys_menu` VALUES ('287', '286', '查看', null, 'cart:list,cart:info', '2', null, '6', '0');
  3549. INSERT INTO `sys_menu` VALUES ('288', '286', '删除', null, 'cart:delete', '2', null, '6', '0');
  3550. INSERT INTO `sys_menu` VALUES ('289', '357', '所有商品', 'shop/goods.html', null, '1', 'fa fa-shopping-bag', '1', '0');
  3551. INSERT INTO `sys_menu` VALUES ('290', '289', '查看', null, 'goods:list,goods:info', '2', null, '6', '0');
  3552. INSERT INTO `sys_menu` VALUES ('291', '289', '新增', null, 'goods:save', '2', null, '6', '0');
  3553. INSERT INTO `sys_menu` VALUES ('292', '289', '修改', null, 'goods:update', '2', null, '6', '0');
  3554. INSERT INTO `sys_menu` VALUES ('293', '289', '删除', null, 'goods:delete', '2', null, '6', '0');
  3555. INSERT INTO `sys_menu` VALUES ('294', '374', '所有管理', 'shop/order.html', null, '1', 'fa fa-sitemap', '6', '0');
  3556. INSERT INTO `sys_menu` VALUES ('295', '294', '查看', null, 'order:list,order:info', '2', null, '6', '0');
  3557. INSERT INTO `sys_menu` VALUES ('296', '294', '发货', null, 'order:sendGoods', '2', null, '6', '0');
  3558. INSERT INTO `sys_menu` VALUES ('297', '222', '商品类型', 'shop/category.html', null, '1', 'fa fa-ship', '3', '0');
  3559. INSERT INTO `sys_menu` VALUES ('298', '297', '查看', null, 'category:list,category:info', '2', null, '6', '0');
  3560. INSERT INTO `sys_menu` VALUES ('299', '297', '新增', null, 'category:save', '2', null, '6', '0');
  3561. INSERT INTO `sys_menu` VALUES ('300', '297', '修改', null, 'category:update', '2', null, '6', '0');
  3562. INSERT INTO `sys_menu` VALUES ('301', '297', '删除', null, 'category:delete', '2', null, '6', '0');
  3563. INSERT INTO `sys_menu` VALUES ('302', '1', '通用字典表', 'sys/macro.html', null, '1', 'fa fa-book', '6', '0');
  3564. INSERT INTO `sys_menu` VALUES ('303', '302', '查看', null, 'sys:macro:list,sys:macro:info', '2', null, '6', '0');
  3565. INSERT INTO `sys_menu` VALUES ('304', '302', '新增', null, 'sys:macro:save', '2', null, '6', '0');
  3566. INSERT INTO `sys_menu` VALUES ('305', '302', '修改', null, 'sys:macro:update', '2', null, '6', '0');
  3567. INSERT INTO `sys_menu` VALUES ('306', '302', '删除', null, 'sys:macro:delete', '2', null, '6', '0');
  3568. INSERT INTO `sys_menu` VALUES ('307', '222', '渠道管理', 'shop/channel.html', null, '1', 'fa fa-road', '2', '1');
  3569. INSERT INTO `sys_menu` VALUES ('308', '307', '查看', null, 'channel:list,channel:info', '2', null, '6', '0');
  3570. INSERT INTO `sys_menu` VALUES ('309', '307', '新增', null, 'channel:save', '2', null, '6', '0');
  3571. INSERT INTO `sys_menu` VALUES ('310', '307', '修改', null, 'channel:update', '2', null, '6', '0');
  3572. INSERT INTO `sys_menu` VALUES ('311', '307', '删除', null, 'channel:delete', '2', null, '6', '0');
  3573. INSERT INTO `sys_menu` VALUES ('312', '0', '微信公众号', null, null, '0', 'fa fa-weixin', '6', '0');
  3574. INSERT INTO `sys_menu` VALUES ('313', '0', '进销存', null, null, '0', 'fa fa-truck', '6', '0');
  3575. INSERT INTO `sys_menu` VALUES ('314', '0', '统计报表', null, null, '0', 'fa fa-line-chart', '7', '0');
  3576. INSERT INTO `sys_menu` VALUES ('315', '222', '商品问答', 'shop/goodsissue.html', null, '1', 'fa fa-question-circle-o', '6', '0');
  3577. INSERT INTO `sys_menu` VALUES ('316', '315', '查看', null, 'goodsissue:list,goodsissue:info', '2', null, '6', '0');
  3578. INSERT INTO `sys_menu` VALUES ('317', '315', '新增', null, 'goodsissue:save', '2', null, '6', '0');
  3579. INSERT INTO `sys_menu` VALUES ('318', '315', '修改', null, 'goodsissue:update', '2', null, '6', '0');
  3580. INSERT INTO `sys_menu` VALUES ('319', '315', '删除', null, 'goodsissue:delete', '2', null, '6', '0');
  3581. INSERT INTO `sys_menu` VALUES ('325', '222', '反馈', 'shop/feedback.html', null, '1', 'fa fa-mail-reply-all', '6', '0');
  3582. INSERT INTO `sys_menu` VALUES ('326', '325', '查看', null, 'feedback:list,feedback:info', '2', null, '6', '0');
  3583. INSERT INTO `sys_menu` VALUES ('327', '325', '新增', null, 'feedback:save', '2', null, '6', '0');
  3584. INSERT INTO `sys_menu` VALUES ('328', '325', '修改', null, 'feedback:update', '2', null, '6', '0');
  3585. INSERT INTO `sys_menu` VALUES ('329', '325', '删除', null, 'feedback:delete', '2', null, '6', '0');
  3586. INSERT INTO `sys_menu` VALUES ('330', '244', '发放', null, 'coupon:publish', '2', null, '4', '0');
  3587. INSERT INTO `sys_menu` VALUES ('331', '222', '关键词', 'shop/keywords.html', null, '1', 'fa fa-underline', '6', '0');
  3588. INSERT INTO `sys_menu` VALUES ('332', '331', '查看', null, 'keywords:list,keywords:info', '2', null, '6', '0');
  3589. INSERT INTO `sys_menu` VALUES ('333', '331', '新增', null, 'keywords:save', '2', null, '6', '0');
  3590. INSERT INTO `sys_menu` VALUES ('334', '331', '修改', null, 'keywords:update', '2', null, '6', '0');
  3591. INSERT INTO `sys_menu` VALUES ('335', '331', '删除', null, 'keywords:delete', '2', null, '6', '0');
  3592. INSERT INTO `sys_menu` VALUES ('336', '357', '用户评论', 'shop/comment.html', null, '1', 'fa fa-commenting', '6', '0');
  3593. INSERT INTO `sys_menu` VALUES ('337', '336', '查看', null, 'comment:list,comment:info', '2', null, '6', '0');
  3594. INSERT INTO `sys_menu` VALUES ('338', '336', '新增', null, 'comment:save', '2', null, '6', '0');
  3595. INSERT INTO `sys_menu` VALUES ('339', '336', '修改', null, 'comment:update', '2', null, '6', '0');
  3596. INSERT INTO `sys_menu` VALUES ('340', '336', '删除', null, 'comment:delete', '2', null, '6', '0');
  3597. INSERT INTO `sys_menu` VALUES ('341', '336', '修改状态', null, 'comment:toggleStatus', '2', null, '0', '0');
  3598. INSERT INTO `sys_menu` VALUES ('342', '357', '产品设置', 'shop/product.html', null, '1', 'fa fa-paypal', '3', '0');
  3599. INSERT INTO `sys_menu` VALUES ('343', '342', '查看', null, 'product:list,product:info', '2', null, '6', '0');
  3600. INSERT INTO `sys_menu` VALUES ('344', '342', '新增', null, 'product:save', '2', null, '6', '0');
  3601. INSERT INTO `sys_menu` VALUES ('345', '342', '修改', null, 'product:update', '2', null, '6', '0');
  3602. INSERT INTO `sys_menu` VALUES ('346', '342', '删除', null, 'product:delete', '2', null, '6', '0');
  3603. INSERT INTO `sys_menu` VALUES ('352', '357', '商品规格', 'shop/goodsspecification.html', null, '1', 'fa fa-deafness', '2', '0');
  3604. INSERT INTO `sys_menu` VALUES ('353', '352', '查看', null, 'goodsspecification:list,goodsspecification:info', '2', null, '6', '0');
  3605. INSERT INTO `sys_menu` VALUES ('354', '352', '新增', null, 'goodsspecification:save', '2', null, '6', '0');
  3606. INSERT INTO `sys_menu` VALUES ('355', '352', '修改', null, 'goodsspecification:update', '2', null, '6', '0');
  3607. INSERT INTO `sys_menu` VALUES ('356', '352', '删除', null, 'goodsspecification:delete', '2', null, '6', '0');
  3608. INSERT INTO `sys_menu` VALUES ('357', '0', '编辑商品', null, null, '0', 'fa fa-edit', '3', '0');
  3609. INSERT INTO `sys_menu` VALUES ('358', '357', '商品回收站', 'shop/goodshistory.html', '', '1', 'fa fa-history', '12', '0');
  3610. INSERT INTO `sys_menu` VALUES ('359', '358', '恢复', null, 'goods:back', '2', null, '0', '0');
  3611. INSERT INTO `sys_menu` VALUES ('360', '294', '确认收货', null, 'order:confirm', '2', null, '0', '0');
  3612. INSERT INTO `sys_menu` VALUES ('366', '0', 'CMS模块', null, null, '0', 'fa fa-leanpub', '6', '0');
  3613. INSERT INTO `sys_menu` VALUES ('368', '1', '部门管理', 'sys/dept.html', null, '1', 'fa fa-sitemap', '3', '0');
  3614. INSERT INTO `sys_menu` VALUES ('369', '368', '查看', null, 'sys:dept:list,sys:dept:info', '2', null, '0', '0');
  3615. INSERT INTO `sys_menu` VALUES ('370', '368', '新增', null, 'sys:dept:save', '2', null, '0', '0');
  3616. INSERT INTO `sys_menu` VALUES ('371', '368', '修改', null, 'sys:dept:update', '2', null, '0', '0');
  3617. INSERT INTO `sys_menu` VALUES ('372', '368', '删除', null, 'sys:dept:delete', '2', null, '0', '0');
  3618. INSERT INTO `sys_menu` VALUES ('373', '368', '选择部门', null, 'sys:dept:select', '2', null, '0', '0');
  3619. INSERT INTO `sys_menu` VALUES ('374', '0', '订单管理', null, null, '0', 'fa fa-first-order', '4', '0');
  3620. INSERT INTO `sys_menu` VALUES ('375', '0', '短信平台', null, null, '0', 'fa fa-television', '9', '0');
  3621. INSERT INTO `sys_menu` VALUES ('376','375', '短信配置', 'sys/smslog.html', 'sys:smslog:list,sys:smslog:info', '1', 'fa fa-envelope-open', '1', '0');
  3622. INSERT INTO `sys_menu` VALUES ('377', '1', '地区管理', 'sys/region.html', null, '1', 'fa fa-map-pin', '8', '0');
  3623. INSERT INTO `sys_menu` VALUES ('378', '377', '删除', null, 'sys:region:delete', '2', null, '0', '0');
  3624. INSERT INTO `sys_menu` VALUES ('379', '377', '修改', '', 'sys:region:update', '2', null, '0', '0');
  3625. INSERT INTO `sys_menu` VALUES ('380', '377', '新增', null, 'sys:region:save', '2', null, '0', '0');
  3626. INSERT INTO `sys_menu` VALUES ('381', '377', '查看', null, 'sys:region:list,sys:region:info', '2', null, '0', '0');
  3627. INSERT INTO `sys_menu` VALUES ('382', '31', 'swagger-ui.html', 'swagger-ui.html', '', '1', 'fa fa-code', '0', '0');
  3628. -- ----------------------------
  3629. -- Table structure for `sys_oss`
  3630. -- ----------------------------
  3631. DROP TABLE IF EXISTS `sys_oss`;
  3632. CREATE TABLE `sys_oss` (
  3633. `id` bigint(20) NOT NULL AUTO_INCREMENT,
  3634. `url` varchar(200) DEFAULT NULL COMMENT 'URL地址',
  3635. `create_date` datetime DEFAULT NULL COMMENT '创建时间',
  3636. PRIMARY KEY (`id`)
  3637. ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='文件上传';
  3638. -- ----------------------------
  3639. -- Records of sys_oss
  3640. -- ----------------------------
  3641. -- ----------------------------
  3642. -- Table structure for `sys_role`
  3643. -- ----------------------------
  3644. DROP TABLE IF EXISTS `sys_role`;
  3645. CREATE TABLE `sys_role` (
  3646. `role_id` bigint(20) NOT NULL AUTO_INCREMENT,
  3647. `role_name` varchar(100) DEFAULT NULL COMMENT '角色名称',
  3648. `remark` varchar(100) DEFAULT NULL COMMENT '备注',
  3649. `create_user_id` bigint(20) DEFAULT NULL COMMENT '创建者ID',
  3650. `create_time` datetime DEFAULT NULL COMMENT '创建时间',
  3651. `dept_id` bigint(20) DEFAULT NULL COMMENT '部门ID',
  3652. PRIMARY KEY (`role_id`)
  3653. ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COMMENT='角色';
  3654. -- ----------------------------
  3655. -- Records of sys_role
  3656. -- ----------------------------
  3657. INSERT INTO `sys_role` VALUES ('5', '超级管理员', '超级管理员', '1', '2017-09-18 00:40:15', '1');
  3658. -- ----------------------------
  3659. -- Table structure for `sys_role_dept`
  3660. -- ----------------------------
  3661. DROP TABLE IF EXISTS `sys_role_dept`;
  3662. CREATE TABLE `sys_role_dept` (
  3663. `id` bigint(20) NOT NULL AUTO_INCREMENT,
  3664. `role_id` bigint(20) DEFAULT NULL COMMENT '角色ID',
  3665. `dept_id` bigint(20) DEFAULT NULL COMMENT '部门ID',
  3666. PRIMARY KEY (`id`)
  3667. ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='角色与部门对应关系';
  3668. -- ----------------------------
  3669. -- Records of sys_role_dept
  3670. -- ----------------------------
  3671. -- ----------------------------
  3672. -- Table structure for `sys_role_menu`
  3673. -- ----------------------------
  3674. DROP TABLE IF EXISTS `sys_role_menu`;
  3675. CREATE TABLE `sys_role_menu` (
  3676. `id` bigint(20) NOT NULL AUTO_INCREMENT,
  3677. `role_id` bigint(20) DEFAULT NULL COMMENT '角色ID',
  3678. `menu_id` bigint(20) DEFAULT NULL COMMENT '菜单ID',
  3679. PRIMARY KEY (`id`)
  3680. ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='角色与菜单对应关系';
  3681. -- ----------------------------
  3682. -- Records of sys_role_menu
  3683. -- ----------------------------
  3684. -- ----------------------------
  3685. -- Table structure for `sys_user`
  3686. -- ----------------------------
  3687. DROP TABLE IF EXISTS `sys_user`;
  3688. CREATE TABLE `sys_user` (
  3689. `user_id` bigint(20) NOT NULL AUTO_INCREMENT,
  3690. `username` varchar(50) NOT NULL COMMENT '用户名',
  3691. `password` varchar(100) DEFAULT NULL COMMENT '密码',
  3692. `email` varchar(100) DEFAULT NULL COMMENT '邮箱',
  3693. `mobile` varchar(100) DEFAULT NULL COMMENT '手机号',
  3694. `status` tinyint(4) DEFAULT NULL COMMENT '状态 0:禁用 1:正常',
  3695. `create_user_id` bigint(20) DEFAULT NULL COMMENT '创建者ID',
  3696. `create_time` datetime DEFAULT NULL COMMENT '创建时间',
  3697. `dept_id` bigint(20) DEFAULT NULL COMMENT '部门ID',
  3698. PRIMARY KEY (`user_id`),
  3699. UNIQUE KEY `username` (`username`)
  3700. ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='系统用户';
  3701. -- ----------------------------
  3702. -- Records of sys_user
  3703. -- ----------------------------
  3704. INSERT INTO `sys_user` VALUES ('1', 'admin', '8c6976e5b5410415bde908bd4dee15dfb167a9c873fc4bb8a81f6f2ab448a918', '939961241@qq.com', '15209831990', '1', '1', '2016-11-11 11:11:11', '1');
  3705. -- ----------------------------
  3706. -- Table structure for `sys_user_role`
  3707. -- ----------------------------
  3708. DROP TABLE IF EXISTS `sys_user_role`;
  3709. CREATE TABLE `sys_user_role` (
  3710. `id` bigint(20) NOT NULL AUTO_INCREMENT,
  3711. `user_id` bigint(20) DEFAULT NULL COMMENT '用户ID',
  3712. `role_id` bigint(20) DEFAULT NULL COMMENT '角色ID',
  3713. PRIMARY KEY (`id`)
  3714. ) ENGINE=InnoDB AUTO_INCREMENT=60 DEFAULT CHARSET=utf8 COMMENT='用户与角色对应关系';
  3715. -- ----------------------------
  3716. -- Table structure for `tb_token`
  3717. -- ----------------------------
  3718. DROP TABLE IF EXISTS `tb_token`;
  3719. CREATE TABLE `tb_token` (
  3720. `user_id` bigint(20) NOT NULL,
  3721. `token` varchar(100) NOT NULL COMMENT 'token',
  3722. `expire_time` datetime DEFAULT NULL COMMENT '过期时间',
  3723. `update_time` datetime DEFAULT NULL COMMENT '更新时间',
  3724. PRIMARY KEY (`user_id`),
  3725. UNIQUE KEY `token` (`token`)
  3726. ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='用户Token';
  3727. DROP TABLE IF EXISTS sys_region;
  3728. create table sys_region
  3729. (
  3730. id smallint auto_increment
  3731. primary key,
  3732. parent_id smallint default '0' ,
  3733. name varchar(120) default '' not null,
  3734. type tinyint(1) default '2' not null,
  3735. agency_id smallint default '0'
  3736. )
  3737. ;
  3738. create index agency_id
  3739. on sys_region (agency_id)
  3740. ;
  3741. create index parent_id
  3742. on sys_region (parent_id)
  3743. ;
  3744. create index region_type
  3745. on sys_region (type)
  3746. ;
  3747. DROP TABLE IF EXISTS `sys_sms_log`;
  3748. CREATE TABLE `sys_sms_log` (
  3749. `id` varchar(32) NOT NULL COMMENT '主键',
  3750. `user_id` bigint(20) COMMENT '操作人',
  3751. `mobile` text COMMENT '必填参数。手机号码。多个以英文逗号隔开',
  3752. `template_id` int(11) COMMENT '模板ID',
  3753. `code` int(11) COMMENT '验证码',
  3754. `sign` varchar(32) COMMENT '必填参数。用户签名',
  3755. `send_status` int(11) COMMENT '1成功 0失败',
  3756. `send_id` varchar(32) COMMENT '发送编号',
  3757. `success_num` int(11) COMMENT '成功提交数',
  3758. `return_msg` varchar(50) COMMENT '返回消息',
  3759. PRIMARY KEY (`id`)
  3760. ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
  3761. INSERT INTO sys_config VALUES ('2', 'SMS_CONFIG_KEY', '{"domain":"http://web.cr6868.com/asmx/smsservice.aspx?","name":"","pwd":"","sign":"","type":1}', 0, '短信配置');
  3762. /** 2018-01-23 **/
  3763. ALTER TABLE nideshop_address ADD is_default INT(1) DEFAULT 0 NULL;
  3764. /** 2018-06-21 会员优惠券添加状态字段 **/
  3765. ALTER TABLE `nideshop_user_coupon` ADD COLUMN `coupon_status` TINYINT (3) UNSIGNED DEFAULT '1' COMMENT '状态 1. 可用 2. 已用 3. 过期';
  3766. /** 2019-07-07 给足迹表添加索引字段 **/
  3767. ALTER TABLE `nideshop_footprint` ADD INDEX `index_nideshop_footprint_user_id_goods_id` (`user_id`, `goods_id`) USING BTREE ;
  3768. /** 2018-09-29 解决微信名存在特殊字符导致的无法登陆问题 **/
  3769. ALTER TABLE nideshop_user CHANGE nickname nickname VARCHAR (60) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci;
  3770. /** 2018-11-07 添加帮助中心 **/
  3771. CREATE TABLE `nideshop_help_issue` (
  3772. `id` int(11) NOT NULL AUTO_INCREMENT,
  3773. `type_id` int(11) DEFAULT NULL COMMENT '问题分类',
  3774. `question` varchar(500) DEFAULT NULL,
  3775. `answer` varchar(500) DEFAULT NULL,
  3776. `sort` int(4) DEFAULT NULL COMMENT '排序',
  3777. PRIMARY KEY (`id`)
  3778. ) ENGINE=InnoDB AUTO_INCREMENT=34 DEFAULT CHARSET=utf8;
  3779. CREATE TABLE `nideshop_help_type` (
  3780. `id` int(11) NOT NULL AUTO_INCREMENT,
  3781. `type_name` varchar(50) DEFAULT NULL COMMENT '问题分类',
  3782. `sort` int(4) DEFAULT NULL COMMENT '排序',
  3783. PRIMARY KEY (`id`)
  3784. ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8;